:root {
  --bg: #fbfaf7;
  --bg-soft: #ffffff;
  --panel: #f4f1ec;
  --panel-2: #f0efea;
  --tint-1: rgba(226, 122, 92, 0.1);
  --tint-2: rgba(90, 136, 200, 0.1);
  --tint-3: rgba(124, 162, 138, 0.1);
  --tint-4: rgba(226, 122, 92, 0.06);
  --ink: #17212c;
  --muted: #5b5f6a;
  --line: #dcd6cf;
  --accent: #e27a5c;
  --accent-2: #5a88c8;
  --accent-3: #7ca28a;
  --accent-4: #f2c199;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 22px;
  --ease-apple: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ring-c1: #f2c84b;
  --ring-c2: #f0a23a;
  --ring-c3: #e56b4d;
  --ring-c4: #d54a45;
  --ring-c5: #b44a74;
  --ring-c6: #7b4aa1;
  --ring-c7: #4f4fa8;
  --ring-c8: #2f62b8;
  --ring-c9: #2b8c85;
  --ring-c10: #3aa570;
  --ring-c11: #4aa05b;
  --ring-c12: #79b05a;
  --bullet-shadow: 0 0 0 4px rgba(255, 255, 255, 0.78);
  --bullet-outline: 1px solid rgba(23, 33, 44, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 40%, #f1eee9 100%);
  color: var(--ink);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.page {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

.page::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.5), transparent 70%);
}

.page::after {
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 70%);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(249, 250, 251, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}

.logo-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -10deg,
    var(--ring-c1) 0deg 20deg,
    transparent 20deg 30deg,
    var(--ring-c2) 30deg 50deg,
    transparent 50deg 60deg,
    var(--ring-c3) 60deg 80deg,
    transparent 80deg 90deg,
    var(--ring-c4) 90deg 110deg,
    transparent 110deg 120deg,
    var(--ring-c5) 120deg 140deg,
    transparent 140deg 150deg,
    var(--ring-c6) 150deg 170deg,
    transparent 170deg 180deg,
    var(--ring-c7) 180deg 200deg,
    transparent 200deg 210deg,
    var(--ring-c8) 210deg 230deg,
    transparent 230deg 240deg,
    var(--ring-c9) 240deg 260deg,
    transparent 260deg 270deg,
    var(--ring-c10) 270deg 290deg,
    transparent 290deg 300deg,
    var(--ring-c11) 300deg 320deg,
    transparent 320deg 330deg,
    var(--ring-c12) 330deg 350deg,
    transparent 350deg 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 45%, #000 46%);
  mask: radial-gradient(circle, transparent 45%, #000 46%);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.logo-text {
  font-size: 15px;
  letter-spacing: 0.4px;
}

.site-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 500;
}

.mobile-nav-panel {
  display: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  position: relative;
}

.nav-toggle::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--ink);
  position: absolute;
  inset: 0;
  margin: auto;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2H18C19.1 2 20 2.9 20 4V7.32C20 7.87 19.55 8.32 19 8.32H5C4.45 8.32 4 7.87 4 7.32V4C4 2.9 4.9 2 6 2Z'/%3E%3Cpath d='M4 10.3203V11.8803C4 12.9603 4.58 13.9603 5.53 14.4903L8.49 16.1603C9.12 16.5103 9.51 17.1803 9.51 17.9003V20.0003C9.51 21.1003 10.41 22.0003 11.51 22.0003H12.51C13.61 22.0003 14.51 21.1003 14.51 20.0003V17.9003C14.51 17.1803 14.9 16.5103 15.53 16.1603L18.49 14.4903C19.43 13.9603 20.02 12.9603 20.02 11.8803V10.3203C20.02 9.77031 19.57 9.32031 19.02 9.32031H5C4.45 9.32031 4 9.76031 4 10.3203Z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2H18C19.1 2 20 2.9 20 4V7.32C20 7.87 19.55 8.32 19 8.32H5C4.45 8.32 4 7.87 4 7.32V4C4 2.9 4.9 2 6 2Z'/%3E%3Cpath d='M4 10.3203V11.8803C4 12.9603 4.58 13.9603 5.53 14.4903L8.49 16.1603C9.12 16.5103 9.51 17.1803 9.51 17.9003V20.0003C9.51 21.1003 10.41 22.0003 11.51 22.0003H12.51C13.61 22.0003 14.51 21.1003 14.51 20.0003V17.9003C14.51 17.1803 14.9 16.5103 15.53 16.1603L18.49 14.4903C19.43 13.9603 20.02 12.9603 20.02 11.8803V10.3203C20.02 9.77031 19.57 9.32031 19.02 9.32031H5C4.45 9.32031 4 9.76031 4 10.3203Z'/%3E%3C/svg%3E") no-repeat center / contain;
  transform: rotate(0deg);
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
}

