/* Rescue Spraying — shared styles for index.html, team.html, vitaloxide.html. Brand tokens: :root below. */

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

    :root {
      --bg: #e4e7ef;
      --bg-dark: #060608;
      --surface: #ffffff;
      --surface-soft: #d8dde8;
      --surface-dark: #12151c;
      --primary: #dc1f26;
      --primary-hover: #ff2e36;
      --primary-soft: rgba(220, 31, 38, 0.14);
      --accent: #1e5aef;
      --accent-soft: rgba(30, 90, 239, 0.14);
      --slate: #3a4252;
      --text: #0f1117;
      --text-muted: #5a6272;
      --border: rgba(6, 8, 12, 0.1);
      --shadow: 0 4px 24px rgba(6, 8, 12, 0.08);
      --shadow-lg: 0 24px 48px rgba(6, 8, 12, 0.16);
      --shadow-card: 0 2px 8px rgba(6, 8, 12, 0.04), 0 12px 32px rgba(6, 8, 12, 0.08);
      --shadow-card-hover: 0 8px 16px rgba(6, 8, 12, 0.06), 0 24px 48px rgba(6, 8, 12, 0.12);
      --shadow-inset-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.65);
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --radius: 14px;
      --radius-sm: 10px;
      --radius-lg: 20px;
      --font-display: 'Barlow Condensed', system-ui, sans-serif;
      --font-body: 'Barlow', system-ui, sans-serif;
      --max: 1120px;
    }

    html { scroll-behavior: smooth; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .hero-redlogo {
        animation: none !important;
      }
      .hero-ambient__blob--a,
      .hero-ambient__blob--b,
      .hero-ambient__blob--c,
      .hero-ambient__ring {
        animation: none !important;
      }
      .mist-particle {
        animation: none !important;
        opacity: 0.42;
        top: auto;
        bottom: clamp(48px, 18%, 100px);
        transform: translateX(calc(var(--drift, 0px) * 0.25)) scale(0.85);
      }
      .mist-field__ambient {
        animation: none !important;
      }
      .mist-field__carousel-track {
        animation: none !important;
        transform: none !important;
        flex-wrap: wrap;
        justify-content: center;
        width: 100% !important;
        row-gap: 0.65rem;
      }
      .mist-field__carousel-set--dup {
        display: none !important;
      }
      .hero-bg-particle {
        animation: none !important;
        opacity: 0.32;
        top: auto;
        bottom: clamp(8%, 12vh, 140px);
        transform: translateX(calc(var(--drift, 0px) * 0.2)) scale(0.85);
      }
    }

    body {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.65;
      color: var(--text);
      background-color: var(--bg);
      background-image:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 255, 255, 0.55), transparent 50%),
        radial-gradient(ellipse 70% 50% at 100% 50%, rgba(30, 90, 239, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(220, 31, 38, 0.04), transparent 50%);
      background-attachment: fixed;
    }

    ::selection {
      background: rgba(220, 31, 38, 0.18);
      color: var(--text);
    }

    a:focus-visible,
    button:focus-visible,
    .btn:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    input:focus-visible,
    textarea:focus-visible {
      outline: none;
    }

    a { color: var(--primary); text-underline-offset: 3px; }
    a:hover { color: var(--primary-hover); }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(6, 8, 12, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-inner {
      position: relative;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0.9rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .brand-lockup {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      text-decoration: none;
      line-height: 1;
      flex-shrink: 0;
      border-radius: var(--radius-sm);
    }

    .logo-img {
      height: 80px;
      width: auto;
      max-width: 280px;
      display: block;
      object-fit: contain;
    }

    .brand-wordmark {
      position: relative;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.35rem, 3.4vw, 1.85rem);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
      padding-bottom: 0.22rem;
    }

    .brand-wordmark::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      border-radius: 1px;
      background: linear-gradient(
        90deg,
        rgba(220, 31, 38, 0.55) 0%,
        rgba(255, 255, 255, 0.22) 48%,
        rgba(255, 255, 255, 0.1) 100%
      );
      opacity: 0.75;
    }

    .word-rescue {
      color: var(--primary);
    }

    .word-spraying {
      color: rgba(255, 255, 255, 0.92);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-left: auto;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    nav ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem 1.25rem;
      align-items: center;
    }

    nav a {
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
      text-decoration: none;
    }

    nav a:hover { color: #fff; }

    nav a.nav-cta:hover { color: #fff !important; }

    .nav-cta {
      background: linear-gradient(165deg, #ff3b42 0%, var(--primary) 45%, #a8161c 100%);
      color: #fff !important;
      padding: 0.7rem 1.35rem;
      border-radius: 999px;
      text-decoration: none !important;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      box-shadow:
        0 3px 14px rgba(220, 31, 38, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transition: box-shadow 0.2s var(--ease-out), filter 0.2s var(--ease-out);
    }

    .nav-cta:hover {
      background: linear-gradient(165deg, #ff4e55 0%, var(--primary-hover) 45%, #c01a20 100%);
      color: #fff !important;
      box-shadow:
        0 6px 22px rgba(220, 31, 38, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    .menu-toggle {
      display: none;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      padding: 0.5rem 0.75rem;
      border-radius: var(--radius-sm);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .menu-toggle { display: block; }
      nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-dark);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1rem 1.5rem;
        display: none;
        box-shadow: var(--shadow-lg);
      }
      nav.is-open { display: block; }
      nav ul { flex-direction: column; align-items: flex-start; }
      .nav-cta { display: inline-block; margin-top: 0.5rem; }
    }

    /* Hero */
    .hero {
      padding: 8.5rem 1.5rem 5.25rem;
      background: var(--bg-dark);
      color: #f0f2f8;
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 -100px 120px -70px rgba(228, 231, 239, 0.55);
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 72% 58% at 96% 4%, rgba(220, 31, 38, 0.58), transparent 55%),
        radial-gradient(ellipse 85% 65% at 90% 0%, rgba(220, 31, 38, 0.4), transparent 58%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(30, 90, 239, 0.28), transparent 52%),
        radial-gradient(ellipse 40% 35% at 20% 0%, rgba(58, 66, 82, 0.5), transparent 45%),
        linear-gradient(165deg, #030305 0%, #12151c 45%, #0a0c10 100%);
      pointer-events: none;
    }

    .hero-bg-particles {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-bg-particle {
      position: absolute;
      top: -7%;
      width: 3px;
      height: 9px;
      border-radius: 999px;
      margin-left: -1.5px;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.82) 0%,
        rgba(190, 218, 255, 0.42) 42%,
        rgba(130, 175, 255, 0.22) 72%,
        transparent 100%
      );
      box-shadow:
        0 0 8px rgba(150, 200, 255, 0.45),
        0 0 18px rgba(95, 155, 255, 0.22),
        0 0 26px rgba(220, 31, 38, 0.12);
      opacity: 0;
      left: var(--left, 50%);
      --drift: 0px;
      animation: hero-bg-mist-drift calc(var(--dur, 8s) * 0.78) cubic-bezier(0.42, 0.02, 0.58, 0.98) infinite;
      animation-delay: var(--delay, 0s);
      will-change: transform, opacity, top;
    }

    @keyframes hero-bg-mist-drift {
      0% {
        top: -7%;
        transform: translateX(calc(var(--drift) * -0.58)) scale(0.48);
        opacity: 0;
      }
      5% {
        opacity: 0.62;
      }
      12% {
        opacity: 0.58;
      }
      28% {
        opacity: 0.52;
      }
      52% {
        opacity: 0.44;
      }
      72% {
        opacity: 0.32;
      }
      88% {
        opacity: 0.14;
      }
      100% {
        top: 108%;
        transform: translateX(calc(var(--drift) * 0.58)) scale(0.82);
        opacity: 0;
      }
    }

    .hero-bg-particle:nth-child(1) { --left: 4%; --drift: 22px; --dur: 8.3s; --delay: 0s; }
    .hero-bg-particle:nth-child(2) { --left: 11%; --drift: -16px; --dur: 9s; --delay: -1.2s; }
    .hero-bg-particle:nth-child(3) { --left: 18%; --drift: 34px; --dur: 7.2s; --delay: -2.4s; }
    .hero-bg-particle:nth-child(4) { --left: 25%; --drift: -28px; --dur: 7.9s; --delay: -0.4s; }
    .hero-bg-particle:nth-child(5) { --left: 32%; --drift: 18px; --dur: 8.7s; --delay: -3.5s; }
    .hero-bg-particle:nth-child(6) { --left: 39%; --drift: -22px; --dur: 7.6s; --delay: -1.8s; }
    .hero-bg-particle:nth-child(7) { --left: 46%; --drift: 40px; --dur: 6.8s; --delay: -4.1s; }
    .hero-bg-particle:nth-child(8) { --left: 53%; --drift: -14px; --dur: 8.5s; --delay: -0.7s; }
    .hero-bg-particle:nth-child(9) { --left: 60%; --drift: 26px; --dur: 7.8s; --delay: -2.9s; }
    .hero-bg-particle:nth-child(10) { --left: 67%; --drift: -36px; --dur: 7.1s; --delay: -4.6s; }
    .hero-bg-particle:nth-child(11) { --left: 74%; --drift: 12px; --dur: 8.8s; --delay: -1.1s; }
    .hero-bg-particle:nth-child(12) { --left: 81%; --drift: -20px; --dur: 7.3s; --delay: -3.2s; }
    .hero-bg-particle:nth-child(13) { --left: 88%; --drift: 30px; --dur: 8.1s; --delay: -0.3s; }
    .hero-bg-particle:nth-child(14) { --left: 95%; --drift: -24px; --dur: 6.7s; --delay: -4.9s; }
    .hero-bg-particle:nth-child(15) { --left: 7%; --drift: 16px; --dur: 9.2s; --delay: -5.4s; }
    .hero-bg-particle:nth-child(16) { --left: 22%; --drift: -10px; --dur: 6.5s; --delay: -2.1s; }
    .hero-bg-particle:nth-child(17) { --left: 37%; --drift: 38px; --dur: 8.4s; --delay: -1.5s; }
    .hero-bg-particle:nth-child(18) { --left: 50%; --drift: -32px; --dur: 7s; --delay: -3.8s; }
    .hero-bg-particle:nth-child(19) { --left: 63%; --drift: 20px; --dur: 8.9s; --delay: -0.9s; }
    .hero-bg-particle:nth-child(20) { --left: 78%; --drift: -18px; --dur: 7.4s; --delay: -4.3s; }
    .hero-bg-particle:nth-child(21) { --left: 14%; --drift: 8px; --dur: 8.2s; --delay: -5.8s; }
    .hero-bg-particle:nth-child(22) { --left: 42%; --drift: -26px; --dur: 6.6s; --delay: -1.6s; }
    .hero-bg-particle:nth-child(23) { --left: 56%; --drift: 28px; --dur: 9.3s; --delay: -2.6s; }
    .hero-bg-particle:nth-child(24) { --left: 91%; --drift: -8px; --dur: 6.3s; --delay: -0.5s; }
    .hero-bg-particle:nth-child(25) { --left: 29%; --drift: 14px; --dur: 7.7s; --delay: -6.2s; }
    .hero-bg-particle:nth-child(26) { --left: 69%; --drift: -12px; --dur: 8.3s; --delay: -3s; }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000 20%, transparent 72%);
      -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000 20%, transparent 72%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-inner {
      max-width: var(--max);
      margin: 0 auto;
      position: relative;
      z-index: 3;
      padding-bottom: 0.5rem;
    }

    .hero-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(200px, 36%);
      gap: clamp(1rem, 3vw, 2rem);
      align-items: end;
      margin-bottom: 0.35rem;
    }

    .hero-head-main {
      display: flex;
      flex-direction: column;
      gap: 0;
      min-width: 0;
      padding-bottom: 0.15rem;
    }

    .hero-head-main .hero-badge {
      margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
      align-self: flex-start;
    }

    .hero-head h1 {
      margin-bottom: 0;
      max-width: none;
      padding-top: 0.15rem;
    }

    .hero-head-main h1 {
      margin-bottom: clamp(0.8rem, 2.1vw, 1.25rem);
      padding-top: 0;
    }

    .hero-visual {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      justify-self: stretch;
      align-self: end;
      width: 100%;
      padding-left: clamp(0.25rem, 2vw, 1rem);
      margin-top: 0;
      margin-right: clamp(-0.5rem, -1vw, 0);
    }

    .hero-visual-stage {
      position: relative;
      width: min(100%, 380px);
      aspect-ratio: 1;
      max-width: min(340px, 38vw);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
    }

    .hero-ambient {
      position: absolute;
      inset: -4% -8% -8% -8%;
      pointer-events: none;
      overflow: visible;
    }

    .hero-ambient__blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(48px);
      opacity: 0.55;
      will-change: transform;
    }

    .hero-ambient__blob--a {
      width: 72%;
      height: 72%;
      left: -5%;
      top: 8%;
      background: radial-gradient(circle at 30% 30%, rgba(220, 31, 38, 0.55), transparent 70%);
    }

    .hero-ambient__blob--b {
      width: 55%;
      height: 55%;
      right: -8%;
      bottom: 0;
      background: radial-gradient(circle at 70% 70%, rgba(30, 90, 239, 0.45), transparent 68%);
      opacity: 0.4;
    }

    .hero-ambient__blob--c {
      width: 40%;
      height: 40%;
      left: 35%;
      bottom: -5%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
      filter: blur(36px);
      opacity: 0.7;
    }

    .hero-ambient__ring {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 94%;
      height: 94%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px dashed rgba(255, 255, 255, 0.14);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 40px rgba(220, 31, 38, 0.08);
    }

    @media (prefers-reduced-motion: no-preference) {
      .hero-ambient__blob--a {
        animation: hero-blob-a 6.2s var(--ease-out) infinite;
      }
      .hero-ambient__blob--b {
        animation: hero-blob-b 7.6s var(--ease-out) infinite;
      }
      .hero-ambient__blob--c {
        animation: hero-blob-c 5.2s var(--ease-out) infinite;
      }
      .hero-ambient__ring {
        animation: hero-ring-drift 26s linear infinite;
      }
    }

    @keyframes hero-blob-a {
      0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
      25% { transform: translate(22%, -16%) scale(1.2) rotate(7deg); }
      50% { transform: translate(-11%, 18%) scale(0.86) rotate(-5deg); }
      75% { transform: translate(15%, 13%) scale(1.12) rotate(5deg); }
    }

    @keyframes hero-blob-b {
      0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
      33% { transform: translate(-24%, -18%) scale(1.22) rotate(-8deg); }
      66% { transform: translate(18%, 19%) scale(0.84) rotate(6deg); }
    }

    @keyframes hero-blob-c {
      0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.72; }
      40% { transform: translate(26%, -20%) scale(1.28); opacity: 0.32; }
      70% { transform: translate(-17%, 15%) scale(0.8); opacity: 0.68; }
    }

    @keyframes hero-ring-drift {
      from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
      50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); }
      to { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
    }

    .hero-redlogo {
      position: relative;
      z-index: 2;
      width: auto;
      max-width: 78%;
      height: auto;
      max-height: 78%;
      object-fit: contain;
      object-position: center;
      transform: translate(0, 0);
      filter:
        drop-shadow(0 12px 36px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 48px rgba(220, 31, 38, 0.22));
    }

    @media (prefers-reduced-motion: no-preference) {
      .hero-redlogo {
        animation: hero-logo-float 6.8s var(--ease-out) infinite;
      }
    }

    @keyframes hero-logo-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-22px); }
    }

    @media (max-width: 720px) {
      .hero-head {
        grid-template-columns: 1fr;
        align-items: start;
        margin-bottom: 0.5rem;
      }
      .hero-visual {
        justify-content: flex-start;
        justify-self: start;
        align-self: start;
        align-items: center;
        margin-top: 0.5rem;
        margin-right: 0;
        padding-left: 0;
      }

      .hero-visual-stage {
        width: min(100%, 320px);
        max-width: min(280px, 82vw);
        margin-left: 0;
        aspect-ratio: 1;
      }

      .hero-redlogo {
        max-width: 76%;
        max-height: 76%;
        transform: none;
        object-position: center;
      }

      @media (prefers-reduced-motion: no-preference) {
        .hero-redlogo {
          animation: hero-logo-float-mobile 6.8s var(--ease-out) infinite;
        }
      }
    }

    @keyframes hero-logo-float-mobile {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-18px); }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(240, 242, 248, 0.95);
      background: linear-gradient(135deg, rgba(220, 31, 38, 0.35) 0%, rgba(220, 31, 38, 0.12) 100%);
      padding: 0.38rem 0.85rem;
      border-radius: 999px;
      margin-bottom: 1.25rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 0 0 1px rgba(220, 31, 38, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
    }

    .hero h1 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(2.35rem, 5.5vw, 3.5rem);
      line-height: 1.05;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      text-wrap: balance;
      color: #f6f7fb;
      text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(220, 31, 38, 0.12);
    }

    .hero-lead {
      font-size: 1.1rem;
      color: rgba(240, 242, 248, 0.82);
      max-width: 36rem;
      margin: 0;
    }

    .hero-head-main .hero-lead {
      margin-bottom: 1.75rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 0;
      margin-bottom: 2.5rem;
    }

    .hero-actions .btn-primary {
      font-size: 1.05rem;
      padding: 1rem 1.75rem;
      min-height: 3rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 0.85rem 1.35rem;
      border-radius: 999px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition:
        transform 0.2s var(--ease-out),
        box-shadow 0.2s var(--ease-out),
        background 0.2s var(--ease-out),
        border-color 0.2s var(--ease-out),
        color 0.2s var(--ease-out);
    }

    .btn:active { transform: scale(0.98); }

    .btn-primary {
      background: linear-gradient(165deg, #ff3b42 0%, var(--primary) 42%, #a8161c 100%);
      color: #fff;
      box-shadow:
        0 4px 16px rgba(220, 31, 38, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    .btn-primary:hover {
      background: linear-gradient(165deg, #ff4e55 0%, var(--primary-hover) 45%, #c01a20 100%);
      box-shadow:
        0 8px 28px rgba(220, 31, 38, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
      color: #fff;
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.04);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.38);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(6px);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.55);
      color: #fff;
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: var(--primary-soft);
      color: var(--primary-hover);
      border-color: var(--primary-hover);
      box-shadow: none;
    }

    .inquiry-widget-band {
      padding: 2.25rem 1.5rem;
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .inquiry-widget {
      max-width: 520px;
      margin: 0 auto;
      text-align: center;
      background: linear-gradient(165deg, #ffffff 0%, #f4f6f9 100%);
      border: 1px solid rgba(6, 8, 12, 0.08);
      border-radius: var(--radius-lg);
      padding: 1.5rem 1.65rem 1.65rem;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }

    .inquiry-widget::after {
      content: '';
      position: absolute;
      inset: -40% -20% auto;
      height: 60%;
      background: radial-gradient(ellipse at center, rgba(30, 90, 239, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .inquiry-widget > * {
      position: relative;
      z-index: 1;
    }

    .inquiry-widget-heading {
      font-family: var(--font-display);
      font-size: clamp(1.15rem, 2.2vw, 1.45rem);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .inquiry-widget-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
      line-height: 1.55;
    }

    .contact-book-hint {
      margin-top: 0.75rem !important;
      margin-bottom: 0 !important;
    }

    .contact-book-link {
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
    }

    .contact-book-link:hover {
      text-decoration: underline;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      max-width: 520px;
    }

    @media (max-width: 520px) {
      .trust-row { grid-template-columns: 1fr; }
    }

    .trust-item {
      padding: 0.85rem 1rem;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
      transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
    }

    .trust-item:hover {
      border-color: rgba(255, 255, 255, 0.18);
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    }

    .trust-item strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: #fff;
    }

    .trust-item span {
      font-size: 0.8rem;
      color: rgba(240, 242, 248, 0.72);
    }

    .hero-bottom {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.25rem 2rem;
    }

    .hero-bottom .trust-row {
      flex: 1 1 auto;
      max-width: 520px;
    }

    .hero-cred-pills {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      flex: 0 1 auto;
      width: min(100%, 22rem);
      margin-left: auto;
    }

    .hero-cred-pill {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      background: var(--primary);
      color: #fff;
      padding: 0.55rem 1rem 0.55rem 0.65rem;
      border-radius: 999px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      line-height: 1.25;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .hero-cred-pill .hero-check {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 800;
      line-height: 1;
    }

    @media (max-width: 720px) {
      .hero-bottom {
        flex-direction: column;
        align-items: stretch;
      }
      .hero-cred-pills {
        width: 100%;
        margin-left: 0;
        max-width: none;
      }
    }

    /* Sections */
    section {
      padding: 4.5rem 1.5rem;
    }

    .section-inner {
      max-width: var(--max);
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.65rem;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(220, 31, 38, 0.12) 0%, rgba(30, 90, 239, 0.08) 100%);
      border: 1px solid rgba(6, 8, 12, 0.06);
      box-shadow: 0 1px 2px rgba(6, 8, 12, 0.04);
    }

    .section-label::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, #ff4e55 100%);
      box-shadow: 0 0 0 2px rgba(220, 31, 38, 0.2);
    }

    .product-strip .section-label {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.14);
      color: rgba(238, 242, 255, 0.92) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .product-strip .section-label::before {
      background: linear-gradient(135deg, #fff 0%, rgba(255, 200, 200, 0.85) 100%);
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
    }

    h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.85rem, 3.2vw, 2.4rem);
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 1rem;
      text-wrap: balance;
      line-height: 1.08;
    }

    .section-intro {
      color: var(--text-muted);
      max-width: 38rem;
      margin-bottom: 2rem;
    }

    /* About */
    #about h2 {
      margin-bottom: 0.25rem;
    }

    #about .about-grid {
      margin-top: 1.75rem;
    }

    .about-intro-stack {
      min-width: 0;
      align-self: stretch;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      padding: 0.5rem 0;
      box-sizing: border-box;
    }

    .about-intro-text {
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 1.0625rem;
      line-height: 1.72;
      max-width: 36rem;
      text-align: center;
      width: 100%;
    }

    .about-intro-text + .about-intro-text {
      margin-top: 1.2rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(6, 8, 12, 0.08);
    }

    .about-team-inline {
      margin: 1.15rem auto 0;
      padding-top: 1.1rem;
      border-top: 1px solid rgba(6, 8, 12, 0.08);
      text-align: center;
      max-width: 36rem;
      width: 100%;
    }

    .about-team-inline__link {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--primary);
      text-decoration: none;
      letter-spacing: 0.03em;
    }

    .about-team-inline__link:hover {
      color: var(--primary-hover);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: stretch;
    }

    @media (max-width: 800px) {
      .about-grid {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .about-intro-stack {
        justify-content: flex-start;
        text-align: left;
        padding: 0;
      }

      .about-intro-text {
        margin: 0;
        text-align: left;
      }

      .about-team-inline {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
      }
    }

    .about-card {
      background: linear-gradient(165deg, #ffffff 0%, #f6f7fa 100%);
      padding: 2rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(6, 8, 12, 0.08);
      position: relative;
      overflow: hidden;
    }

    .about-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      opacity: 0.95;
    }

    .about-card p + p { margin-top: 1rem; }

    .quote {
      font-family: var(--font-body);
      font-style: italic;
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--slate);
      border-left: none;
      padding: 1rem 1rem 1rem 1.15rem;
      margin-top: 1.25rem;
      border-radius: var(--radius-sm);
      background: linear-gradient(90deg, var(--accent-soft) 0%, rgba(30, 90, 239, 0.04) 100%);
      box-shadow: inset 3px 0 0 var(--accent);
    }

    /* Charged-mist field (replaces photo carousel — after About) */
    .mist-field-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding-top: 4rem;
      padding-bottom: 3.5rem;
    }

    .mist-field-section-head {
      max-width: var(--max);
      margin: 0 auto 1.75rem;
      padding: 0 1.5rem;
    }

    .mist-field-section-head h2 {
      margin-bottom: 0;
    }

    .mist-field-wrap {
      max-width: calc(var(--max) + 3rem);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .mist-field {
      position: relative;
      height: clamp(260px, 42vw, 400px);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: linear-gradient(165deg, #0a0d12 0%, #151b28 42%, #0d1018 100%);
      border: 1px solid rgba(6, 8, 12, 0.12);
      box-shadow: var(--shadow-card), inset 0 0 100px rgba(30, 90, 239, 0.12);
    }

    .mist-field__carousel {
      position: absolute;
      top: 0;
      bottom: 0;
      left: clamp(1rem, 4vw, 2.25rem);
      right: clamp(1rem, 4vw, 2.25rem);
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: clamp(0.65rem, 2vw, 1.1rem) 0;
      mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    }

    .mist-field__carousel-track {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.85rem;
      width: max-content;
      will-change: transform;
    }

    @media (prefers-reduced-motion: no-preference) {
      .mist-field__carousel-track {
        animation: mist-carousel-scroll 48s linear infinite;
      }

      .mist-field__carousel:hover .mist-field__carousel-track,
      .mist-field__carousel:focus-within .mist-field__carousel-track {
        animation-play-state: paused;
      }
    }

    @keyframes mist-carousel-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .mist-field__carousel-set {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.85rem;
      flex-shrink: 0;
    }

    .mist-field__carousel-item {
      flex: 0 0 auto;
      width: clamp(168px, 26vw, 248px);
      height: clamp(118px, 19vw, 178px);
      margin: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(0, 0, 0, 0.2) inset;
    }

    .mist-field__carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .mist-field__ambient {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 70% 55% at 80% 20%, rgba(220, 31, 38, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 45% at 15% 75%, rgba(30, 90, 239, 0.2), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 255, 255, 0.06), transparent 45%);
      opacity: 1;
      pointer-events: none;
    }

    @media (prefers-reduced-motion: no-preference) {
      .mist-field__ambient {
        animation: mist-ambient-pulse 10s var(--ease-out) infinite alternate;
      }
    }

    @keyframes mist-ambient-pulse {
      from { opacity: 0.82; transform: scale(1); }
      to { opacity: 1; transform: scale(1.06); }
    }

    .mist-field__surfaces {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 38%;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: space-around;
      padding: 0 6% 10%;
      gap: 0.5rem;
      pointer-events: none;
    }

    .mist-surface {
      flex: 1;
      max-width: 32%;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 35%,
        rgba(200, 220, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.15) 65%,
        transparent 100%
      );
      box-shadow:
        0 -10px 28px rgba(100, 160, 255, 0.12),
        0 -4px 12px rgba(220, 31, 38, 0.08);
      opacity: 0.85;
    }

    .mist-surface--b {
      max-width: 28%;
      transform: translateY(-4px);
      opacity: 0.65;
    }

    .mist-surface--c {
      max-width: 24%;
      transform: translateY(-2px);
      opacity: 0.55;
    }

    .mist-field__particles {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
    }

    .mist-particle {
      position: absolute;
      top: -8%;
      width: 3px;
      height: 7px;
      border-radius: 999px;
      margin-left: -1.5px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(160, 200, 255, 0.35) 55%, transparent 100%);
      box-shadow:
        0 0 8px rgba(130, 190, 255, 0.55),
        0 0 18px rgba(220, 31, 38, 0.2);
      opacity: 0;
      animation: mist-to-surface calc(var(--dur, 5.5s) * 0.8) cubic-bezier(0.33, 0.02, 0.12, 1) infinite;
      animation-delay: var(--delay, 0s);
      left: var(--left, 50%);
      --drift: 0px;
      will-change: transform, opacity, top;
    }

    @keyframes mist-to-surface {
      0% {
        top: -8%;
        transform: translateX(calc(var(--drift) * -1.25)) scale(0.32);
        opacity: 0;
      }
      6% {
        opacity: 0.9;
      }
      75% {
        opacity: 0.45;
      }
      100% {
        top: 115%;
        transform: translateX(calc(var(--drift) * 1.25)) scale(0.78);
        opacity: 0;
      }
    }

    .mist-particle:nth-child(1) { --left: 9%; --drift: 28px; --dur: 5.4s; --delay: 0s; }
    .mist-particle:nth-child(2) { --left: 15%; --drift: -18px; --dur: 6.1s; --delay: -0.8s; }
    .mist-particle:nth-child(3) { --left: 22%; --drift: 42px; --dur: 4.9s; --delay: -1.5s; }
    .mist-particle:nth-child(4) { --left: 28%; --drift: -32px; --dur: 5.8s; --delay: -2.2s; }
    .mist-particle:nth-child(5) { --left: 34%; --drift: 22px; --dur: 6.4s; --delay: -0.3s; }
    .mist-particle:nth-child(6) { --left: 41%; --drift: -24px; --dur: 5.1s; --delay: -3.1s; }
    .mist-particle:nth-child(7) { --left: 47%; --drift: 36px; --dur: 5.6s; --delay: -1.1s; }
    .mist-particle:nth-child(8) { --left: 53%; --drift: -38px; --dur: 6.2s; --delay: -2.7s; }
    .mist-particle:nth-child(9) { --left: 58%; --drift: 18px; --dur: 4.7s; --delay: -0.5s; }
    .mist-particle:nth-child(10) { --left: 64%; --drift: -26px; --dur: 5.9s; --delay: -3.8s; }
    .mist-particle:nth-child(11) { --left: 71%; --drift: 30px; --dur: 6s; --delay: -1.9s; }
    .mist-particle:nth-child(12) { --left: 77%; --drift: -20px; --dur: 5.3s; --delay: -2.4s; }
    .mist-particle:nth-child(13) { --left: 84%; --drift: 24px; --dur: 6.5s; --delay: -0.9s; }
    .mist-particle:nth-child(14) { --left: 91%; --drift: -34px; --dur: 5.7s; --delay: -3.4s; }
    .mist-particle:nth-child(15) { --left: 12%; --drift: 20px; --dur: 6.8s; --delay: -4.2s; }
    .mist-particle:nth-child(16) { --left: 38%; --drift: -16px; --dur: 5s; --delay: -4.8s; }
    .mist-particle:nth-child(17) { --left: 51%; --drift: 40px; --dur: 6.3s; --delay: -5.1s; }
    .mist-particle:nth-child(18) { --left: 68%; --drift: -22px; --dur: 5.5s; --delay: -1.4s; }
    .mist-particle:nth-child(19) { --left: 6%; --drift: 14px; --dur: 7s; --delay: -2.9s; }
    .mist-particle:nth-child(20) { --left: 95%; --drift: -28px; --dur: 5.2s; --delay: -3.6s; }
    .mist-particle:nth-child(21) { --left: 44%; --drift: 10px; --dur: 6.6s; --delay: -5.5s; }
    .mist-particle:nth-child(22) { --left: 86%; --drift: -12px; --dur: 4.8s; --delay: -0.2s; }

    /* Services */
    #services { background: var(--surface-soft); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 560px) {
      .services-grid { grid-template-columns: 1fr; }
    }

    .service-card {
      background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      border: 1px solid rgba(6, 8, 12, 0.08);
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      position: relative;
      overflow: hidden;
      transition:
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out),
        border-color 0.25s var(--ease-out);
    }

    .service-card::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      opacity: 0;
      transition: opacity 0.3s var(--ease-out);
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
      border-color: rgba(220, 31, 38, 0.15);
    }

    .service-card:hover::after {
      opacity: 1;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(145deg, rgba(220, 31, 38, 0.18) 0%, rgba(30, 90, 239, 0.1) 100%);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    }

    .service-card:hover .service-icon {
      transform: scale(1.06);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 8px 20px rgba(220, 31, 38, 0.15);
    }

    .service-card h3 {
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 1.1vw, 1.25rem);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text);
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      flex: 1;
    }

    .service-card .btn-text {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      color: var(--primary);
      align-self: flex-start;
    }

    /* Product strip */
    .product-strip {
      position: relative;
      background: linear-gradient(125deg, #0a1628 0%, #152a52 35%, var(--accent) 78%, #0c1830 100%);
      color: #eef2ff;
      padding: 3rem 1.5rem;
      overflow: hidden;
    }

    .product-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 80% at 100% 0%, rgba(220, 31, 38, 0.2), transparent 55%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 255, 255, 0.06), transparent 50%);
      pointer-events: none;
    }

    .product-strip .section-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: center;
    }

    @media (max-width: 700px) {
      .product-strip .section-inner { grid-template-columns: 1fr; }
    }

    .product-strip h2 { color: #fff; margin-bottom: 0.75rem; }

    .product-strip p {
      color: rgba(238, 242, 255, 0.88);
      max-width: 36rem;
    }

    .stat-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .pill {
      background: linear-gradient(135deg, rgba(220, 31, 38, 0.35) 0%, rgba(255, 255, 255, 0.08) 100%);
      border: 1px solid rgba(255, 255, 255, 0.28);
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(4px);
    }

    /* FAQ */
    .faq-list {
      max-width: 720px;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    details.faq-item {
      background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
      border: 1px solid rgba(6, 8, 12, 0.08);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
    }

    details.faq-item:hover {
      border-color: rgba(30, 90, 239, 0.2);
      box-shadow: var(--shadow-card-hover);
    }

    details.faq-item[open] {
      border-color: rgba(220, 31, 38, 0.2);
    }

    details.faq-item summary {
      padding: 1.1rem 1.25rem;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      color: var(--text);
      transition: background 0.2s var(--ease-out);
    }

    details.faq-item summary:hover {
      background: rgba(30, 90, 239, 0.04);
    }

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

    details.faq-item summary::after {
      content: '+';
      font-weight: 700;
      color: var(--accent);
      font-size: 1.25rem;
      line-height: 1;
    }

    details.faq-item[open] summary::after { content: '−'; }

    details.faq-item .faq-body {
      padding: 0 1.25rem 1.15rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    /* Contact */
    #contact { background: var(--surface); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
    }

    @media (max-width: 800px) {
      .contact-grid { grid-template-columns: 1fr; }
    }

    .contact-aside p {
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

    .contact-meta {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .contact-meta strong { color: var(--text); }

    form {
      background: linear-gradient(165deg, #eef0f5 0%, #e4e7ef 100%);
      padding: 1.75rem;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(6, 8, 12, 0.08);
      box-shadow: var(--shadow-card);
    }

    label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
      color: var(--text);
    }

    .field { margin-bottom: 1rem; }

    input, textarea {
      width: 100%;
      font: inherit;
      padding: 0.8rem 1rem;
      border: 1px solid rgba(6, 8, 12, 0.1);
      border-radius: var(--radius-sm);
      background: var(--surface);
      box-shadow: inset 0 1px 2px rgba(6, 8, 12, 0.04);
      transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow:
        inset 0 1px 2px rgba(6, 8, 12, 0.04),
        0 0 0 3px var(--accent-soft);
    }

    textarea { min-height: 120px; resize: vertical; }

    .form-note {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
    }

    .form-success {
      display: none;
      padding: 1rem;
      background: var(--accent-soft);
      border-radius: var(--radius-sm);
      color: #143a9e;
      font-weight: 600;
      margin-top: 1rem;
    }

    .form-success.is-visible { display: block; }

    /* Footer */
    footer {
      position: relative;
      background: linear-gradient(180deg, #0c0e14 0%, #030305 100%);
      color: rgba(240, 242, 248, 0.72);
      padding: 2.5rem 1.5rem;
      font-size: 0.875rem;
      border-top: 3px solid var(--primary);
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
      -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
      pointer-events: none;
    }

    .footer-inner {
      position: relative;
      z-index: 1;
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: space-between;
      align-items: center;
    }

    .footer-brand {
      font-family: var(--font-display);
      font-weight: 700;
      color: #fff;
      font-size: 1.15rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .socials {
      display: flex;
      gap: 1rem;
    }

    .socials a {
      color: rgba(240, 242, 248, 0.85);
      text-decoration: none;
      font-weight: 600;
    }

    .socials a:hover { color: var(--primary); }

    /* Eliminate / electrostatic — matches site cards & palette */
    .flyer-band {
      background: var(--surface-soft);
      color: var(--text);
    }

    .flyer-band .flyer-intro-head {
      max-width: var(--max);
      margin: 0 auto 2rem;
      padding: 0 0.25rem;
    }

    .flyer-band .flyer-intro-head .section-label {
      margin-bottom: 0.5rem;
    }

    .flyer-grid {
      max-width: var(--max);
      margin: 2.75rem auto 0;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: stretch;
    }

    @media (max-width: 1020px) {
      .flyer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
      }
    }

    .flyer-col--red {
      background: linear-gradient(155deg, #e8252d 0%, var(--primary) 38%, #9a1419 100%);
      border-radius: var(--radius-lg);
      padding: 2rem 1.75rem;
      box-shadow:
        var(--shadow-lg),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .flyer-col--red h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.8vw, 1.9rem);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 0.85rem;
      line-height: 1.12;
    }

    .flyer-intro {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 1.15rem;
      line-height: 1.55;
    }

    .flyer-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .flyer-list li {
      position: relative;
      padding-left: 1.2rem;
      font-size: 0.9rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.95);
    }

    .flyer-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
    }

    .flyer-list strong {
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #fff;
    }

    .flyer-col--mid {
      background: linear-gradient(165deg, #ffffff 0%, #f6f7fa 100%);
      border-radius: var(--radius-lg);
      padding: 2rem 1.75rem;
      border: 1px solid rgba(6, 8, 12, 0.08);
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      justify-content: center;
    }

    .flyer-col--mid h3 {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.5rem;
      font-family: var(--font-body);
    }

    .flyer-col--mid p {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--text-muted);
      margin: 0;
    }

    @keyframes flyer-card-float {
      0%, 100% { transform: translateY(6px); }
      50% { transform: translateY(-20px); }
    }

    @media (prefers-reduced-motion: no-preference) {
      .flyer-col--red {
        animation: flyer-card-float 5s ease-in-out infinite;
      }

      .flyer-col--mid {
        animation: flyer-card-float 5s ease-in-out infinite;
        animation-delay: -2.5s;
      }
    }
    /* Team page */
    nav a[aria-current="page"] {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-thickness: 2px;
    }

    .team-page .hero-team {
      padding: 7rem 1.5rem 3.5rem;
    }

    .team-page .hero-team h1 {
      max-width: 18ch;
    }

    .team-page .hero-team .hero-lead {
      max-width: 40rem;
      margin-bottom: 1.75rem;
    }

    .team-page .hero-team h1 {
      margin-bottom: clamp(0.85rem, 2vw, 1.25rem);
    }

    .team-founder {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .team-founder-grid {
      display: grid;
      grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: start;
    }

    @media (max-width: 900px) {
      .team-founder-grid { grid-template-columns: 1fr; }
    }

    .team-portrait {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      background: var(--surface-soft);
      aspect-ratio: 3 / 4;
    }

    .team-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .team-founder-body h2 { margin-bottom: 0.75rem; }

    .team-founder-body .role-line {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--primary);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }

    .team-founder-body p {
      color: var(--text-muted);
      margin-bottom: 1rem;
      max-width: 42rem;
    }

    .team-founder-body p:last-child { margin-bottom: 0; }

    .team-founder-body .source-note {
      font-size: 0.85rem;
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--border);
    }

    .team-founder-body .source-note a {
      font-weight: 600;
    }

    .team-story {
      background: var(--bg);
    }

    .team-story-blocks {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      max-width: 48rem;
    }

    .team-story-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem 1.5rem 1.6rem;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--primary);
    }

    .team-story-block .team-story-subhead {
      margin-bottom: 0.6rem;
    }

    .team-story-block .team-story-body {
      margin: 0;
      max-width: none;
    }

    .team-cta {
      background: var(--surface-dark);
      color: #e8ebf4;
      text-align: center;
    }

    .team-cta h2 { color: #fff; margin-bottom: 0.75rem; }

    .team-cta p {
      color: rgba(232, 235, 244, 0.82);
      max-width: 36rem;
      margin: 0 auto 1.5rem;
    }

    .team-cta .btn-primary { color: #fff; }

    .team-story-subhead {
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 0.65rem;
    }

    .team-story-body {
      color: var(--text-muted);
      max-width: 40rem;
    }

    /* VitalOxide learn-more page & product strip CTA */
    .product-strip .product-strip-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }

    .product-strip .product-strip-lead {
      margin-bottom: 1.25rem;
    }

    .btn-product-learn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 0.65rem 1.2rem;
      border-radius: 999px;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.45);
      color: #fff !important;
      background: rgba(255, 255, 255, 0.08);
      margin-top: 0.25rem;
      transition: background 0.15s ease, border-color 0.15s ease;
    }

    .btn-product-learn:hover {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.65);
      color: #fff !important;
    }

    .vo-page .hero-vo {
      padding: 7rem 1.5rem 3.5rem;
      background: linear-gradient(125deg, #0a1628 0%, #152a52 38%, var(--accent) 82%, #0c1830 100%);
      color: #eef2ff;
      position: relative;
      overflow-x: hidden;
      overflow-y: visible;
    }

    /* Soft lift where blue opens to light (bottom-right) — sits under content */
    .vo-page .hero-vo::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 75% 60% at 100% 100%, rgba(255, 255, 255, 0.14), transparent 58%);
      pointer-events: none;
      z-index: 0;
    }

    .vo-page .hero-vo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(220, 31, 38, 0.22), transparent 55%);
      pointer-events: none;
      z-index: 0;
    }

    /* Same drifting particles as main hero; sit above ::before/::after, under copy + mascot */
    .vo-page .hero-vo .hero-bg-particles {
      z-index: 1;
    }

    .vo-hero-grid {
      max-width: var(--max);
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: block;
    }

    /* Mascot: bottom-right of blue hero, feet on the section edge (above white band) */
    .vo-page .vo-hero-mascot {
      position: absolute;
      z-index: 2;
      right: 0;
      bottom: 0;
      width: auto;
      height: clamp(200px, 32vw, 300px);
      transform: translateX(12px);
      object-fit: contain;
      object-position: bottom center;
      display: block;
      pointer-events: none;
      filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
    }

    @media (max-width: 900px) {
      .vo-page .vo-hero-mascot {
        right: 0;
        height: clamp(160px, 42vw, 240px);
        transform: translateX(8px);
      }
    }

    .vo-hero-grid h1 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(2rem, 4.5vw, 3rem);
      line-height: 1.08;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 0.75rem;
    }

    .vo-hero-grid .hero-lead {
      color: rgba(238, 242, 255, 0.88);
      max-width: 38rem;
      margin-bottom: 1.25rem;
    }

    .vo-section {
      background: var(--bg);
    }

    .vo-section--surface {
      background: var(--surface);
    }

    .vo-section--soft {
      background: var(--surface-soft);
    }

    /* VitalOxide — “Our disinfection process”: airy layout, soft cards, gentle depth */
    .vo-section--process {
      padding-top: 4.75rem;
      padding-bottom: 4.75rem;
      background:
        radial-gradient(ellipse 90% 55% at 100% -10%, rgba(30, 90, 239, 0.07), transparent 52%),
        radial-gradient(ellipse 75% 50% at 0% 105%, rgba(220, 31, 38, 0.05), transparent 48%),
        var(--surface-soft);
    }

    .vo-section--process .section-intro {
      margin-bottom: 2.5rem;
    }

    .vo-facts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 2rem;
    }

    @media (max-width: 800px) {
      .vo-facts-grid { grid-template-columns: 1fr; }
    }

    .vo-fact-card {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 1.5rem 1.35rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .vo-fact-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .vo-fact-card p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.6;
    }

    .vo-steps {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 1.35rem;
      max-width: 44rem;
    }

    .vo-section--process .vo-steps {
      margin-top: 0.25rem;
    }

    .vo-steps li {
      display: grid;
      grid-template-columns: 2.5rem minmax(0, 1fr);
      gap: 1.1rem 1.25rem;
      align-items: start;
      padding: 1.35rem 1.4rem 1.35rem 1.35rem;
      background: rgba(255, 255, 255, 0.72);
      border-radius: var(--radius);
      border: 1px solid rgba(6, 8, 12, 0.07);
      box-shadow:
        0 1px 2px rgba(6, 8, 12, 0.04),
        0 12px 32px rgba(6, 8, 12, 0.05);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .vo-steps__index {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 11px;
      flex-shrink: 0;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
      line-height: 1;
      color: var(--primary);
      background: linear-gradient(145deg, rgba(220, 31, 38, 0.1) 0%, rgba(220, 31, 38, 0.04) 100%);
      border: 1px solid rgba(220, 31, 38, 0.18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    }

    .vo-steps__body {
      min-width: 0;
      padding-top: 0.12rem;
    }

    .vo-steps__title {
      display: block;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.98rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 0.45rem;
      line-height: 1.25;
    }

    .vo-steps__text {
      margin: 0;
      font-size: 0.94rem;
      line-height: 1.62;
      color: var(--text-muted);
    }

    @keyframes vo-process-step-ping {
      0% { transform: translateX(0); }
      6% { transform: translateX(34px); }
      14% { transform: translateX(0); }
      100% { transform: translateX(0); }
    }

    @media (prefers-reduced-motion: no-preference) {
      .vo-section--process .vo-steps.vo-steps--in-view > li {
        animation: vo-process-step-ping 10s var(--ease-out) infinite;
        animation-fill-mode: backwards;
      }

      .vo-section--process .vo-steps.vo-steps--in-view > li:nth-child(1) { animation-delay: 0s; }
      .vo-section--process .vo-steps.vo-steps--in-view > li:nth-child(2) { animation-delay: 2s; }
      .vo-section--process .vo-steps.vo-steps--in-view > li:nth-child(3) { animation-delay: 4s; }
      .vo-section--process .vo-steps.vo-steps--in-view > li:nth-child(4) { animation-delay: 6s; }
      .vo-section--process .vo-steps.vo-steps--in-view > li:nth-child(5) { animation-delay: 8s; }
    }

    @media (max-width: 520px) {
      .vo-steps li {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.2rem 1.2rem 1.25rem;
      }

      .vo-steps__index {
        width: 2.25rem;
        height: 2.25rem;
      }

      .vo-steps__body {
        padding-top: 0;
      }
    }

    .vo-split {
      display: grid;
      grid-template-columns: 1fr minmax(0, 380px);
      gap: 2.5rem;
      align-items: start;
      margin-top: 2rem;
    }

    @media (max-width: 860px) {
      .vo-split { grid-template-columns: 1fr; }
    }

    /* Image left, copy right — sprayer bleeds with page background (no card) */
    .vo-split--gear {
      grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
      gap: clamp(2.25rem, 5vw, 4rem);
      align-items: center;
    }

    @media (min-width: 861px) {
      .vo-split--gear .vo-split-body {
        padding-left: 0.75rem;
      }
    }

    @media (max-width: 860px) {
      .vo-split--gear {
        grid-template-columns: 1fr;
      }
      .vo-split--gear .vo-split-body {
        padding-left: 0;
      }
    }

    .vo-split--flip .vo-split-visual { order: -1; }
    @media (max-width: 860px) {
      .vo-split--flip .vo-split-visual { order: 0; }
    }

    .vo-split-visual {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
      background: var(--surface-soft);
    }

    .vo-split-visual img {
      width: 100%;
      height: auto;
      display: block;
    }

    .vo-split-visual--photo {
      aspect-ratio: 4 / 3;
      max-height: 420px;
    }

    .vo-split-visual--photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* Sprayer figure: no card chrome — sits on section --bg like hero imagery */
    figure.vo-sprayer {
      margin: 0;
      padding: 0;
      border: none;
      background: transparent;
      box-shadow: none;
      display: block;
    }

    .vo-sprayer img {
      width: 100%;
      max-width: min(460px, 100%);
      height: auto;
      display: block;
      object-fit: contain;
      object-position: left center;
      filter:
        drop-shadow(0 6px 14px rgba(6, 8, 12, 0.1))
        drop-shadow(0 16px 36px rgba(6, 8, 12, 0.14))
        drop-shadow(0 28px 56px rgba(6, 8, 12, 0.1))
        drop-shadow(0 3px 6px rgba(6, 8, 12, 0.08));
    }

    @media (min-width: 861px) {
      .vo-split--gear .vo-sprayer {
        margin-left: clamp(-0.5rem, -1.5vw, 0);
      }
    }

    @media (max-width: 860px) {
      .vo-sprayer img {
        max-width: min(360px, 92vw);
        margin-left: auto;
        margin-right: auto;
        object-position: center;
      }
    }

    .vo-split-body p {
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .vo-split-body p:last-child {
      margin-bottom: 0;
    }

    /* VitalOxide — electrostatic block: panel + staged sprayer + stepped copy */
    .vo-section--electro {
      padding-top: 3.25rem;
      padding-bottom: 3.25rem;
    }

    .vo-electro-panel {
      margin-top: 2rem;
      padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3.5vw, 2.25rem);
      background: var(--surface);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }

    .vo-electro-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary) 0%, #e85a5f 28%, var(--accent) 72%, rgba(30, 90, 239, 0.35) 100%);
      pointer-events: none;
    }

    .vo-electro-panel .vo-split {
      margin-top: 0;
    }

    figure.vo-sprayer.vo-sprayer--showcase {
      position: relative;
      padding: clamp(0.75rem, 2vw, 1.25rem) 0 0;
    }

    .vo-sprayer__glow {
      position: absolute;
      left: 50%;
      top: 52%;
      width: 118%;
      max-width: 520px;
      height: 78%;
      transform: translate(-50%, -50%);
      background:
        radial-gradient(ellipse 55% 48% at 50% 55%, rgba(30, 90, 239, 0.2), transparent 72%),
        radial-gradient(ellipse 70% 55% at 30% 40%, rgba(220, 31, 38, 0.1), transparent 65%);
      pointer-events: none;
      z-index: 0;
    }

    .vo-sprayer--showcase img {
      position: relative;
      z-index: 1;
    }

    .vo-electro-steps {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .vo-electro-steps > li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem 1.1rem;
      padding: 1.1rem 0;
      border-top: 1px solid rgba(6, 8, 12, 0.08);
      align-items: start;
    }

    .vo-electro-steps > li:first-of-type {
      border-top: none;
      padding-top: 0;
    }

    .vo-electro-steps__badge {
      flex-shrink: 0;
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      color: var(--accent);
      background: var(--accent-soft);
      border: 1px solid rgba(30, 90, 239, 0.22);
      line-height: 1;
    }

    .vo-electro-steps__body {
      min-width: 0;
    }

    .vo-electro-steps__title {
      display: block;
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 0.4rem;
    }

    .vo-electro-steps__body p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.62;
      color: var(--text-muted);
    }

    @media (max-width: 860px) {
      .vo-electro-steps > li {
        grid-template-columns: 1fr;
        gap: 0.65rem;
      }

      .vo-electro-steps__badge {
        width: 2rem;
        height: 2rem;
        font-size: 0.92rem;
      }
    }

    .vo-disclaimer {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--border);
      max-width: 48rem;
    }

    .vo-cta-band {
      background: var(--surface-dark);
      color: #e8ebf4;
      text-align: center;
      padding: 3rem 1.5rem;
    }

    .vo-cta-band h2 {
      color: #fff;
      margin-bottom: 0.65rem;
    }

    .vo-cta-band p {
      color: rgba(232, 235, 244, 0.82);
      max-width: 34rem;
      margin: 0 auto 1.25rem;
    }

    .vo-cta-band .btn-primary {
      color: #fff;
    }