    :root {
      --red: #d71920;
      --red-dark: #a90f16;
      --black: #101010;
      --muted: #666;
      --line: #e7e7e7;
      --white: #fff;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--black);
      background: #f5f5f5;
      font-family: "Manrope", sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    body::before {
      content: "";
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      inset: 0;
      opacity: .035;
      background-image: url("../textures/noise.gif?v=2");
      background-repeat: repeat;
      background-size: 250px 350px;
      mix-blend-mode: normal;
    }

    button, input, select { font: inherit; }

    .page {
      min-height: 100vh;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(430px, .85fr);
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 42px clamp(32px, 6vw, 92px) 56px;
      overflow: hidden;
      color: var(--white);
      background: #090909 url("../images/content/hero-desktop.webp?v=5") center / cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.68) 49%, rgba(0,0,0,.2) 100%),
        linear-gradient(0deg, rgba(0,0,0,.52), transparent 48%);
    }

    .brand, .hero-content { position: relative; z-index: 1; }
    .brand { animation: heroIn .7s .05s both; }
    .hero-content .eyebrow { animation: heroIn .75s .16s both; }
    .hero-content h1 { animation: heroIn .8s .24s both; }
    .hero-content .hero-copy { animation: heroIn .8s .34s both; }
    .hero-content .hero-cta { animation: heroIn .8s .42s both; }

    @keyframes heroIn {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .brand {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      color: white;
      text-decoration: none;
    }

    .brand-logo {
      display: block;
      width: 250px;
      height: auto;
    }

    .hero-content { max-width: 650px; margin: auto 0; padding: 70px 0 56px; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin: 0 0 22px;
      padding: 9px 13px;
      border-radius: 999px;
      color: var(--black);
      background: #fff;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }


    h1 {
      max-width: 620px;
      margin: 0;
      font-size: clamp(43px, 5vw, 76px);
      line-height: 1.01;
      letter-spacing: -.055em;
      font-weight: 800;
    }

    h1 span { color: #f02830; }

    .hero-copy {
      max-width: 575px;
      margin: 26px 0 0;
      color: rgba(255,255,255,.76);
      font-size: clamp(16px, 1.25vw, 19px);
      line-height: 1.65;
    }

    .hero-cta, .inline-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 24px;
      border-radius: 9px;
      color: white;
      background: var(--red);
      text-decoration: none;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .045em;
      text-transform: uppercase;
      box-shadow: 0 14px 30px rgba(215,25,32,.24);
      transition: transform .25s, background .25s, box-shadow .25s;
    }
    .hero-cta { margin-top: 30px; }
    .hero-cta:hover, .inline-cta:hover { transform: translateY(-3px); background: var(--red-dark); box-shadow: 0 18px 34px rgba(215,25,32,.3); }
    .cta-icon {
      flex: 0 0 27px;
      width: 27px;
      height: 27px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--black);
      background: white;
      font-size: 0;
      font-weight: 800;
      line-height: 1;
      transition: transform .25s;
    }
    .cta-icon::before {
      content: "";
      width: 16px;
      height: 16px;
      background: currentColor;
      transform: translate(-1px, 3px);
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 16 16 4M7 4h9v9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 16 16 4M7 4h9v9' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    }
    .hero-cta:hover .cta-icon, .inline-cta:hover .cta-icon, .cta-link:hover .cta-icon, .submit:hover .cta-icon { transform: translate(2px, -2px); }
    .section-action { display: flex; justify-content: center; margin-top: 42px; }
    .market .inline-cta { background: white; color: var(--black); box-shadow: none; }
    .market .inline-cta:hover { background: var(--red); color: white; }
    .market .inline-cta .cta-icon { color: white; background: var(--red); }
    .market .inline-cta:hover .cta-icon { color: var(--black); background: white; }

    .hero-cta, .inline-cta, .submit, .cta-link {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .hero-cta::after, .inline-cta::after, .submit::after, .cta-link::after {
      content: "";
      position: absolute;
      top: -55%;
      left: -72%;
      width: 42%;
      height: 210%;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.1) 25%, rgba(255,255,255,.36) 50%, rgba(255,255,255,.1) 75%, transparent);
      transform: translateX(0) skewX(-22deg);
      animation: ctaShine 2.8s cubic-bezier(.4,0,.2,1) infinite;
    }
    .market .inline-cta::after {
      background: linear-gradient(90deg, transparent, rgba(215,25,32,.06) 25%, rgba(215,25,32,.2) 50%, rgba(215,25,32,.06) 75%, transparent);
    }
    .submit:disabled::after { animation: none; opacity: 0; }
    @keyframes ctaShine {
      0%, 8% { transform: translateX(0) skewX(-22deg); }
      72%, 100% { transform: translateX(540%) skewX(-22deg); }
    }


    .form-area {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 42px clamp(28px, 5vw, 74px);
      background: var(--white);
      position: relative;
    }

    .form-area::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 110px;
      height: 8px;
      background: var(--red);
    }

    .form-wrap { width: min(100%, 510px); }

    .step-label { margin: 0 0 12px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

    h2 { margin: 0; font-size: clamp(28px, 2.3vw, 38px); line-height: 1.16; letter-spacing: -.035em; }

    .form-intro { margin: 14px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.6; }

    form { display: grid; gap: 17px; }
    [hidden] { display: none !important; }
    .form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
    .field { display: grid; gap: 7px; }
    label { font-size: 12px; font-weight: 800; }

    input, select {
      width: 100%;
      height: 52px;
      padding: 0 15px;
      border: 1px solid var(--line);
      border-radius: 8px;
      outline: none;
      color: var(--black);
      background: #fafafa;
      transition: border .2s, box-shadow .2s, background .2s;
    }

    input:focus, select:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(215,25,32,.1); }
    input::placeholder { color: #aaa; }

    .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    .experience-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .radio-card { position: relative; cursor: pointer; }
    .radio-card input { position: absolute; opacity: 0; pointer-events: none; }
    .radio-card span {
      min-height: 50px;
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 0 13px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: #505050;
      background: #fafafa;
      font-size: 13px;
      font-weight: 700;
      transition: .2s;
    }
    .radio-card span::before { content: ""; width: 15px; height: 15px; border: 1.5px solid #aaa; border-radius: 50%; }
    .radio-card input:checked + span { border-color: var(--red); color: var(--black); background: rgba(215,25,32,.045); }
    .radio-card input:checked + span::before { border: 5px solid var(--red); }

    .submit {
      height: 58px;
      margin-top: 5px;
      border: 0;
      border-radius: 8px;
      color: #fff;
      background: var(--red);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 12px 26px rgba(215,25,32,.22);
      transition: transform .2s, background .2s, box-shadow .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
    }
    .submit:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 15px 30px rgba(215,25,32,.28); }

    .privacy { margin: 0; text-align: center; color: #999; font-size: 11px; }
    .form-error { display: none; margin: 0; padding: 12px 14px; border: 1px solid rgba(215,25,32,.2); border-radius: 8px; color: #9f151b; background: rgba(215,25,32,.06); font-size: 12px; line-height: 1.5; text-align: center; }
    .form-error.is-visible { display: block; }
    .submit:disabled { cursor: wait; opacity: .72; transform: none; box-shadow: none; }
    .success { display: block; padding: 46px 38px; border: 1px solid #ececec; border-radius: 20px; text-align: center; background: rgba(255,255,255,.88); box-shadow: 0 24px 60px rgba(0,0,0,.08); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); animation: successIn .55s cubic-bezier(.2,.8,.2,1) both; }
    .success-icon { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 25px; border-radius: 50%; color: white; background: var(--black); box-shadow: 0 0 0 9px rgba(16,16,16,.06), 0 14px 30px rgba(0,0,0,.13); }
    .success-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
    .success-kicker { margin: 0 0 10px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
    .success h3 { margin: 0 0 13px; font-size: clamp(27px, 3vw, 34px); letter-spacing: -.035em; }
    .success p { max-width: 380px; margin: 0 auto; color: var(--muted); font-size: 14px; line-height: 1.75; }
    @keyframes successIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

    .section {
      position: relative;
      z-index: 1;
      margin-top: -34px;
      padding: 139px clamp(24px, 7vw, 110px) 105px;
      border-radius: 42px 42px 0 0;
      overflow: hidden;
    }
    .section::before {
      content: "";
      position: absolute;
      z-index: 0;
      top: -45px;
      right: -170px;
      width: 760px;
      height: 760px;
      pointer-events: none;
      background: url("../images/decor/tire-sidewall-detail.webp?v=1") center / contain no-repeat;
      opacity: .05;
      transform: rotate(-7deg);
      -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 48%, #000 35%, rgba(0,0,0,.8) 55%, transparent 82%);
      mask-image: radial-gradient(ellipse 70% 70% at 50% 48%, #000 35%, rgba(0,0,0,.8) 55%, transparent 82%);
    }
    .section::after {
      content: "";
      position: absolute;
      z-index: 0;
      inset: 0;
      pointer-events: none;
      background-image:
        radial-gradient(circle at 16% 78%, rgba(215,25,32,.18), transparent 25%),
        radial-gradient(circle, rgba(16,16,16,.14) 1px, transparent 1.5px),
        repeating-linear-gradient(135deg, transparent 0, transparent 76px, rgba(16,16,16,.09) 77px, transparent 78px);
      background-size: auto, 30px 30px, auto;
      opacity: .28;
      -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 86%, transparent 100%);
      mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 86%, transparent 100%);
    }
    .section:nth-of-type(even)::before {
      right: auto;
      left: -210px;
      width: 820px;
      height: 560px;
      background-image: url("../images/decor/tire-tread-detail.webp?v=1");
      background-size: 120% auto;
      transform: rotate(-8deg);
      -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 44%, #000 28%, rgba(0,0,0,.72) 50%, transparent 83%);
      mask-image: radial-gradient(ellipse 62% 58% at 50% 44%, #000 28%, rgba(0,0,0,.72) 50%, transparent 83%);
    }
    .section > .section-inner { position: relative; z-index: 1; }
    .market::before, .final-cta::before { filter: invert(1) grayscale(1); opacity: .025; }
    .market::after, .final-cta::after {
      background-image:
        radial-gradient(circle at 16% 78%, rgba(215,25,32,.22), transparent 25%),
        radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1.5px),
        repeating-linear-gradient(135deg, transparent 0, transparent 76px, rgba(255,255,255,.1) 77px, transparent 78px);
      opacity: .3;
    }
    .section + .section { z-index: 2; }
    .section + .section + .section { z-index: 3; }
    .section + .section + .section + .section { z-index: 4; }
    .section + .section + .section + .section + .section { z-index: 5; }
    .section-inner { width: min(1180px, 100%); margin: 0 auto; }
    .section-kicker { margin: 0 0 15px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
    .section-title { max-width: 780px; margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.08; letter-spacing: -.05em; }
    .section-lead { max-width: 680px; margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }

    .benefits { background: #f6f6f6; }
    .benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 58px; }
    .benefit-card { position: relative; min-height: 360px; padding: 28px; overflow: hidden; border: 1px solid #e2e2e2; border-radius: 16px; background: white; transition: transform .35s, box-shadow .35s, border-color .35s; }
    .benefit-card:hover { position: relative; z-index: 1; transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
    .benefit-number { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
    .benefit-icon { width: 112px; height: 112px; display: grid; place-items: center; margin: 18px 0 26px; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
    .benefit-card:hover .benefit-icon { transform: translateY(-5px) rotate(-2deg) scale(1.045); }
    .benefit-icon img { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 10px rgba(16,16,16,.13)); }
    .benefit-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -55px; top: -55px; border-radius: 50%; background: rgba(215,25,32,.08); transition: transform .4s; }
    .benefit-card:hover::after { transform: scale(1.35); }
    .benefit-card h3 { margin: 0 0 13px; font-size: 20px; letter-spacing: -.025em; }
    .benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

    .market { color: white; background: var(--black); overflow: hidden; }
    .market .section-lead { color: rgba(255,255,255,.64); }
    .market .section-title span { color: #ef2b32; }
    .stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
    .stat { padding: 38px 34px 40px 0; }
    .stat + .stat { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.16); }
    .stat em { display: block; margin-bottom: 18px; color: var(--red); font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
    .stat strong { display: flex; align-items: baseline; gap: 3px; color: white; font-size: clamp(38px, 4vw, 62px); line-height: 1; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
    .stat strong span { color: white; }
    .stat p { max-width: 280px; margin: 14px 0 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.6; }

    .recurrence { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; margin-top: 72px; }
    .recurrence-visual { position: relative; min-height: 480px; overflow: hidden; border-radius: 18px; }
    .recurrence-visual img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s; }
    .recurrence-visual:hover img { transform: scale(1.035); }
    .recurrence-badge {
      position: absolute;
      z-index: 1;
      isolation: isolate;
      left: 22px;
      bottom: 22px;
      padding: 16px 20px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.58);
      border-radius: 18px;
      color: white;
      background: linear-gradient(135deg, rgba(255,255,255,.3), rgba(235,240,245,.1) 48%, rgba(255,255,255,.22));
      box-shadow: 0 14px 40px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.8), inset 0 -1px 0 rgba(255,255,255,.15);
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
      text-shadow: 0 1px 8px rgba(0,0,0,.38);
      text-transform: uppercase;
      -webkit-backdrop-filter: blur(24px) saturate(65%) brightness(1.2) contrast(92%);
      backdrop-filter: blur(24px) saturate(65%) brightness(1.2) contrast(92%);
    }
    .recurrence-badge::before {
      content: "";
      position: absolute;
      inset: -70% -15%;
      z-index: 1;
      background:
        radial-gradient(circle at 28% 42%, rgba(255,255,255,.65), transparent 24%),
        radial-gradient(circle at 73% 60%, rgba(210,225,235,.34), transparent 28%);
      filter: blur(9px);
      animation: liquidDrift 5s ease-in-out infinite alternate;
    }
    .recurrence-badge::after {
      content: "";
      position: absolute;
      inset: 2px;
      z-index: 1;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 15px;
      box-shadow: inset 8px 8px 18px rgba(255,255,255,.06), inset -10px -8px 20px rgba(0,0,0,.1);
    }
    .recurrence-badge > span { position: relative; z-index: 2; }
    @keyframes liquidDrift {
      from { transform: translate3d(-6%, -4%, 0) rotate(-4deg); }
      to { transform: translate3d(7%, 5%, 0) rotate(5deg); }
    }
    .recurrence-copy h3 { margin: 0 0 20px; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.04em; }
    .recurrence-copy p { margin: 0; color: rgba(255,255,255,.64); line-height: 1.8; }
    .recurrence-cta { margin-top: 28px; }
    .recurrence-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
    .recurrence-pills span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; }

    .journey { background: white; }
    .journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 58px; }
    .journey-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; transition: transform .35s, box-shadow .35s; }
    .journey-card:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(0,0,0,.09); }
    .journey-image { height: 235px; overflow: hidden; background: #ddd; }
    .journey-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
    .journey-card:hover .journey-image img { transform: scale(1.045); }
    .journey-body { padding: 26px 27px 30px; }
    .journey-card em { display: block; margin-bottom: 13px; color: var(--red); font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
    .journey-card h3 { margin: 0 0 12px; font-size: 21px; }
    .journey-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

    .social {
      z-index: 6 !important;
      border-radius: 42px 42px 12px 12px;
      background: #f6f6f6;
    }
    .social-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
    .social-head .section-lead { max-width: 420px; }
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 58px; }
    .testimonial { position: relative; min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px 30px 28px; overflow: hidden; border: 1px solid #e8e8e8; border-radius: 14px; background: white; box-shadow: 0 16px 45px rgba(0,0,0,.06); transition: transform .35s, box-shadow .35s; }
    .testimonial:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(0,0,0,.09); }
    .testimonial::before { content: "↗"; position: absolute; top: 22px; right: 25px; color: rgba(215,25,32,.1); font-size: 52px; font-weight: 800; line-height: 1; }
    .testimonial-tag { width: fit-content; padding: 7px 10px; border-radius: 999px; color: var(--red); background: rgba(215,25,32,.07); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
    .testimonial-copy { position: relative; z-index: 1; }
    .testimonial-copy h3 { max-width: 310px; margin: 30px 0 12px; color: #202020; font-size: 23px; line-height: 1.25; letter-spacing: -.03em; }
    .testimonial-copy p { max-width: 310px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
    .testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
    .testimonial-avatar { flex: 0 0 44px; width: 44px; height: 44px; overflow: hidden; border: 2px solid white; border-radius: 50%; box-shadow: 0 0 0 1px #ddd; background: #ddd; }
    .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
    .testimonial-identity strong { display: block; color: #333; font-size: 11px; letter-spacing: .035em; text-transform: uppercase; }
    .testimonial-identity span { display: block; margin-top: 3px; color: #999; font-size: 10px; }
    .carousel-controls { display: none; }

    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
    .reveal.from-left { transform: translateX(-42px); }
    .reveal.from-right { transform: translateX(42px); }
    .reveal.is-visible { opacity: 1; transform: translate(0); }
    .delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; } .delay-3 { transition-delay: .24s; }

    .final-cta { z-index: 5 !important; margin-top: -12px; text-align: center; color: white; background: linear-gradient(135deg, #161616, #050505); }
    .final-cta .section-title, .final-cta .section-lead { margin-left: auto; margin-right: auto; }
    .final-cta .section-lead { color: rgba(255,255,255,.65); }
    .cta-link { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 58px; margin-top: 32px; padding: 0 30px; border-radius: 8px; color: white; background: var(--red); text-decoration: none; font-size: 13px; font-weight: 800; text-transform: uppercase; box-shadow: 0 12px 26px rgba(215,25,32,.25); }

    footer { padding: 24px; text-align: center; color: #999; background: #050505; border-top: 1px solid #202020; font-size: 11px; }

    @media (max-width: 980px) {
      .page { grid-template-columns: 1fr; }
      .hero { min-height: 720px; }
      .form-area { min-height: auto; padding-top: 72px; padding-bottom: 72px; }
      .benefit-grid { grid-template-columns: 1fr 1fr; }
      .recurrence { grid-template-columns: 1fr; gap: 45px; }
      .testimonial-grid { grid-template-columns: 1fr 1fr; }
      .recurrence-visual { width: 100%; max-width: none; min-height: 0; margin: 0 auto; aspect-ratio: 3 / 2; }
    }

    @media (max-width: 600px) {
      .hero {
        min-height: 680px;
        padding: 28px 22px 34px;
        align-items: center;
        text-align: center;
        background-image: url("../images/content/hero-mobile.webp?v=2");
        background-position: center;
      }
      .brand { align-self: center; }
      .brand-logo { width: 230px; }
      .hero-content { width: 100%; padding: 60px 0 42px; }
      .eyebrow { margin-right: auto; margin-left: auto; }
      h1 { font-size: 45px; }
      .hero-copy { margin-right: auto; margin-left: auto; }
      .hero-cta { margin-right: auto; margin-left: auto; }
      .form-area { padding: 58px 20px; }
      .row, .experience-options { grid-template-columns: 1fr; }
      .section {
        margin-top: -24px;
        padding: 100px 22px 76px;
        border-radius: 26px 26px 0 0;
      }
      .section::before {
        top: 70px;
        right: -175px;
        width: 470px;
        height: 470px;
        opacity: .04;
      }
      .section::after {
        background-size: auto, 24px 24px, auto;
        opacity: .22;
      }
      .section:nth-of-type(even)::before {
        left: -165px;
        width: 520px;
        height: 360px;
      }
      .market::before, .final-cta::before { opacity: .025; }
      .section > .section-inner { text-align: center; }
      .section-title, .section-lead { margin-right: auto; margin-left: auto; }
      .benefit-grid, .stats, .journey-grid, .testimonial-grid { grid-template-columns: 1fr; }
      .benefit-card { min-height: auto; text-align: center; }
      .benefit-icon { margin-right: auto; margin-left: auto; }
      .stat, .stat + .stat { padding: 28px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
      .stat strong { justify-content: center; }
      .stat p { margin-right: auto; margin-left: auto; }
      .stat:last-child { border-bottom: 0; }
      .recurrence-copy { text-align: center; }
      .recurrence-pills { justify-content: center; }
      .journey-body { text-align: center; }
      .social-head { display: block; text-align: center; }
      .social-head .section-lead { margin-right: auto; margin-left: auto; }
      .social { border-radius: 26px 26px 8px 8px; }
      .testimonial-grid {
        display: flex;
        gap: 14px;
        margin-right: -22px;
        padding-right: 22px;
        overflow-x: hidden;
        overscroll-behavior-x: none;
        scroll-behavior: smooth;
        touch-action: pan-y;
      }
      .testimonial {
        flex: 0 0 calc(100% - 34px);
        min-height: 390px;
        text-align: center;
      }
      .testimonial::before { content: none; }
      .testimonial-tag { margin-right: auto; margin-left: auto; }
      .testimonial-copy h3, .testimonial-copy p { margin-right: auto; margin-left: auto; }
      .testimonial-copy p { margin-top: 0; }
      .testimonial-person { justify-content: center; }
      .testimonial-identity { text-align: left; }
      .carousel-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 22px;
      }
      .carousel-dots { display: flex; align-items: center; gap: 7px; }
      .carousel-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: #cfcfcf; cursor: pointer; transition: width .25s, border-radius .25s, background .25s; }
      .carousel-dot.is-active { width: 25px; border-radius: 999px; background: var(--red); }
      .carousel-arrows { display: flex; gap: 8px; }
      .carousel-arrow { position: relative; width: 43px; height: 43px; display: grid; place-items: center; padding: 0; border: 1px solid #ddd; border-radius: 50%; color: var(--black); background: white; font-size: 0; line-height: 0; cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
      .carousel-arrow::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 21px;
        height: 21px;
        margin: auto;
        background: currentColor;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 12H4M10 6l-6 6 6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 12H4M10 6l-6 6 6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
      }
      .carousel-next::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h16m-6-6 6 6-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h16m-6-6 6 6-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      }
      .carousel-arrow:active { color: white; border-color: var(--red); background: var(--red); }
      .recurrence-visual { min-height: 0; max-width: none; aspect-ratio: 3 / 2; }
      .recurrence-badge { left: 14px; bottom: 14px; padding: 13px 14px; border-radius: 14px; font-size: 9px; }
      .recurrence-badge::after { border-radius: 11px; }
      .section-action { justify-content: stretch; }
      .inline-cta { width: 100%; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; transition: none; }
      .benefit-card, .testimonial { transition: none; }
      .brand, .hero-content .eyebrow, .hero-content h1, .hero-content .hero-copy, .hero-content .hero-cta { animation: none; }
      .hero-cta::after, .inline-cta::after, .submit::after, .cta-link::after { animation: none; opacity: 0; }
      body::before { opacity: .035; }
      .recurrence-badge::before { animation: none; }
    }