.btn-secondary {
  border-color: rgba(23, 33, 44, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: #ffffff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}

.hero {
  padding: 70px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1;
  margin: 12px 0 16px;
  letter-spacing: 1px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.swatches {
  margin-top: 18px;
  display: flex;
  gap: 8px;
}

.swatches span {
  width: 26px;
  height: 8px;
  border-radius: 999px;
}

.swatches span:nth-child(1) {
  background: var(--accent);
}

.swatches span:nth-child(2) {
  background: var(--accent-2);
}

.swatches span:nth-child(3) {
  background: var(--accent-3);
}

.swatches span:nth-child(4) {
  background: var(--accent-4);
}

.hero-local {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.hero-inline-trust {
  margin-top: 14px;
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 5;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.hero-stats > div {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.hero-inline-trust .hero-floating-value::before {
  content: none;
}

.hero-stars {
  color: #c78b1a;
  letter-spacing: 1px;
  margin-right: 8px;
  font-size: 12px;
  vertical-align: 1px;
}

.hero-image-metrics {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-image-metrics span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  text-align: left;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.3;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}

.hero-image-metrics span::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(214, 152, 35, 0.95);
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.hero-image-metrics span::after {
  content: "";
  position: absolute;
  height: 3px;
  background-image: radial-gradient(circle, rgba(214, 152, 35, 0.85) 1px, transparent 1.5px);
  background-size: 7px 3px;
  background-repeat: repeat-x;
}

.hero-image-metrics .metric-a {
  top: 24px;
  left: 24px;
}

.hero-image-metrics .metric-a::before {
  left: 100%;
  top: 50%;
  margin-left: 10px;
  transform: translateY(-50%);
}

.hero-image-metrics .metric-a::after {
  left: 100%;
  top: 50%;
  width: 28px;
  margin-left: 1px;
  transform: translateY(-50%);
}

.hero-image-metrics .metric-b {
  top: 92px;
  right: 24px;
  font-size: 13px;
}

.hero-image-metrics .metric-b::before {
  right: 100%;
  top: 50%;
  margin-right: 10px;
  transform: translateY(-50%);
}

.hero-image-metrics .metric-b::after {
  right: 100%;
  top: 50%;
  width: 30px;
  margin-right: 1px;
  transform: translateY(-50%);
}

.hero-image-metrics .metric-c {
  left: 24px;
  bottom: 26px;
  max-width: 54%;
}

.hero-image-metrics .metric-c::before {
  left: 100%;
  top: 50%;
  margin-left: 10px;
  transform: translateY(-50%);
}

.hero-image-metrics .metric-c::after {
  left: 100%;
  top: 50%;
  width: 28px;
  margin-left: 1px;
  transform: translateY(-50%);
}

.hero-image-metrics .metric-d {
  right: 24px;
  bottom: 88px;
  font-size: 11px;
}

.hero-image-metrics .metric-d::before {
  right: 100%;
  top: 50%;
  margin-right: 10px;
  transform: translateY(-50%);
}

.hero-image-metrics .metric-d::after {
  right: 100%;
  top: 50%;
  width: 24px;
  margin-right: 1px;
  transform: translateY(-50%);
}

.stat-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.wrap-orange .stat-icon-wrap {
  background: var(--accent);
}

.wrap-blue .stat-icon-wrap {
  background: var(--accent-2);
}

.wrap-green .stat-icon-wrap {
  background: var(--accent-3);
}

.stat-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: #ffffff;
  line-height: 1;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.icon-brush {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2H18C19.1 2 20 2.9 20 4V7.32C20 7.87 19.55 8.32 19 8.32H5C4.45 8.32 4 7.87 4 7.32V4C4 2.9 4.9 2 6 2Z'/%3E%3Cpath d='M4 10.3203V11.8803C4 12.9603 4.58 13.9603 5.53 14.4903L8.49 16.1603C9.12 16.5103 9.51 17.1803 9.51 17.9003V20.0003C9.51 21.1003 10.41 22.0003 11.51 22.0003H12.51C13.61 22.0003 14.51 21.1003 14.51 20.0003V17.9003C14.51 17.1803 14.9 16.5103 15.53 16.1603L18.49 14.4903C19.43 13.9603 20.02 12.9603 20.02 11.8803V10.3203C20.02 9.77031 19.57 9.32031 19.02 9.32031H5C4.45 9.32031 4 9.76031 4 10.3203Z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2H18C19.1 2 20 2.9 20 4V7.32C20 7.87 19.55 8.32 19 8.32H5C4.45 8.32 4 7.87 4 7.32V4C4 2.9 4.9 2 6 2Z'/%3E%3Cpath d='M4 10.3203V11.8803C4 12.9603 4.58 13.9603 5.53 14.4903L8.49 16.1603C9.12 16.5103 9.51 17.1803 9.51 17.9003V20.0003C9.51 21.1003 10.41 22.0003 11.51 22.0003H12.51C13.61 22.0003 14.51 21.1003 14.51 20.0003V17.9003C14.51 17.1803 14.9 16.5103 15.53 16.1603L18.49 14.4903C19.43 13.9603 20.02 12.9603 20.02 11.8803V10.3203C20.02 9.77031 19.57 9.32031 19.02 9.32031H5C4.45 9.32031 4 9.76031 4 10.3203Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.icon-bucket {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900.301 900.301'%3E%3Cpath d='M497.401,699.65h-47.4h-47.2c-0.899,0-87.6-0.4-155.4-15.2c-29.6-6.5-57.8-15.7-84-27l18.1,155.601c1.4,11.699,11.3,20.6,23.1,20.6h245.4h245.6c11.7,0,21.601-9,23.101-20.6l18.1-155.601c-26.2,11.3-54.399,20.601-84,27C585.001,699.25,498.201,699.65,497.401,699.65z'/%3E%3Cpath d='M880.201,198.75l-35.4-0.1c-11,0-20,8.8-20,19.9c0,10.9-0.1,23.1-0.1,35.1h-42.5l6.3-54h-338.5h-338.3l6.3,54h-42.5c-0.1-12-0.1-24.2-0.1-35.1c0-11-9-19.9-20-19.9l-35.4,0.1c-11.1,0-20.1,9.1-20,20.2c0.4,51.5,2.1,186.101,7.5,215.5c15.8,85.4,78,144.2,152.5,179.7v0.1c29.7,14.101,61.3,24.7,92.8,31.601c64.2,14.2,147.8,14.8,150,14.8h47.2h47.4c2.3,0,85.899-0.6,150.1-14.7c31.4-6.899,63.1-17.399,92.8-31.6v-0.101c74.5-35.5,136.7-94.3,152.5-179.699c5.4-29.5,7.101-164,7.5-215.5C900.301,207.95,891.401,198.75,880.201,198.75z M824.001,334.15c-1,58.5-1.4,114.9-43.5,160.8c-8.9,9.7-18.8,18.3-29.4,26.101v0.199c-21,15.301-44.899,27.101-69.5,35.7c-54.899,19.4-111.3,26.7-169.199,27.7h-62.4h-62.2c-57.899-1-114.3-8.3-169.2-27.7c-24.6-8.7-48.4-20.399-69.5-35.7v-0.199c-10.6-7.7-20.5-16.4-29.4-26.101c-42.1-45.899-42.6-102.3-43.5-160.8c0-3-0.1-6.5-0.1-9.5h50.2l18.7,147.4c20.7,20,48.2,36.399,82,48.399c47,16.601,98.2,24.2,161.1,26.2h61.9h62.2c62.899-2,114.1-9.6,161.1-26.2c33.8-12,61.3-28.399,82-48.399l18.601-147.4h50.199C824.101,327.65,824.001,331.15,824.001,334.15z'/%3E%3Cpath d='M83.501,160.65h25.3h341.2h341.4h25.3c11,0,20.3-9.1,20.3-20.1v-53.9c0-11-9.2-20-20.3-20h-366.7h-366.5c-11,0-20.5,9-20.5,20v53.9C63.001,151.55,72.501,160.65,83.501,160.65z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900.301 900.301'%3E%3Cpath d='M497.401,699.65h-47.4h-47.2c-0.899,0-87.6-0.4-155.4-15.2c-29.6-6.5-57.8-15.7-84-27l18.1,155.601c1.4,11.699,11.3,20.6,23.1,20.6h245.4h245.6c11.7,0,21.601-9,23.101-20.6l18.1-155.601c-26.2,11.3-54.399,20.601-84,27C585.001,699.25,498.201,699.65,497.401,699.65z'/%3E%3Cpath d='M880.201,198.75l-35.4-0.1c-11,0-20,8.8-20,19.9c0,10.9-0.1,23.1-0.1,35.1h-42.5l6.3-54h-338.5h-338.3l6.3,54h-42.5c-0.1-12-0.1-24.2-0.1-35.1c0-11-9-19.9-20-19.9l-35.4,0.1c-11.1,0-20.1,9.1-20,20.2c0.4,51.5,2.1,186.101,7.5,215.5c15.8,85.4,78,144.2,152.5,179.7v0.1c29.7,14.101,61.3,24.7,92.8,31.601c64.2,14.2,147.8,14.8,150,14.8h47.2h47.4c2.3,0,85.899-0.6,150.1-14.7c31.4-6.899,63.1-17.399,92.8-31.6v-0.101c74.5-35.5,136.7-94.3,152.5-179.699c5.4-29.5,7.101-164,7.5-215.5C900.301,207.95,891.401,198.75,880.201,198.75z M824.001,334.15c-1,58.5-1.4,114.9-43.5,160.8c-8.9,9.7-18.8,18.3-29.4,26.101v0.199c-21,15.301-44.899,27.101-69.5,35.7c-54.899,19.4-111.3,26.7-169.199,27.7h-62.4h-62.2c-57.899-1-114.3-8.3-169.2-27.7c-24.6-8.7-48.4-20.399-69.5-35.7v-0.199c-10.6-7.7-20.5-16.4-29.4-26.101c-42.1-45.899-42.6-102.3-43.5-160.8c0-3-0.1-6.5-0.1-9.5h50.2l18.7,147.4c20.7,20,48.2,36.399,82,48.399c47,16.601,98.2,24.2,161.1,26.2h61.9h62.2c62.899-2,114.1-9.6,161.1-26.2c33.8-12,61.3-28.399,82-48.399l18.601-147.4h50.199C824.101,327.65,824.001,331.15,824.001,334.15z'/%3E%3Cpath d='M83.501,160.65h25.3h341.2h341.4h25.3c11,0,20.3-9.1,20.3-20.1v-53.9c0-11-9.2-20-20.3-20h-366.7h-366.5c-11,0-20.5,9-20.5,20v53.9C63.001,151.55,72.501,160.65,83.501,160.65z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.icon-roller {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Cpath d='M13.5,2.5h-1V1.5027C12.5,1.225,12.2749,1,11.9973,1H1.5027C1.2251,1,1,1.225,1,1.5027v2.9946C1,4.7749,1.2251,5,1.5027,5h10.4946C12.2749,5,12.5,4.7749,12.5,4.4973V3.5H13v3.1021L6.8877,8.0127C6.6606,8.0654,6.5,8.2676,6.5,8.5v1.5074c-0.2783,0.02-0.5,0.246-0.5,0.5295v2.9261C6,13.7596,6.2404,14,6.5369,14h0.9261C7.7596,14,8,13.7596,8,13.4631v-2.9261c0-0.2834-0.2217-0.5095-0.5-0.5295v-1.11l6.1123-1.4102C13.8389,7.4351,14,7.2329,14,7V3C14,2.7236,13.7764,2.5,13.5,2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Cpath d='M13.5,2.5h-1V1.5027C12.5,1.225,12.2749,1,11.9973,1H1.5027C1.2251,1,1,1.225,1,1.5027v2.9946C1,4.7749,1.2251,5,1.5027,5h10.4946C12.2749,5,12.5,4.7749,12.5,4.4973V3.5H13v3.1021L6.8877,8.0127C6.6606,8.0654,6.5,8.2676,6.5,8.5v1.5074c-0.2783,0.02-0.5,0.246-0.5,0.5295v2.9261C6,13.7596,6.2404,14,6.5369,14h0.9261C7.7596,14,8,13.7596,8,13.4631v-2.9261c0-0.2834-0.2217-0.5095-0.5-0.5295v-1.11l6.1123-1.4102C13.8389,7.4351,14,7.2329,14,7V3C14,2.7236,13.7764,2.5,13.5,2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.icon-clock {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10,0 C15.5228475,0 20,4.4771525 20,10 C20,15.5228475 15.5228475,20 10,20 C4.4771525,20 0,15.5228475 0,10 C0,4.4771525 4.4771525,0 10,0 Z M9.06976744,5.58139535 C8.6844525,5.58139535 8.37209302,5.89375483 8.37209302,6.27906977 L8.37209302,6.27906977 L8.37209302,11.8604651 C8.37209302,12.2457801 8.6844525,12.5581395 9.06976744,12.5581395 L9.06976744,12.5581395 L14.6511628,12.5581395 C15.0364777,12.5581395 15.3488372,12.2457801 15.3488372,11.8604651 C15.3488372,11.4751502 15.0364777,11.1627907 14.6511628,11.1627907 L14.6511628,11.1627907 L9.76744186,11.1627907 L9.76744186,6.27906977 C9.76744186,5.89375483 9.45508238,5.58139535 9.06976744,5.58139535 Z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10,0 C15.5228475,0 20,4.4771525 20,10 C20,15.5228475 15.5228475,20 10,20 C4.4771525,20 0,15.5228475 0,10 C0,4.4771525 4.4771525,0 10,0 Z M9.06976744,5.58139535 C8.6844525,5.58139535 8.37209302,5.89375483 8.37209302,6.27906977 L8.37209302,6.27906977 L8.37209302,11.8604651 C8.37209302,12.2457801 8.6844525,12.5581395 9.06976744,12.5581395 L9.06976744,12.5581395 L14.6511628,12.5581395 C15.0364777,12.5581395 15.3488372,12.2457801 15.3488372,11.8604651 C15.3488372,11.4751502 15.0364777,11.1627907 14.6511628,11.1627907 L14.6511628,11.1627907 L9.76744186,11.1627907 L9.76744186,6.27906977 C9.76744186,5.89375483 9.45508238,5.58139535 9.06976744,5.58139535 Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.stat {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
}

.label {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  background: #ffffff;
  padding: 18px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  z-index: 1;
  min-height: 520px;
}

.hero-visual img {
  border-radius: 24px;
  object-fit: cover;
}

.hero-main-image {
  height: 100%;
  min-height: 480px;
  object-position: 52% 58%;
}

.hero-support-card {
  position: absolute;
  right: 26px;
  bottom: 92px;
  width: 230px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  background: #ffffff;
  display: grid;
  grid-template-rows: auto auto;
}

.hero-support-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0;
}

.hero-support-card figcaption {
  padding: 10px 12px 12px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
}

.hero-floating-trust {
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: auto;
  padding: 11px 15px;
  border-radius: 14px;
  border: 1px solid rgba(214, 152, 35, 0.45);
  background: linear-gradient(135deg, rgba(255, 247, 224, 0.96), rgba(255, 235, 191, 0.92));
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(214, 152, 35, 0.22);
}

.hero-floating-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #7a5a12;
}

.hero-floating-value {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #2f2413;
}

.hero-floating-value::before {
  content: "★★★★★";
  display: inline-block;
  margin-right: 8px;
  letter-spacing: 1px;
  color: #c78b1a;
  font-size: 12px;
  transform: translateY(-1px);
}

.hero-cta-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.paint-ring {
  position: absolute;
  inset: auto -70px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -10deg,
    var(--ring-c1) 0deg 20deg,
    transparent 20deg 30deg,
    var(--ring-c2) 30deg 50deg,
    transparent 50deg 60deg,
    var(--ring-c3) 60deg 80deg,
    transparent 80deg 90deg,
    var(--ring-c4) 90deg 110deg,
    transparent 110deg 120deg,
    var(--ring-c5) 120deg 140deg,
    transparent 140deg 150deg,
    var(--ring-c6) 150deg 170deg,
    transparent 170deg 180deg,
    var(--ring-c7) 180deg 200deg,
    transparent 200deg 210deg,
    var(--ring-c8) 210deg 230deg,
    transparent 230deg 240deg,
    var(--ring-c9) 240deg 260deg,
    transparent 260deg 270deg,
    var(--ring-c10) 270deg 290deg,
    transparent 290deg 300deg,
    var(--ring-c11) 300deg 320deg,
    transparent 320deg 330deg,
    var(--ring-c12) 330deg 350deg,
    transparent 350deg 360deg
  );
  filter: blur(0.2px) drop-shadow(0 10px 24px rgba(226, 122, 92, 0.25));
  z-index: 2;
  -webkit-mask: radial-gradient(circle, transparent 50%, #000 51%);
  mask: radial-gradient(circle, transparent 50%, #000 51%);
}

.paint-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-apple), transform 0.9s var(--ease-apple);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple);
}

.tilt:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.parallax {
  will-change: transform;
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

.trust {
  padding: 30px 0 60px;
  background: linear-gradient(135deg, var(--tint-1), var(--panel));
}

.partners {
  padding: 26px 0 34px;
  background:
    radial-gradient(circle at 12% 30%, rgba(124, 162, 138, 0.08), transparent 24%),
    radial-gradient(circle at 86% 68%, rgba(242, 193, 153, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.92));
}

.partners-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 22px;
  align-items: center;
  padding: 30px 32px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.partners-head {
  margin-bottom: 0;
}

.partners-head h2 {
  margin: 10px 0 12px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.partner-card {
  height: 92px;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f2 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.partner-card .partner-logo {
  display: block;
  width: auto !important;
  max-width: 150px !important;
  height: auto !important;
  max-height: 44px !important;
  object-fit: contain !important;
}

.partner-card .partner-logo--caparol {
  max-width: 118px !important;
}

.local-strip {
  background:
    radial-gradient(circle at 18% 18%, rgba(226, 122, 92, 0.06), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(90, 136, 200, 0.06), transparent 22%),
    #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-strip p {
  color: var(--muted);
}

.local-compact {
  display: grid;
  gap: 18px;
}

.local-head {
  margin-bottom: 0;
}

.local-head h2 {
  margin: 10px 0 12px;
}

.local-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 33, 44, 0.08);
}

.local-lines span {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--ink);
}

.local-lines span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: var(--bullet-outline);
  box-shadow: var(--bullet-shadow);
}

.local-lines span:nth-child(3n + 2)::before {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.local-lines span:nth-child(3n)::before {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
}

.local-note {
  padding-top: 14px;
  border-top: 1px solid rgba(23, 33, 44, 0.08);
  font-size: 14px;
  color: var(--muted);
}

.local-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 8px;
}

.trust-line {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: start;
  gap: 12px;
  padding-top: 4px;
}

.trust-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  margin-top: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: var(--bullet-outline);
  box-shadow: var(--bullet-shadow);
}

.trust-line:nth-child(3n + 2) .trust-dot {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.trust-line:nth-child(3n) .trust-dot {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
}

.trust-label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.trust-line p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.trust-rating {
  margin-top: 16px;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  flex-wrap: nowrap;
}

.hero-rating {
  margin-top: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.rating-item {
  display: grid;
  gap: 4px;
  min-width: 0;
  flex: 1 1 0;
}

.rating-item.compact {
  align-items: start;
  grid-template-rows: auto auto;
}

.trust-pill {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(226, 122, 92, 0.2);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  min-height: 56px;
}

.rating-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.stars {
  display: flex;
  gap: 4px;
  font-size: 16px;
  line-height: 1;
}

.star {
  color: rgba(226, 122, 92, 0.25);
}

.star.full {
  color: var(--accent);
}

.star.almost {
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent) 85%, rgba(226, 122, 92, 0.25) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-inline {
  color: var(--muted);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.rating-value {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}


.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 89, 0.12);
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

section {
  padding: 70px 0;
}

section + section {
  border-top: 1px solid rgba(23, 33, 44, 0.04);
}

.services {
  background: linear-gradient(120deg, var(--tint-2), transparent 55%);
}

.process {
  background: linear-gradient(120deg, var(--tint-3), transparent 60%);
}

.testimonials {
  background: linear-gradient(120deg, var(--tint-1), transparent 55%);
}

.section-head {
  max-width: 640px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  margin: 10px 0;
}

.section-head p {
  color: var(--muted);
}


.services-shell {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
}

.services-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.service-tab {
  appearance: none;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.service-tab-no {
  margin-right: 10px;
  font-family: "Bebas Neue", sans-serif;
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 0.4px;
}

.service-tab-label {
  vertical-align: middle;
}

.service-tab.is-active {
  border-color: rgba(255, 122, 89, 0.45);
  background: linear-gradient(120deg, rgba(255, 122, 89, 0.1), rgba(59, 130, 246, 0.08));
  color: var(--ink);
}

.service-tab:hover {
  transform: translateY(-1px);
}

.services-detail {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.service-panel {
  display: none;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
}

.service-panel.is-active {
  display: grid;
}

.service-panel-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.service-panel-copy {
  align-self: center;
}

.service-panel-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.service-panel-title {
  margin: 0;
  font-weight: 700;
}

.service-panel-copy > .service-panel-title {
  margin: 0;
  color: var(--ink);
}

.service-panel-copy > p {
  margin: 10px 0 14px;
  color: var(--muted);
}

.service-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 15px;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: var(--bullet-outline);
  box-shadow: var(--bullet-shadow);
}

.service-points li:nth-child(3n + 2)::before {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.service-points li:nth-child(3n)::before {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
}

.service-panel-cta {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 89, 0.4);
  background: linear-gradient(120deg, rgba(255, 122, 89, 0.14), rgba(59, 130, 246, 0.12));
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-panel-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.about {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 36px;
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 460px;
  justify-self: start;
}

.about-image img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center 42%;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: var(--bullet-outline);
  box-shadow: var(--bullet-shadow);
  position: absolute;
  left: 0;
  top: 7px;
}

.checklist li:nth-child(3n + 2)::before {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.checklist li:nth-child(3n)::before {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.process-step span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  color: var(--accent);
}

.process-step-title {
  color: var(--ink) !important;
  font-weight: 700;
}

.process-step p {
  color: var(--muted);
  margin-top: 8px;
}

.process-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.gallery {
  background: linear-gradient(135deg, var(--tint-2), var(--panel-2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, 120px);
  gap: 18px;
}

.collage .tile {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 1fr auto;
}

.collage .tile img {
  height: 100%;
  object-fit: cover;
}

.collage .tile figcaption {
  background: #ffffff;
}

.collage .tile-a {
  grid-column: 1 / span 5;
  grid-row: 1 / span 4;
}

.collage .tile-b {
  grid-column: 6 / span 4;
  grid-row: 1 / span 2;
}

.collage .tile-c {
  grid-column: 10 / span 3;
  grid-row: 1 / span 2;
}

.collage .tile-d {
  grid-column: 6 / span 4;
  grid-row: 3 / span 3;
}

.collage .tile-e {
  grid-column: 1 / span 5;
  grid-row: 5 / span 2;
}

.collage .tile-f {
  grid-column: 10 / span 3;
  grid-row: 3 / span 4;
}

.collage .tile-g {
  grid-column: 6 / span 4;
  grid-row: 6 / span 1;
}

.tile-quote,
.tile-badge {
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--tint-2), var(--tint-4));
  grid-template-rows: auto;
}

.tile-badge {
  background: linear-gradient(135deg, var(--tint-1), var(--tint-3));
}

.tile-badge-small {
  background: linear-gradient(135deg, var(--tint-1), var(--tint-2));
  padding: 18px;
}

.tile-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.quote-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--muted);
}

.quote-text {
  color: var(--muted);
  font-size: 13px;
}

figure {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
}

.caption-label {
  font-weight: 700;
  color: var(--ink);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-grid article {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.testimonial-grid p {
  color: var(--muted);
  margin-bottom: 16px;
}

.author-title {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.author span:not(.author-title) {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.author a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.team {
  background: linear-gradient(135deg, var(--tint-3), var(--panel));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.faq-list details {
  background: linear-gradient(135deg, #ffffff, var(--panel));
  border: 1px solid rgba(23, 33, 44, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-list details[open] {
  border-color: rgba(75, 131, 222, 0.35);
  box-shadow: 0 14px 30px rgba(75, 131, 222, 0.14);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 16px 52px 16px 18px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 500;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  color: var(--accent-2);
  border-color: rgba(75, 131, 222, 0.35);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.45s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list details[open] .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 36px;
  align-items: center;
}

.team-image {
  width: 100%;
  max-width: 460px;
  justify-self: end;
}

.team-image img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center 32%;
}

.team-metrics {
  margin-top: 18px;
  display: flex;
  gap: 20px;
}

.cta {
  padding-bottom: 90px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.1), rgba(59, 130, 246, 0.08));
  border-radius: 30px;
  border: 1px solid var(--line);
  padding: 36px;
  box-shadow: var(--shadow);
}


.cta-copy {
  max-width: 760px;
}

.cta-copy h2 {
  margin: 8px 0 10px;
}

.cta-copy p {
  max-width: 48ch;
  color: var(--muted);
}

.cta-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  max-width: 920px;
}

.cta-assurance article {
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.cta-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 138, 107, 0.16), rgba(75, 131, 222, 0.14));
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.cta-assurance-title {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
}

.cta-assurance p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-list span {
  color: var(--muted);
  font-size: 13px;
}

.project-check {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.project-check label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.pc-label-compact {
  width: min(240px, 100%);
  max-width: 240px;
  justify-self: start;
}

.pc-select-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.pc-select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -8px;
  border-right: 2px solid rgba(91, 95, 106, 0.65);
  border-bottom: 2px solid rgba(91, 95, 106, 0.65);
  transform: rotate(45deg);
  pointer-events: none;
}

.pc-select {
  width: 100%;
}

.mini-trust {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mini-trust-bottom {
  grid-column: 1 / -1;
  margin-top: 0;
}

.mini-trust span {
  font-size: 12px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  text-align: center;
}

.pc-progress-wrap {
  display: grid;
  gap: 8px;
}

.pc-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.pc-step-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.pc-step-count {
  font-size: 12px;
  font-weight: 600;
}

.pc-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--tint-3);
  overflow: hidden;
}

.pc-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f08a6b, #4b83de);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.pc-micro {
  font-size: 12px;
  color: var(--muted);
}

.pc-screen {
  display: none;
  gap: 12px;
}

.pc-screen.is-active {
  display: grid;
}

.pc-screen-title {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink) !important;
}

.pc-screen p {
  color: var(--muted);
}

.pc-screen-trust,
.pc-submit-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pc-screen-trust span,
.pc-submit-trust span {
  font-size: 12px;
  color: var(--muted);
  background: linear-gradient(135deg, var(--tint-1), var(--tint-2));
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
}

.pc-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pc-card {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 16px;
  min-height: 54px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.pc-card:hover {
  transform: translateY(-1px);
  border-color: #f08a6b;
}

.pc-card.is-selected {
  border-color: #4b83de;
  background: linear-gradient(135deg, rgba(240, 138, 107, 0.12), rgba(75, 131, 222, 0.12));
}

.pc-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.pc-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pc-hint {
  font-size: 13px;
  color: var(--muted);
}

.pc-consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.form-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

input,
select,
textarea {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
  min-height: 54px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
  padding: 14px 46px 14px 18px;
  min-height: 58px;
  border-radius: 18px;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

select:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(75, 131, 222, 0.55);
  box-shadow: 0 0 0 4px rgba(75, 131, 222, 0.12);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.pc-next-note {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(240, 138, 107, 0.08);
  color: var(--ink) !important;
}

.form-response {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;
}

.form-response[data-state="error"] {
  color: #b2462d;
}

.project-check .btn[disabled] {
  opacity: 0.75;
  cursor: progress;
  transform: none;
}

.site-footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.footer-rating-card {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(214, 152, 35, 0.35);
  background: linear-gradient(135deg, rgba(255, 247, 224, 0.92), rgba(255, 235, 191, 0.88));
  box-shadow: 0 6px 14px rgba(214, 152, 35, 0.1);
}

.footer-rating-label {
  margin: 0;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #7a5a12;
  font-weight: 600;
}

.footer-rating-value {
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(16px, 1.45vw, 20px);
  font-family: "Zora", "Manrope", sans-serif;
  font-weight: 650;
  letter-spacing: 0;
  color: #2f2413;
  white-space: nowrap;
}

.rating-date {
  margin: 4px 0 0;
  color: rgba(122, 90, 18, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-stars {
  font-size: 14px;
  color: #c78b1a;
  letter-spacing: 0.8px;
  transform: translateY(-1px);
}

.footer-heading {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.footer-trust {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.legal-page {
  padding: 56px 0 72px;
  background: linear-gradient(135deg, var(--panel), var(--tint-3));
}

.legal-grid {
  display: grid;
  gap: 20px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.legal-card h1,
.legal-card h2 {
  margin-bottom: 12px;
}

.legal-card p {
  color: var(--muted);
  margin: 0 0 12px;
}

.legal-intro {
  font-size: 15px;
}

.legal-section + .legal-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 33, 44, 0.08);
}

.legal-section h2 {
  font-size: 15px;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
}

.legal-heading {
  font-size: 14px;
  margin: 18px 0 8px;
  color: var(--ink);
  font-weight: 700;
}

.legal-subtitle {
  font-size: 13px;
  margin: 14px 0 6px;
  color: var(--ink);
  font-weight: 700;
}

.legal-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.legal-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
}

.legal-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: var(--bullet-outline);
  box-shadow: var(--bullet-shadow);
}

.legal-list li:nth-child(3n + 2)::before {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.legal-list li:nth-child(3n)::before {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
}

.legal-callout {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(226, 122, 92, 0.18);
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.08), rgba(242, 193, 153, 0.1));
}

.legal-source {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 33, 44, 0.08);
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .local-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-inline-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-visual img {
    max-height: 420px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-main-image {
    min-height: 380px;
    object-position: 56% 54%;
  }

  .hero-support-card {
    width: 190px;
    right: 20px;
    bottom: 80px;
  }

  .hero-support-card img {
    height: 114px;
  }

  .about-image img,
  .team-image img {
    max-height: 360px;
  }

  .about-image,
  .team-image {
    max-width: 100%;
    justify-self: stretch;
  }
  .hero-grid,
  .about-grid,
  .team-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .testimonial-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-compact {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .services-detail {
    min-height: 0;
  }

  .service-panel-image img {
    min-height: 220px;
  }

  .collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .collage .tile,
  .collage .tile-a,
  .collage .tile-b,
  .collage .tile-c,
  .collage .tile-d,
  .collage .tile-e,
  .collage .tile-f,
  .collage .tile-g {
    grid-column: span 1;
    grid-row: span 1;
  }

  .collage .tile img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    overflow: visible;
  }

  .site-nav {
    display: none !important;
  }

  .nav-toggle {
    display: inline-grid;
    position: relative;
    z-index: 30;
  }

  .nav-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(32, 63, 117, 0.98) 0%, rgba(226, 122, 92, 0.92) 100%);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  }

  .nav-toggle[aria-expanded="true"]::before {
    background: #fff;
  }

  .mobile-nav-panel {
    display: none;
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 24;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity 0.22s var(--ease-apple);
  }

  .mobile-nav-panel.is-open {
    display: block;
    opacity: 1;
  }

  .mobile-nav-shell {
    min-height: calc(100dvh - 86px);
    padding: 30px 24px 40px;
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 24%),
      linear-gradient(160deg, rgba(245, 244, 242, 0.92) 0%, rgba(232, 237, 244, 0.94) 52%, rgba(243, 232, 226, 0.92) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    overflow-y: auto;
    transform: translateY(12px) scale(0.985);
    opacity: 0;
    transition:
      transform 0.28s var(--ease-apple),
      opacity 0.22s var(--ease-apple);
  }

  .mobile-nav-panel.is-open .mobile-nav-shell {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .mobile-nav-kicker {
    margin: 0;
    color: rgba(23, 33, 44, 0.56);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
  }

  .mobile-nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 33, 44, 0.08);
    color: var(--ink);
    font-size: clamp(18px, 3.2vw, 22px);
    font-weight: 650;
    line-height: 1.1;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.2s var(--ease-apple),
      transform 0.24s var(--ease-apple),
      background 0.2s var(--ease-apple),
      border-color 0.2s var(--ease-apple),
      box-shadow 0.2s var(--ease-apple);
  }

  .mobile-nav-panel.is-open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-link.is-current {
    background: linear-gradient(135deg, rgba(255, 246, 240, 0.9) 0%, rgba(248, 236, 227, 0.9) 100%);
    border-color: rgba(226, 122, 92, 0.18);
  }

  .mobile-nav-panel.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.04s; }
  .mobile-nav-panel.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.08s; }
  .mobile-nav-panel.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.12s; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-panel,
  .mobile-nav-shell,
  .mobile-nav-link {
    transition: none !important;
  }

  .mobile-nav-shell,
  .mobile-nav-link {
    transform: none !important;
  }
}

@media (max-width: 680px) {
  .local-head h2 {
    margin-bottom: 10px;
  }

  .local-lines {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 14px;
  }

  .local-lines span {
    font-size: 13px;
  }

  .local-note {
    padding-top: 12px;
    font-size: 13px;
  }

  .process-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 0;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, rgba(226, 122, 92, 0.45), rgba(90, 136, 200, 0.2));
  }

  .process-step {
    position: relative;
    padding: 0 0 0 40px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .process-step::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.92);
  }

  .process-step span {
    position: static;
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1;
    color: var(--accent);
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .process-step-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.18;
  }

  .process-step p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.55;
  }

  .process-note {
    margin-top: 10px;
    padding-top: 0;
    border-top: 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .container {
    width: min(1200px, calc(100vw - 28px));
  }

  .header-inner,
  .logo,
  .logo-text,
  .legal-card,
  .footer-bottom > * {
    min-width: 0;
  }

  .logo {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .logo-text {
    font-size: 14px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .legal-page {
    padding: 32px 0 44px;
  }

  .legal-grid {
    gap: 14px;
  }

  .legal-card {
    padding: 18px;
    border-radius: 20px;
  }

  .legal-card h1 {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .legal-card h2 {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .legal-heading {
    font-size: 13px;
    margin: 16px 0 6px;
  }

  .legal-subtitle {
    font-size: 12px;
    margin: 12px 0 4px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .legal-card p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .legal-intro {
    font-size: 14px;
  }

  .legal-section + .legal-section {
    margin-top: 18px;
    padding-top: 18px;
  }

  .legal-source {
    margin-top: 20px;
    padding-top: 14px;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
  }

  .legal-callout {
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
  }

  .legal-list li {
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .swatches {
    margin-top: 22px;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-actions .btn-primary {
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero-grid {
    gap: 24px;
  }

  .cta {
    padding-bottom: 52px;
  }

  .cta-grid {
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .cta-assurance {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    padding: 14px;
  }

  .hero-visual img {
    max-height: none;
  }

  .hero-main-image {
    min-height: 360px;
    height: 360px;
    object-position: 54% 52%;
  }

  .hero-inline-trust {
    display: block;
    margin-top: 18px;
    width: 100%;
    padding: 2px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-floating-label {
    font-size: 11px;
    letter-spacing: 1.6px;
    color: #7a5a12;
  }

  .hero-floating-value {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #2f2413;
  }

  .hero-stars {
    font-size: 13px;
    color: #c78b1a;
    letter-spacing: 0.8px;
  }

  .hero-image-metrics {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
  }

  .hero-image-metrics span {
    position: absolute;
    display: inline-flex;
    align-items: center;
    text-align: left;
    padding: 7px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.25;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
  }

  .hero-image-metrics span::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(214, 152, 35, 0.95);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  }

  .hero-image-metrics span::after {
    content: "";
    position: absolute;
    height: 3px;
    background-image: radial-gradient(circle, rgba(214, 152, 35, 0.85) 1px, transparent 1.5px);
    background-size: 7px 3px;
    background-repeat: repeat-x;
  }

  .hero-image-metrics .metric-a {
    top: 20px;
    left: 22px;
    font-size: 10px;
  }

  .hero-image-metrics .metric-a::before {
    left: 100%;
    top: 50%;
    margin-left: 8px;
    transform: translateY(-50%);
  }

  .hero-image-metrics .metric-a::after {
    left: 100%;
    top: 50%;
    width: 20px;
    margin-left: 1px;
    transform: translateY(-50%);
  }

  .hero-image-metrics .metric-b {
    top: 92px;
    right: 24px;
    font-size: 11px;
    padding: 8px 11px;
  }

  .hero-image-metrics .metric-b::before {
    right: 100%;
    top: 50%;
    margin-right: 8px;
    transform: translateY(-50%);
  }

  .hero-image-metrics .metric-b::after {
    right: 100%;
    top: 50%;
    width: 22px;
    margin-right: 1px;
    transform: translateY(-50%);
  }

  .hero-image-metrics .metric-c {
    left: 22px;
    bottom: 22px;
    max-width: 66%;
    font-size: 10px;
  }

  .hero-image-metrics .metric-c::before {
    left: 100%;
    top: 50%;
    margin-left: 8px;
    transform: translateY(-50%);
  }

  .hero-image-metrics .metric-c::after {
    left: 100%;
    top: 50%;
    width: 18px;
    margin-left: 1px;
    transform: translateY(-50%);
  }

  .hero-image-metrics .metric-d {
    right: 22px;
    bottom: 78px;
    font-size: 10px;
    padding: 6px 10px;
  }

  .hero-image-metrics .metric-d::before {
    right: 100%;
    top: 50%;
    margin-right: 8px;
    transform: translateY(-50%);
  }

  .hero-image-metrics .metric-d::after {
    right: 100%;
    top: 50%;
    width: 16px;
    margin-right: 1px;
    transform: translateY(-50%);
  }

  .paint-ring {
    display: none;
  }

  .about-image img,
  .team-image img {
    max-height: 260px;
  }


  .hero-stats {
    display: none;
  }

  .stat {
    font-size: 24px;
  }

  .stat-icon {
    width: 18px;
    height: 18px;
  }

  .stat-icon.icon-text {
    font-size: 13px;
    transform: translateY(3px);
  }

  .label {
    font-size: 12px;
  }

  .paint-ring {
    width: 120px;
    height: 120px;
    inset: auto -52px -6px auto;
  }

  .gallery-grid,
  .testimonial-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-compact {
    gap: 14px;
  }

  .trust-line {
    gap: 10px;
  }

  .trust-label {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .trust-line p {
    font-size: 14px;
  }

  .services-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .service-tab {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 2px;
    text-align: center;
    white-space: normal;
    font-size: 11px;
    line-height: 1.2;
    padding: 8px 6px;
  }

  .service-tab-no {
    font-size: 18px;
    margin-right: 0;
  }

  .service-tab-label {
    display: block;
    max-width: 100%;
  }

  .service-panel {
    gap: 12px;
  }

  .services-detail {
    border-radius: 20px;
    padding: 12px;
  }

  .service-panel-image img {
    min-height: 180px;
    border-radius: 14px;
  }

  .collage .tile img {
    aspect-ratio: 5 / 4;
  }

  .service-panel-copy > p {
    margin: 8px 0 10px;
  }

  .service-points {
    gap: 6px;
  }

  .service-points li {
    font-size: 14px;
  }

  .service-panel-cta {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 10px 12px;
  }

  .footer-rating-card {
    margin-top: 16px;
    padding: 9px 11px;
    border-radius: 14px;
    border-color: rgba(214, 152, 35, 0.4);
    background: linear-gradient(135deg, rgba(255, 247, 224, 0.94), rgba(255, 235, 191, 0.9));
  }

  .footer-rating-value {
    font-size: 14px;
    gap: 5px;
    color: #2f2413;
    white-space: normal;
  }

  .footer-stars {
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #c78b1a;
  }

  .footer-rating-label {
    color: #7a5a12;
  }

  .rating-date {
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .mini-trust {
    grid-template-columns: 1fr;
  }

  .pc-cards {
    grid-template-columns: 1fr;
  }

  .pc-inline {
    grid-template-columns: 1fr;
  }

  .project-check {
    padding: 14px;
    border-radius: 18px;
  }

  .pc-progress-wrap {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #ffffff;
    padding-bottom: 8px;
  }

  .pc-screen {
    min-height: 52vh;
    align-content: start;
  }

  .pc-screen-title {
    font-size: 22px;
  }

  .pc-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-rating {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .hero-rating {
    width: 100%;
  }

  .rating-item {
    min-width: 0;
    grid-auto-flow: column;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 6px;
    flex: 1 1 0;
  }

  .rating-row {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .rating-label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .stars {
    font-size: 14px;
  }

  .stars .star:not(:first-child) {
    display: none;
  }

  .rating-inline {
    font-size: 10px;
    white-space: nowrap;
  }

  .rating-value {
    font-size: 12px;
  }

  .trust-pill {
    padding: 6px 8px;
  }

  .collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .team-metrics {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .mini-trust-bottom {
    order: 3;
    margin-top: 4px;
  }

  .footer-bottom span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.guide-page {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 44%, #f4efe8 100%);
}

.site-nav a.is-current {
  color: var(--ink);
}

.site-nav a.is-current::after {
  width: 100%;
}

.guide-hero {
  padding: 34px 0 18px;
}

.guide-hero-shell {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(224, 237, 251, 0.96) 0%, rgba(246, 242, 235, 0.94) 100%);
  border: 1px solid rgba(23, 33, 44, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
  position: relative;
  overflow: hidden;
}

.guide-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(90, 136, 200, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(226, 122, 92, 0.12), transparent 24%);
  pointer-events: none;
}

.page--guide .reveal {
  opacity: 1;
  transform: none;
}

.error-hero {
  padding: 52px 0 72px;
}

.error-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.error-panel,
.error-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
  border: 1px solid rgba(23, 33, 44, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.error-panel {
  padding: 38px;
}

.error-panel h1 {
  margin: 12px 0 20px;
  max-width: 11ch;
}

.error-intro {
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 0;
}

.error-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  align-items: center;
}

.error-note {
  margin-top: 38px;
  padding-top: 0;
}

.error-note-lead {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.error-note p {
  max-width: 48ch;
  color: var(--muted);
}

.error-aside {
  max-width: 560px;
}

.error-card {
  padding: 28px;
}

.error-links {
  display: grid;
  gap: 14px;
  margin: 0;
}

.error-links a {
  display: block;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(23, 33, 44, 0.08);
  color: var(--ink);
}

.error-links li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.error-closing {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.82fr);
  gap: 26px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.guide-hero-grid--editorial {
  align-items: center;
}

.guide-hero-aside {
  display: grid;
  align-self: stretch;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.guide-copy-header {
  grid-column: 1;
}

.guide-copy-intro {
  grid-column: 1;
}

.guide-copy h1 {
  margin: 10px 0 14px;
  max-width: 13ch;
}

.guide-copy p {
  max-width: 60ch;
  color: var(--muted);
}

.guide-hero-visual {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 33, 44, 0.08);
  border-radius: 26px;
  padding: 12px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.guide-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 18px;
  object-fit: cover;
}

.guide-intro-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-intro-list li,
.guide-feature-points li,
.guide-keypoints li,
.guide-check li,
.guide-aside-card li {
  position: relative;
  padding-left: 18px;
}

.guide-intro-list li::before,
.guide-feature-points li::before,
.guide-keypoints li::before,
.guide-check li::before,
.guide-aside-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: var(--bullet-outline);
  box-shadow: var(--bullet-shadow);
}

.guide-intro-list li:nth-child(3n + 2)::before,
.guide-feature-points li:nth-child(3n + 2)::before,
.guide-keypoints li:nth-child(3n + 2)::before,
.guide-check li:nth-child(3n + 2)::before,
.guide-aside-card li:nth-child(3n + 2)::before {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.guide-intro-list li:nth-child(3n)::before,
.guide-feature-points li:nth-child(3n)::before,
.guide-keypoints li:nth-child(3n)::before,
.guide-check li:nth-child(3n)::before,
.guide-aside-card li:nth-child(3n)::before {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-4));
}

.guide-listing {
  padding-top: 18px;
}

.section-head--guide {
  max-width: 760px;
}

.guide-hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
  position: sticky;
  top: 74px;
  z-index: 8;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.guide-hub-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.06);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.guide-entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.guide-intent-grid,
.guide-index-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.guide-search {
  margin: 18px 0 0;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(140deg, rgba(15, 23, 42, 0.94) 0%, rgba(32, 63, 117, 0.88) 48%, rgba(226, 122, 92, 0.82) 100%);
  color: #fff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.guide-search-head p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.guide-search-head .guide-card-title {
  margin: 0;
  color: #fff;
}

.guide-entry-aside {
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.96) 0%, rgba(247, 239, 231, 0.96) 100%);
  border: 1px solid rgba(226, 122, 92, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.guide-entry-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-entry-aside h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
}

.guide-entry-aside p {
  margin: 14px 0 0;
}

.guide-entry-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.guide-entry-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 33, 44, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.guide-search-shell {
  margin-top: 16px;
}

.guide-search-input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 16px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
}

.guide-search-input:focus {
  outline: 3px solid rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
}

.guide-search-input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.guide-search-hint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.guide-search-results {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.guide-search-group {
  display: grid;
  gap: 10px;
}

.guide-search-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-search-list {
  display: grid;
  gap: 10px;
}

.guide-search-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 244, 238, 0.96) 100%);
}

.guide-search-item .guide-card-title {
  margin: 10px 0 8px;
}

.guide-search-item p {
  margin: 0;
  color: var(--muted);
}

.guide-search-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(90, 136, 200, 0.1);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.guide-intent-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.guide-index-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-intent-card,
.guide-index-card {
  min-width: 0;
  border-radius: 20px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.guide-intent-card {
  position: relative;
  padding: 22px 20px 22px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-apple), box-shadow 0.25s var(--ease-apple), border-color 0.25s var(--ease-apple);
}

.guide-intent-card:nth-child(1) {
  background: linear-gradient(180deg, #fff6f0 0%, #f9eee5 100%);
}

.guide-intent-card:nth-child(2) {
  background: linear-gradient(180deg, #f5f7ff 0%, #edf2fd 100%);
}

.guide-intent-card:nth-child(3) {
  background: linear-gradient(180deg, #f3fbf8 0%, #e8f5ef 100%);
}

.guide-intent-card:nth-child(4) {
  background: linear-gradient(180deg, #fff8ef 0%, #f8efdf 100%);
}

.guide-intent-card:nth-child(5) {
  background: linear-gradient(180deg, #f7f3ff 0%, #efe7fb 100%);
}

.guide-intent-card .guide-card-title {
  margin-top: 12px;
  margin-bottom: 10px;
}

.guide-intent-card:hover,
.guide-intent-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(226, 122, 92, 0.28);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.guide-intent-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.guide-index-card {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,248,244,0.98) 100%);
}

.guide-index-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-index-card .guide-card-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.guide-index-card .guide-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 122, 92, 0.95) 0%, rgba(90, 136, 200, 0.85) 100%);
}

.guide-index-card:nth-child(2) .guide-card-title::after {
  background: linear-gradient(90deg, rgba(90, 136, 200, 0.95) 0%, rgba(48, 101, 188, 0.78) 100%);
}

.guide-index-card:nth-child(3) .guide-card-title::after {
  background: linear-gradient(90deg, rgba(79, 147, 123, 0.95) 0%, rgba(57, 112, 91, 0.78) 100%);
}

.guide-index-card:nth-child(4) .guide-card-title::after {
  background: linear-gradient(90deg, rgba(125, 99, 180, 0.95) 0%, rgba(89, 67, 139, 0.78) 100%);
}

.guide-index-card:nth-child(5) .guide-card-title::after {
  background: linear-gradient(90deg, rgba(167, 132, 61, 0.95) 0%, rgba(122, 97, 45, 0.78) 100%);
}

.guide-index-card:nth-child(6) .guide-card-title::after {
  background: linear-gradient(90deg, rgba(132, 96, 181, 0.95) 0%, rgba(90, 63, 132, 0.78) 100%);
}

.guide-hub-section + .guide-hub-section {
  margin-top: 18px;
}

.guide-stage {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f1ece5 100%);
  border: 1px solid rgba(23, 33, 44, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.guide-stage-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.guide-stage-tab {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s var(--ease-apple), border-color 0.2s var(--ease-apple), box-shadow 0.2s var(--ease-apple), background 0.2s var(--ease-apple);
}

.guide-stage-tab:hover,
.guide-stage-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(226, 122, 92, 0.26);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.guide-stage-tab.is-active {
  background: linear-gradient(135deg, #203f75 0%, #2e5ba8 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 24px rgba(32, 63, 117, 0.2);
}

.guide-stage-panels {
  position: relative;
}

.guide-stage-panel {
  display: none;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.guide-stage-panel.is-active {
  display: grid;
}

.guide-stage-aside,
.guide-stage-body {
  min-width: 0;
  border-radius: 24px;
}

.guide-stage-aside {
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: #fff;
  background-color: #203f75;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.guide-stage-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  mix-blend-mode: screen;
}

.guide-stage-panel--planung .guide-stage-aside {
  background: linear-gradient(145deg, #1f3358 0%, #2f527f 100%);
}

.guide-stage-panel--planung .guide-stage-aside::before {
  background-image: url("../images/guides/wohnung-streichen.webp");
}

.guide-stage-panel--kosten .guide-stage-aside {
  background: linear-gradient(145deg, #6d3a2a 0%, #c56749 100%);
}

.guide-stage-panel--kosten .guide-stage-aside::before {
  background-image: url("../images/guides/wohnung-streichen-bei-auszug.webp");
}

.guide-stage-panel--farbe .guide-stage-aside {
  background: linear-gradient(145deg, #2b584d 0%, #55907f 100%);
}

.guide-stage-panel--farbe .guide-stage-aside::before {
  background-image: url("../images/guides/wohnzimmer-streichen-ideen-hero.webp");
}

.guide-stage-panel--untergrund .guide-stage-aside {
  background: linear-gradient(145deg, #5c4d22 0%, #9a8241 100%);
}

.guide-stage-panel--untergrund .guide-stage-aside::before {
  background-image: url("../images/guides/flecken-an-der-wand-ueberstreichen.webp");
}

.guide-stage-panel--auszug .guide-stage-aside {
  background: linear-gradient(145deg, #4b365d 0%, #79579a 100%);
}

.guide-stage-panel--auszug .guide-stage-aside::before {
  background-image: url("../images/guides/wohnungsuebergabe-waende-pruefen.webp");
}

.guide-stage-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-stage-aside h4,
.guide-stage-aside p,
.guide-stage-points {
  position: relative;
  z-index: 1;
}

.guide-stage-aside h4 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.08;
}

.guide-stage-aside p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.guide-stage-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.guide-stage-points li {
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}

.guide-stage-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.guide-stage-body {
  padding: 0;
}

.guide-stage-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guide-stage-card {
  min-width: 0;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(251,249,245,0.98) 100%);
  border: 1px solid rgba(23, 33, 44, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.guide-stage-card .guide-card-title {
  margin: 12px 0 10px;
}

.guide-stage-card p {
  margin-bottom: 0;
}

.guide-stage-links {
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 33, 44, 0.06);
}

.guide-stage-links-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-related--hub-index {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,241,235,0.98) 100%);
}

.guide-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.guide-carousel {
  position: relative;
  margin-top: 18px;
}

.guide-carousel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.guide-carousel-button {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s var(--ease-apple), opacity 0.25s var(--ease-apple), border-color 0.25s var(--ease-apple);
}

.guide-carousel-button:hover,
.guide-carousel-button:focus-visible {
  border-color: rgba(226, 122, 92, 0.28);
  transform: translateY(-1px);
}

.guide-carousel-button:disabled {
  cursor: default;
  opacity: 0.38;
  transform: none;
}

.guide-carousel .guide-hub-grid--carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 286px;
  grid-template-columns: none;
  gap: 14px;
  margin-top: 0;
  padding: 2px 2px 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 33, 44, 0.22) transparent;
}

.guide-carousel .guide-hub-grid--carousel::-webkit-scrollbar {
  height: 8px;
}

.guide-carousel .guide-hub-grid--carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(23, 33, 44, 0.18);
}

.guide-carousel .guide-hub-card {
  width: 100%;
  scroll-snap-align: start;
}

.guide-hub-more {
  margin-top: 12px;
}

.guide-hub-card {
  display: block;
  position: relative;
  min-width: 0;
  cursor: pointer;
  border-radius: 22px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
  padding: 16px 16px 58px;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s var(--ease-apple), box-shadow 0.25s var(--ease-apple), border-color 0.25s var(--ease-apple);
}

.guide-hub-card img {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.guide-hub-card:hover,
.guide-hub-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(226, 122, 92, 0.28);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.guide-hub-card .guide-card-title {
  margin: 0 0 14px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.guide-hub-card p {
  margin-bottom: 0;
  color: var(--muted);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.area-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.area-hub-grid .guide-hub-card img {
  aspect-ratio: 4 / 3;
}

.area-trust-panel {
  margin-top: 24px;
}

.guide-aside-card a {
  color: inherit;
}

.area-page {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 42%, #f1eee9 100%);
}

.area-hero {
  padding: 44px 0 34px;
}

.area-hero-grid {
  align-items: center;
}

.area-hero .guide-breadcrumbs {
  margin-bottom: 18px;
}

.area-hero .hero-copy {
  align-self: center;
}

.area-hero .hero-copy h1 {
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 0.98;
}

.area-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.area-hero-trust {
  display: block;
  max-width: 100%;
  margin-top: 18px;
}

.area-hero-trust .swatches {
  margin-top: 0;
  margin-bottom: 10px;
  gap: 8px;
}

.area-hero-trust .swatches span {
  width: 26px;
  height: 8px;
  border-radius: 999px;
}

.area-hero-trust .hero-floating-label {
  font-size: 11px;
  letter-spacing: 1.6px;
}

.area-hero-trust .hero-floating-value {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.area-hero-trust .hero-stars {
  margin-right: 8px;
  font-size: 12px;
  letter-spacing: 1px;
}

.area-hero-trust .rating-date {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 1px;
}

.area-hero-trust--hub {
  max-width: 100%;
}

.area-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.area-trust-row--strong span:first-child {
  border-color: rgba(226, 122, 92, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.area-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.area-city-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-bottom: 14px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.area-city-badge img {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.12));
}

.area-city-badge span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.area-hero-image {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 10;
  min-height: 0;
  max-height: 460px;
  padding: 16px;
  border-radius: 30px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.area-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 22px;
}

.area-hero-image figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 12px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.area-map-panel {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(260px, 1fr);
  align-items: center;
  gap: 22px 28px;
  max-width: 980px;
  margin-inline: auto;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 239, 234, 0.92));
  box-shadow: var(--shadow);
}

.area-map {
  position: relative;
  grid-row: span 2;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  justify-self: center;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(145deg, rgba(226, 122, 92, 0.08), rgba(255, 255, 255, 0.72));
}

.area-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(245, 241, 236, 0.92));
}

.area-map-copy {
  display: grid;
  gap: 8px;
  align-self: end;
}

.area-map-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 0.98;
}

.area-map-copy p:not(.eyebrow) {
  max-width: 42ch;
  color: var(--muted);
  font-size: 14px;
}

.area-city-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
}

.area-city-option {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  min-height: 74px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s var(--ease-apple), border-color 0.25s var(--ease-apple), box-shadow 0.25s var(--ease-apple);
}

.area-city-option strong {
  font-size: 16px;
  line-height: 1.2;
}

.area-city-option span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.area-city-option:hover,
.area-city-option:focus-visible {
  border-color: rgba(226, 122, 92, 0.28);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

.area-city-more {
  grid-column: 1 / -1;
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(23, 33, 44, 0.14);
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.area-strip {
  background: #ffffff;
}

.area-strip .area-map-panel {
  margin-bottom: 28px;
}

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.area-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  min-width: 0;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.area-card-media {
  display: grid;
}

.area-card-crest-media {
  place-items: center;
  min-height: 128px;
  overflow: visible;
  border-radius: 16px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 241, 236, 0.88));
}

.area-card-crest {
  display: block;
  width: 76px;
  max-width: 42%;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.12));
}

.area-card h3 {
  margin: 8px 0 8px;
  font-size: 21px;
  line-height: 1.22;
}

.area-card p {
  color: var(--muted);
  font-size: 14px;
}

.area-card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.area-card-link::after {
  content: "→";
  margin-left: 6px;
}

.area-card--feature {
  background: linear-gradient(135deg, rgba(226, 122, 92, 0.1), rgba(90, 136, 200, 0.08)), #ffffff;
}

.area-service-strip {
  padding: 32px 0;
  background: #ffffff;
}

.area-service-grid,
.area-project-grid,
.area-proof-grid {
  display: grid;
  gap: 16px;
}

.area-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.area-service-grid article,
.area-project-grid article,
.area-proof-grid article {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.area-service-grid span,
.area-proof-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(226, 122, 92, 0.14), rgba(90, 136, 200, 0.12));
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
}

.area-service-grid h2,
.area-project-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.area-service-grid p,
.area-project-grid p,
.area-proof-grid p {
  color: var(--muted);
  font-size: 14px;
}

.area-sales-section {
  background: linear-gradient(135deg, rgba(90, 136, 200, 0.14), rgba(255, 255, 255, 0.78) 45%, var(--panel-2));
}

.area-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.area-split h2 {
  margin: 10px 0 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1;
}

.area-split p {
  color: var(--muted);
  margin-bottom: 12px;
}

.area-proof-grid {
  grid-template-columns: 1fr;
}

.area-projects {
  background: #ffffff;
}

.area-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.area-process {
  background: linear-gradient(120deg, var(--tint-3), transparent 60%);
}

.area-faq {
  background: #ffffff;
}

.area-final-cta {
  padding-bottom: 90px;
}

.area-cta-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
}

.area-cta-panel p {
  color: var(--muted);
  font-size: 14px;
}

.area-final-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.area-final-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.guide-topic-band {
  margin: 12px 0 10px;
  padding: 14px 0;
  background: linear-gradient(135deg, rgba(23, 33, 44, 0.96), rgba(38, 51, 68, 0.94));
}

.guide-topic-rail {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 12px 20px;
  align-items: center;
  padding: 0;
}

.guide-topic-rail-copy,
.guide-topic-rail-actions,
.guide-topic-rail-chips {
  min-width: 0;
}

.guide-topic-rail-copy .eyebrow,
.guide-topic-rail-copy h3,
.guide-topic-rail-copy p {
  color: #f7f8fa;
  overflow-wrap: normal;
  word-break: normal;
}

.guide-topic-rail-copy .eyebrow {
  opacity: 0.78;
}

.guide-topic-rail-copy h3 {
  margin: 4px 0 6px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.04;
  max-width: 380px;
}

.guide-topic-rail-copy p {
  margin: 0;
  max-width: 380px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(247, 248, 250, 0.82);
}

.guide-topic-rail-actions {
  display: flex;
  justify-items: start;
  align-items: center;
}

.guide-topic-rail-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 100%;
  gap: 8px;
}

.guide-topic-rail-chips--compact {
  gap: 6px 8px;
  align-items: center;
}

.guide-topic-rail-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f7f8fa;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.15;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.guide-topic-rail-chips a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.guide-feature {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  background: #ffffff;
  border: 1px solid rgba(23, 33, 44, 0.08);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  align-items: start;
}

.guide-feature-media {
  max-width: 360px;
  justify-self: start;
  background: linear-gradient(180deg, #faf8f4 0%, #ffffff 100%);
  border: 1px solid rgba(23, 33, 44, 0.06);
  border-radius: 22px;
  padding: 12px;
}

.guide-feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-height: 240px;
  border-radius: 18px;
  object-fit: cover;
}

.guide-feature-copy {
  display: grid;
  align-content: start;
}

.guide-feature-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.guide-topic-tag {
  color: var(--accent);
  font-weight: 700;
}

.guide-feature-copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
}

.guide-feature-copy p {
  color: var(--muted);
}

.guide-feature-points,
.guide-keypoints,
.guide-check,
.guide-aside-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.guide-feature-points {
  margin-top: 14px;
}

.guide-directory {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 22px;
  align-items: start;
}

.guide-directory-copy {
  padding-top: 8px;
}

.guide-directory-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
}

.guide-directory-copy p {
  color: var(--muted);
}

.guide-directory-list {
  display: grid;
  gap: 14px;
}

.guide-mini-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 33, 44, 0.08);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.guide-mini-no {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.16), rgba(90, 136, 200, 0.16));
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
}

.guide-mini-card h4 {
  margin: 2px 0 6px;
  font-size: 22px;
  line-height: 1.15;
}

.guide-mini-card p {
  margin: 0;
  color: var(--muted);
}

.guide-article {
  padding-top: 28px;
}

.guide-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 32px;
  align-items: start;
  justify-content: space-between;
}

.guide-article-main {
  background: #ffffff;
  border: 1px solid rgba(23, 33, 44, 0.08);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  min-width: 0;
}

.guide-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.guide-breadcrumbs a {
  color: inherit;
}

.guide-breadcrumbs span:last-child {
  color: var(--ink);
}

.guide-intro {
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
  max-width: 62ch;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.guide-article-main h1 {
  margin: 14px 0 18px;
  max-width: 15ch;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.guide-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-bottom: 26px;
}

.guide-article-meta span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(23, 33, 44, 0.04);
  color: var(--muted);
  font-size: 13px;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.guide-lead-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  margin: 28px 0 36px;
  align-items: start;
}

.guide-article-figure {
  max-width: 320px;
  background: #faf8f4;
  border: 1px solid rgba(23, 33, 44, 0.06);
  border-radius: 22px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.guide-article-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 220px;
  object-fit: cover;
}

.guide-article-figure figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.guide-summary-card,
.guide-box,
.guide-related {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
  border: 1px solid rgba(23, 33, 44, 0.08);
  border-radius: 22px;
  padding: 24px;
}

.guide-box-title,
.guide-box h3,
.guide-related h2,
.guide-self-check h2 {
  margin-top: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  color: var(--ink);
  font-weight: 700;
}

.guide-box {
  margin: 30px 0 34px;
}

.guide-hub-section .guide-box,
.guide-hub-section .guide-related {
  margin: 0;
}

.guide-box--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,244,238,0.96) 100%);
}

.guide-box--tool {
  overflow: visible;
}

.guide-box--image-wash {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 250, 246, 0.92) 100%);
}

.guide-box--image-wash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 244, 238, 0.72)),
    url("../images/guides/wohnung-streichen-bei-auszug.webp") center right / cover no-repeat;
  opacity: 0.32;
  filter: saturate(0.8) blur(1px);
  transform: scale(1.02);
  z-index: -2;
}

.guide-box--image-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(90, 136, 200, 0.12), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.88) 100%);
  z-index: -1;
}

.guide-box--image-wash .guide-box-head,
.guide-box--image-wash .guide-topic-links {
  position: relative;
  z-index: 1;
}

.guide-box-head {
  margin-bottom: 18px;
}

.guide-box-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.guide-box-head--faq {
  margin-bottom: 22px;
}

.guide-inline-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.guide-inline-toc a,
.guide-toc a {
  color: var(--ink);
}

.guide-inline-toc a {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(23, 33, 44, 0.08);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.guide-article-main h2 {
  margin: 42px 0 14px;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.guide-article-main h3 {
  margin: 20px 0 8px;
  font-size: 21px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.guide-article-main p + p {
  margin-top: 16px;
}

.guide-article-main p,
.guide-article-main li,
.guide-article-main figcaption,
.guide-aside-card p,
.guide-aside-card li,
.guide-toc a,
.faq-list summary,
.faq-answer p {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.guide-sequence {
  display: grid;
  gap: 14px;
  margin: 24px 0 20px;
}

.guide-sequence-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: #faf9f6;
}

.guide-sequence-no {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.18), rgba(90, 136, 200, 0.18));
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
}

.guide-keypoints--compact li,
.guide-check li,
.guide-aside-card li {
  color: var(--ink);
}

.guide-highlight {
  margin: 24px 0 14px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(226, 122, 92, 0.16);
  background: linear-gradient(135deg, rgba(226, 122, 92, 0.08), rgba(90, 136, 200, 0.08));
}

.guide-highlight strong {
  display: block;
  margin-bottom: 6px;
}

.guide-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 34px;
}

.guide-trust-item {
  min-width: 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 250, 246, 0.96) 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.guide-trust-label,
.guide-method-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-trust-value {
  display: block;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.guide-trust-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.guide-method-card {
  margin: 34px 0;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(226, 122, 92, 0.16);
  background:
    radial-gradient(circle at top right, rgba(90, 136, 200, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(255, 248, 243, 0.98) 0%, rgba(252, 250, 246, 0.98) 64%, rgba(244, 248, 246, 0.96) 100%);
}

.guide-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.guide-method-item {
  min-width: 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.guide-method-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.guide-method-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.guide-emphasis-label {
  font-weight: 800;
}

.guide-self-check {
  margin: 28px 0 34px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.guide-self-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guide-self-check label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.25s var(--ease-apple), background-color 0.25s var(--ease-apple), transform 0.25s var(--ease-apple);
}

.guide-self-check label:has(input:checked) {
  border-color: rgba(226, 122, 92, 0.34);
  background: rgba(226, 122, 92, 0.08);
  transform: translateY(-1px);
}

.guide-self-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.guide-self-check span {
  min-width: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.guide-self-check-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 33, 44, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.guide-signal-grid,
.guide-scenario-strip,
.guide-diagnostic-flow,
.guide-palette-grid {
  display: grid;
  gap: 14px;
  margin: 22px 0 18px;
}

.guide-signal-grid,
.guide-scenario-strip,
.guide-palette-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-diagnostic-flow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-signal-card,
.guide-scenario-card,
.guide-diagnostic-item,
.guide-palette-card {
  min-width: 0;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 250, 246, 0.98) 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.guide-signal-card {
  position: relative;
  overflow: hidden;
}

.guide-signal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(226, 122, 92, 0.9), rgba(90, 136, 200, 0.55));
}

.guide-signal-level,
.guide-scenario-label,
.guide-diagnostic-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(226, 122, 92, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-signal-card .guide-card-title,
.guide-scenario-card .guide-card-title,
.guide-diagnostic-item .guide-card-title,
.guide-palette-card .guide-card-title {
  margin-top: 14px;
  margin-bottom: 10px;
}

.guide-signal-card p:last-child,
.guide-scenario-card p:last-child,
.guide-diagnostic-item p:last-child,
.guide-palette-card p:last-child {
  margin-bottom: 0;
}

.guide-scenario-value {
  margin: 14px 0 10px;
  color: var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1;
  letter-spacing: 0.2px;
}

.guide-diagnostic-item {
  position: relative;
  padding-left: 72px;
}

.guide-diagnostic-no {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(226, 122, 92, 0.18), rgba(90, 136, 200, 0.18));
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.guide-palette-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.guide-palette-swatches span {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.guide-cost-grid,
.guide-compare,
.guide-topic-links {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.guide-cost-grid,
.guide-topic-links,
.guide-decision-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 14px;
}

.guide-cost-card,
.guide-compare-card,
.guide-link-card,
.guide-decision-card,
.guide-practice-note {
  border-radius: 20px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: #faf9f6;
  padding: 20px;
}

.guide-link-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
  cursor: pointer;
  padding-bottom: 64px;
}

.guide-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.34;
  filter: saturate(0.92);
  z-index: -2;
}

.guide-link-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 252, 247, 0.74) 100%);
  z-index: -1;
}

.guide-link-card > * {
  position: relative;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.guide-card-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s var(--ease-apple), background-color 0.25s var(--ease-apple), border-color 0.25s var(--ease-apple);
  pointer-events: none;
}

.guide-hub-card:hover .guide-card-arrow,
.guide-link-card:hover .guide-card-arrow,
.guide-hub-card:focus-within .guide-card-arrow,
.guide-link-card:focus-within .guide-card-arrow {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(226, 122, 92, 0.28);
}

.guide-box--image-wash .guide-link-card {
  background: rgba(255, 252, 247, 0.32);
  backdrop-filter: blur(6px);
}

.guide-link-card--wash-wohnen::before,
.guide-next-card.guide-link-card--wash-wohnen::before {
  background-image: url("../images/guides/wohnung-streichen.webp");
}

.guide-link-card--wash-einzug::before,
.guide-next-card.guide-link-card--wash-einzug::before {
  background-image: url("../images/guides/service-einzug-auszug.jpg");
}

.guide-link-card--wash-kosten::before,
.guide-next-card.guide-link-card--wash-kosten::before {
  background-image: url("../images/guides/wohnung-streichen-kosten.webp");
}

.guide-link-card--wash-kosten-pillar::before,
.guide-next-card.guide-link-card--wash-kosten-pillar::before {
  background-image: url("../images/guides/malerarbeiten-kosten-planung.webp");
}

.guide-link-card--wash-kosten-qm::before,
.guide-next-card.guide-link-card--wash-kosten-qm::before {
  background-image: url("../images/guides/malerarbeiten-kosten-flaechenaufmass.webp");
}

.guide-link-card--wash-kosten-stunde::before,
.guide-next-card.guide-link-card--wash-kosten-stunde::before {
  background-image: url("../images/guides/maler-kosten-pro-stunde-ablaufplanung.webp");
}

.guide-link-card--wash-kosten-rechner::before,
.guide-next-card.guide-link-card--wash-kosten-rechner::before {
  background-image: url("../images/guides/malerarbeiten-kosten-rechner-laptop-kalkulation.webp");
}

.guide-link-card--wash-kosten-material::before,
.guide-next-card.guide-link-card--wash-kosten-material::before {
  background-image: url("../images/guides/maler-kosten-mit-material-stillleben.webp");
}

.guide-link-card--wash-kosten-haus::before,
.guide-next-card.guide-link-card--wash-kosten-haus::before {
  background-image: url("../images/guides/kosten-maler-haus-150-qm-treppenhaus-flur.webp");
}

.guide-link-card--wash-decke::before,
.guide-next-card.guide-link-card--wash-decke::before {
  background-image: url("../images/guides/decke-streichen-ohne-streifen.webp");
}

.guide-link-card--wash-auszug::before,
.guide-next-card.guide-link-card--wash-auszug::before {
  background-image: url("../images/guides/wohnung-streichen-bei-auszug.webp");
}

.guide-link-card--wash-reparaturen::before,
.guide-next-card.guide-link-card--wash-reparaturen::before {
  background-image: url("../images/guides/schoenheitsreparaturen-bei-auszug.webp");
}

.guide-link-card--wash-uebergabe::before,
.guide-next-card.guide-link-card--wash-uebergabe::before {
  background-image: url("../images/guides/wohnungsuebergabe-nach-dem-streichen.webp");
}

.guide-link-card--wash-waende::before,
.guide-next-card.guide-link-card--wash-waende::before {
  background-image: url("../images/guides/waende-streichen-lassen-hero.webp");
}

.guide-link-card--wash-wohnzimmer::before,
.guide-next-card.guide-link-card--wash-wohnzimmer::before {
  background-image: url("../images/guides/wohnzimmer-streichen-ideen-hero.webp");
}

.guide-link-card--wash-akzentwand::before,
.guide-next-card.guide-link-card--wash-akzentwand::before {
  background-image: url("../images/guides/akzentwand-wohnzimmer-hero.webp");
}

.guide-link-card--wash-tapezieren::before,
.guide-next-card.guide-link-card--wash-tapezieren::before {
  background-image: url("../images/guides/tapezieren-oder-streichen-hero.webp");
}

.guide-link-card--wash-raumwirkung::before,
.guide-next-card.guide-link-card--wash-raumwirkung::before {
  background-image: url("../images/guides/raumwirkung-farbe.webp");
}

.guide-link-card--wash-groesser::before,
.guide-next-card.guide-link-card--wash-groesser::before {
  background-image: url("../images/guides/welche-farbe-laesst-raeume-groesser-wirken.webp");
}

.guide-link-card--wash-dunkel::before,
.guide-next-card.guide-link-card--wash-dunkel::before {
  background-image: url("../images/guides/kleine-raeume-dunkel-streichen.webp");
}

.guide-link-card--wash-dachschraege::before,
.guide-next-card.guide-link-card--wash-dachschraege::before {
  background-image: url("../images/guides/raumwirkung-farbe-dachschraege.webp");
}

.guide-link-card--wash-flecken::before,
.guide-next-card.guide-link-card--wash-flecken::before {
  background-image: url("../images/guides/flecken-an-der-wand-ueberstreichen.webp");
}

.guide-link-card--wash-wasserflecken::before,
.guide-next-card.guide-link-card--wash-wasserflecken::before {
  background-image: url("../images/guides/wasserflecken-ueberstreichen.webp");
}

.guide-link-card--wash-fettflecken::before,
.guide-next-card.guide-link-card--wash-fettflecken::before {
  background-image: url("../images/guides/fettflecken-ueberstreichen.webp");
}

.guide-link-card--wash-grundierung::before,
.guide-next-card.guide-link-card--wash-grundierung::before {
  background-image: url("../images/guides/grundierung-vor-dem-streichen.webp");
}

.guide-card-title {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.18;
}

.guide-card-link {
  border-radius: inherit;
  text-decoration: none;
}

.guide-card-link:focus-visible {
  outline: 3px solid rgba(226, 122, 92, 0.34);
  outline-offset: 4px;
}

.guide-search .guide-card-title,
.guide-search-head .guide-card-title {
  color: #fff;
}

.guide-cost-value {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0.3px;
}

.guide-cost-card p:last-child,
.guide-compare-card p:last-child,
.guide-link-card p:last-child,
.guide-practice-note p:last-child {
  margin-bottom: 0;
}

.guide-decision-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.guide-decision-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
}

.guide-practice-note {
  margin: 24px 0 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,244,238,0.98) 100%);
}

.guide-project-figure {
  margin: 28px 0 18px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: #faf8f4;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.guide-project-figure img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.guide-project-figure figcaption {
  padding: 16px 20px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.guide-faq {
  margin-top: 42px;
}

.guide-faq .faq-list details {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
}

.guide-next {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 42px;
  padding: 28px 24px 24px;
  border-radius: 22px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
}

.guide-next::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 244, 238, 0.72)),
    var(--guide-next-image, none) center right / cover no-repeat;
  opacity: 0.32;
  filter: saturate(0.8) blur(1px);
  transform: scale(1.02);
  z-index: -2;
}

.guide-next::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(90, 136, 200, 0.12), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.88) 100%);
  z-index: -1;
}

.guide-next .guide-box-head,
.guide-next .guide-next-grid {
  position: relative;
  z-index: 1;
}

.guide-next--wash-einzug {
  --guide-next-image: url("../images/guides/service-einzug-auszug.jpg");
}

.guide-next-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.guide-next-card {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
  border-radius: 22px;
  border: 1px solid rgba(23, 33, 44, 0.08);
  background: rgba(255, 252, 247, 0.42);
  backdrop-filter: blur(6px);
  padding: 22px 70px 22px 22px;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s var(--ease-apple), box-shadow 0.25s var(--ease-apple), border-color 0.25s var(--ease-apple);
}

.guide-next-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.34;
  filter: saturate(0.92);
  z-index: -2;
}

.guide-next-card::after {
  content: "→";
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s var(--ease-apple), background-color 0.25s var(--ease-apple), border-color 0.25s var(--ease-apple);
  z-index: 2;
}

.guide-next-card:hover,
.guide-next-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(226, 122, 92, 0.28);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.guide-next-card:hover::after,
.guide-next-card:focus-within::after {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(226, 122, 92, 0.28);
}

.guide-next-card > * {
  position: relative;
  z-index: 1;
}

.guide-next-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(23, 33, 44, 0.05);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-next-card .guide-card-title {
  margin-bottom: 14px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.guide-next-card p {
  margin-bottom: 0;
  color: var(--muted);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.guide-related {
  display: grid;
  gap: 14px;
  margin-top: 38px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border-color: rgba(226, 122, 92, 0.18);
  background:
    radial-gradient(circle at top right, rgba(90, 136, 200, 0.1), transparent 36%),
    linear-gradient(135deg, rgba(255, 248, 243, 0.98) 0%, rgba(252, 250, 246, 0.98) 58%, rgba(244, 248, 246, 0.96) 100%);
  box-shadow: 0 18px 38px rgba(23, 33, 44, 0.07);
}

.guide-related .eyebrow {
  color: var(--accent);
}

.guide-related .guide-box-title {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.guide-related .guide-box-title strong {
  color: var(--accent);
}

.guide-related .guide-box-head p:not(.eyebrow):not(.guide-box-title) {
  max-width: 760px;
  font-size: 17px;
}

.guide-cta-benefits {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 20px 0 0;
}

.guide-cta-benefits li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 600;
}

.guide-cta-benefits li::before {
  content: "";
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--accent-3);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.55 17.6 3.9 11.95l2.1-2.1 3.55 3.55 8.45-8.45 2.1 2.1z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.55 17.6 3.9 11.95l2.1-2.1 3.55 3.55 8.45-8.45 2.1 2.1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.guide-related .guide-cta-row {
  margin-top: 26px;
}

.guide-related .btn-primary {
  min-height: 58px;
  padding-inline: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(226, 122, 92, 0.2);
}

.guide-related .btn-secondary {
  min-height: 58px;
  border-color: rgba(226, 122, 92, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.guide-cta-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.guide-cta-proof strong {
  color: var(--ink);
}

.guide-cta-stars {
  color: var(--accent-3);
  letter-spacing: 1px;
}

.guide-cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.guide-cta-row--compact {
  margin-top: 0;
}

.guide-cta-trust {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 33, 44, 0.08);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.guide-aside {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 16px;
}

.guide-aside-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 33, 44, 0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.guide-aside-title {
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--ink);
}

.guide-aside-card--toc {
  max-height: calc(100vh - 120px);
  overflow: auto;
}

.guide-aside-card p,
.guide-aside-card li {
  color: var(--muted);
}

.guide-toc a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 33, 44, 0.08);
}

.guide-toc a:last-child {
  border-bottom: 0;
}

.guide-path-list {
  display: grid;
  gap: 0;
  margin-top: 2px;
}

.guide-path-list a {
  position: relative;
  display: block;
  padding: 12px 38px 12px 0;
  border-bottom: 1px solid rgba(23, 33, 44, 0.08);
  color: var(--ink);
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.guide-path-list a:last-child {
  border-bottom: 0;
}

.guide-path-list a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 44, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.25s var(--ease-apple), border-color 0.25s var(--ease-apple);
}

.guide-path-list a:hover::after,
.guide-path-list a:focus-visible::after {
  border-color: rgba(226, 122, 92, 0.28);
  transform: translate(2px, -50%);
}

@media (max-width: 1080px) {
  .guide-feature,
  .guide-directory,
  .guide-hero-grid,
  .guide-lead-grid,
  .guide-article-grid,
  .partners-shell {
    grid-template-columns: 1fr;
  }

  .guide-feature-media,
  .guide-article-figure {
    max-width: none;
  }

  .partners-shell {
    padding: 24px;
  }

  .guide-copy h1,
  .guide-article-main h1 {
    max-width: none;
  }

  .guide-aside {
    position: static;
  }

  .area-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-card-grid,
  .area-service-grid,
  .area-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-split,
  .area-hero-grid {
    grid-template-columns: 1fr;
  }

  .area-map,
  .area-hero-image,
  .area-hero-image img {
    min-height: 0;
  }

  .area-map-panel {
    grid-template-columns: minmax(240px, 340px) minmax(240px, 1fr);
    max-width: 820px;
  }

  .area-map {
    width: min(100%, 340px);
    min-height: 0;
  }

  .guide-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: start;
  }

  .guide-carousel .guide-hub-grid--carousel {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .guide-hub-card img {
    height: 144px;
  }

  .guide-hero-shell {
    padding: 24px;
  }

  .guide-hero-aside,
  .guide-copy-header,
  .guide-copy-intro {
    grid-column: auto;
    grid-row: auto;
  }

  .guide-topic-band {
    padding: 14px 0;
  }

  .guide-search {
    padding: 18px;
  }

  .guide-hub-nav {
    position: static;
    padding: 10px;
  }

  .guide-entry-layout,
  .guide-stage-panel {
    grid-template-columns: 1fr;
  }

  .guide-stage-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-intent-grid,
  .guide-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-topic-rail-actions {
    width: 100%;
  }

  .guide-topic-rail-chips {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1200px, calc(100vw - 16px));
  }

  .page--guide .guide-article > .container {
    width: 100%;
  }

  .error-hero {
    padding: 32px 0 50px;
  }

  .error-shell {
    gap: 18px;
  }

  .error-panel,
  .error-card {
    border-radius: 22px;
  }

  .error-panel,
  .error-card {
    padding: 20px;
  }

  .error-intro,
  .error-note p {
    max-width: none;
  }

  .guide-hero {
    padding: 26px 0 14px;
  }

  .guide-article {
    padding-top: 6px;
  }

  .guide-article-grid {
    gap: 0;
  }

  .guide-hero-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .guide-topic-band {
    margin: 12px 0 10px;
    padding: 12px 0;
  }

  .guide-topic-rail {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .guide-feature,
  .guide-article-main,
  .guide-summary-card,
  .guide-box,
  .guide-related,
  .guide-self-check,
  .guide-next,
  .guide-intro-panel,
  .guide-hero-visual,
  .guide-aside-card,
  .guide-mini-card {
    border-radius: 20px;
  }

  .guide-article-main {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .guide-article-main > h1,
  .guide-article-main > h2,
  .guide-article-main > h3,
  .guide-article-main > p,
  .guide-article-main > ul,
  .guide-breadcrumbs,
  .guide-article-meta {
    padding-inline: 14px;
  }

  .guide-feature,
  .guide-summary-card,
  .guide-box,
  .guide-related,
  .guide-self-check,
  .guide-next,
  .guide-intro-panel,
  .guide-aside-card {
    padding: 16px;
  }

  .guide-article-main > .guide-lead-grid,
  .guide-article-main > .guide-cost-grid,
  .guide-article-main > .guide-compare,
  .guide-article-main > .guide-topic-links,
  .guide-article-main > .guide-trust-strip,
  .guide-article-main > .guide-decision-grid,
  .guide-article-main > .guide-faq {
    padding-inline: 8px;
  }

  .guide-article-main > .guide-box:not(.guide-box--tool),
  .guide-article-main > .guide-related,
  .guide-article-main > .guide-self-check,
  .guide-article-main > .guide-next,
  .guide-article-main > .guide-method-card,
  .guide-aside-card {
    margin-left: 8px;
    margin-right: 8px;
  }

  .guide-related .guide-box-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .guide-related .guide-box-head p:not(.eyebrow):not(.guide-box-title) {
    font-size: 16px;
  }

  .guide-related .btn {
    width: 100%;
  }

  .guide-cta-benefits {
    gap: 10px;
    margin-top: 18px;
  }

  .guide-cta-proof {
    display: grid;
    gap: 6px;
    font-size: 13px;
  }

  .guide-box--tool {
    margin: 30px 0 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .guide-box--tool .guide-box-head {
    gap: 8px;
    padding-inline: 14px;
  }

  .guide-box--tool .guide-calculator {
    margin-top: 0.85rem;
  }

  .guide-hub-card,
  .guide-link-card {
    padding-bottom: 62px;
  }

  .guide-next-card {
    padding: 18px 18px 68px;
  }

  .guide-next-card::after {
    top: auto;
    right: 18px;
    bottom: 18px;
  }

  .guide-feature-media {
    padding: 10px;
    border-radius: 18px;
  }

  .guide-lead-grid {
    margin: 20px 0 28px;
    gap: 16px;
  }

  .guide-feature-media img,
  .guide-article-figure img {
    max-height: 220px;
  }

  .guide-feature-copy h3 {
    font-size: 28px;
  }

  .guide-article-main h1 {
    max-width: none;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .guide-article-meta,
  .guide-meta,
  .guide-feature-topline {
    gap: 8px;
  }

  .guide-article-meta span {
    padding: 8px 12px;
    font-size: 12px;
  }

  .guide-breadcrumbs {
    margin-bottom: 12px;
  }

  .guide-article-meta {
    margin-bottom: 18px;
  }

  .guide-inline-toc {
    grid-template-columns: 1fr;
  }

  .guide-cost-grid,
  .guide-compare,
  .guide-topic-links,
  .guide-trust-strip,
  .guide-method-grid,
  .guide-self-check-grid,
  .guide-signal-grid,
  .guide-scenario-strip,
  .guide-diagnostic-flow,
  .guide-palette-grid,
  .guide-intent-grid,
  .guide-index-grid,
  .guide-stage-card-grid,
  .area-hub-grid,
  .area-card-grid,
  .area-service-grid,
  .area-project-grid,
  .guide-hub-grid,
  .guide-next-grid,
  .guide-decision-grid {
    grid-template-columns: 1fr;
  }

  .guide-topic-links {
    gap: 14px;
  }

  .guide-stage {
    padding: 20px;
  }

  .guide-stage-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guide-stage-tab {
    justify-content: center;
    text-align: center;
  }

  .guide-trust-strip {
    gap: 10px;
    margin: 18px 0 28px;
  }

  .guide-trust-item,
  .guide-method-card,
  .guide-method-item {
    padding: 16px;
  }

  .guide-aside {
    gap: 12px;
  }

  .guide-topic-links .guide-link-card,
  .guide-cost-grid .guide-cost-card {
    padding: 16px;
  }

  .area-hero {
    padding: 34px 0 26px;
  }

  .area-city-badge {
    min-height: 42px;
    margin-bottom: 12px;
    padding: 5px 12px 5px 7px;
  }

  .area-city-badge img {
    width: 30px;
    height: 30px;
  }

  .area-city-badge span {
    font-size: 13px;
  }

  .area-hero-image,
  .area-hero-image img,
  .area-map {
    min-height: 0;
  }

  .area-hero-image {
    padding: 14px;
    border-radius: 26px;
  }

  .area-hero-image img {
    border-radius: 18px;
  }

  .area-map-panel {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .area-map {
    grid-row: auto;
    width: min(100%, 320px);
    min-height: 0;
  }

  .area-hero-image figcaption {
    position: static;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .area-map-panel {
    padding: 12px;
    border-radius: 22px;
  }

  .area-city-selector {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .area-city-option {
    min-height: 64px;
  }

  .area-map-copy h2 {
    font-size: 32px;
  }

  .area-service-grid article,
  .area-project-grid article,
  .area-proof-grid article {
    padding: 16px;
  }

  .area-card-crest-media {
    min-height: 104px;
  }

  .area-card-crest {
    width: 62px;
    max-width: 36%;
    height: auto;
    max-height: 74px;
  }

  .area-cta-panel .btn,
  .area-hero-actions .btn {
    width: 100%;
  }

  .area-hero-trust {
    display: block;
    max-width: 100%;
    margin-top: 16px;
  }

  .area-hero-trust .swatches {
    margin-bottom: 10px;
    gap: 8px;
  }

  .area-hero-trust .swatches span {
    width: 26px;
    height: 8px;
  }

  .area-hero-trust .hero-floating-label {
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .area-hero-trust .hero-floating-value {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.2;
  }

  .area-hero-trust .rating-date {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 320px;
    gap: 12px;
  }

  .guide-carousel .guide-hub-grid--carousel {
    grid-auto-columns: min(86vw, 360px);
  }

  .guide-carousel-actions {
    justify-content: flex-start;
  }

  .partner-card {
    height: 78px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .partner-card .partner-logo {
    max-width: 128px !important;
    max-height: 36px !important;
  }

  .partner-card .partner-logo--caparol {
    max-width: 96px !important;
  }

  .guide-sequence-item,
  .guide-mini-card {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .guide-sequence-no,
  .guide-mini-no,
  .guide-diagnostic-no {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 24px;
  }

  .guide-diagnostic-item {
    padding-left: 74px;
  }

  .guide-intro {
    font-size: 17px;
  }

  .guide-article-main h2 {
    font-size: 28px;
  }

  .guide-inline-toc a,
  .guide-toc a,
  .guide-next-card .guide-card-title,
  .guide-link-card .guide-card-title,
  .guide-box-title,
  .guide-box h3,
  .guide-related h2,
  .guide-self-check h2,
  .guide-aside-title,
  .faq-list summary {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .paint-ring {
    animation: none;
  }
}
