:root {
      --accent: #3067E8; --accent-600: #2454C7; --accent-50: #EEF3FE; --accent-100: #D8E3FC;
      --lime: #B5CC1C; --lime-600: #97AD0F; --lime-50: #F6F9DD;
      --peri: #BACBE6; --peri-50: #EEF2F9;
      --ink: #000000; --ink-2: #1F2937; --muted: #5A6579;
      --line: #DBE2EE; --line-2: #EEF1F7; --bg: #F4F6FB; --card: #FFFFFF;
      --danger: #C0392B; --success: #5A8E1A; --warning: #B7791F;
      --radius: 14px; --radius-sm: 10px; --radius-lg: 20px;
      --shadow-sm: 0 1px 2px rgba(11,31,58,0.05);
      --shadow: 0 4px 20px -6px rgba(11,31,58,0.10), 0 1px 2px rgba(11,31,58,.04);
      --shadow-lg: 0 20px 50px -20px rgba(11,31,58,.22);
      --font-display: "Fraunces", Georgia, serif;
      --font-body: "Geist", system-ui, sans-serif;
    }
    html[data-font="geist-geist"] { --font-display: "Geist", system-ui, sans-serif; --font-body: "Geist", system-ui, sans-serif; }
    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body { font-family: var(--font-body); color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.5; }
    h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
    p { margin: 0; }
    .mono { font-family: ui-monospace, monospace; }

    /* prevent unsized inline SVGs from stretching their containers */
    svg { overflow: hidden; max-width: 100%; }
    .topbar-meta .meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ── SHELL ── */
    .app-shell { min-height: 100vh; display: flex; flex-direction: column; background: radial-gradient(1200px 600px at 85% -200px, color-mix(in oklab,var(--accent) 10%,transparent),transparent 60%), radial-gradient(900px 500px at -5% 10%,color-mix(in oklab,var(--accent) 6%,transparent),transparent 60%), var(--bg); }

    /* ── TOPBAR ── */
    .topbar { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.7); backdrop-filter: blur(14px); position: sticky; top: 0; z-index: 30; }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand-mark {
      width: 44px; height: 44px; border-radius: 11px;
      background: var(--accent);
      display: grid; place-items: center;
      color: #fff; font-weight: 700; font-family: var(--font-display);
      box-shadow: 0 8px 18px -4px rgba(48,103,232,.55),0 2px 4px rgba(48,103,232,.25);
      flex-shrink: 0;
    }
    .brand-name { font-weight: 600; font-size: 16px; letter-spacing: -.01em; }
    .brand-sub { font-size: 12px; color: var(--muted); margin-top: -2px; }
    .topbar-meta { display: flex; align-items: center; gap: 24px; font-size: 14px; color: var(--muted); }
    .topbar-meta .meta-item { display: flex; align-items: center; gap: 6px; }
    .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--success); box-shadow: 0 0 0 3px color-mix(in oklab,var(--success) 18%,transparent); }

    /* ── TOP CAROUSEL ── */
    .top-carousel {
      width: 100%;
      position: relative;
      border-bottom: 1px solid rgba(11,31,58,.08);
      background: transparent;
      padding: 0;
    }
    .top-carousel:focus-visible {
      outline: none;
    }
    .top-carousel:focus-visible .top-carousel-track {
      box-shadow: 0 28px 60px -34px rgba(11,31,58,.38), 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
    }
    .top-carousel-track {
      position: relative;
      width: 100%;
      aspect-ratio: 5692 / 1742;
      min-height: 260px;
      border-radius: 0;
      overflow: hidden;
      background: #e8ecf4;
      box-shadow: none;
      isolation: isolate;
    }
    .top-carousel-track::after {
      display: none;
    }
    .top-carousel-slide {
      position: absolute;
      inset: 0;
      margin: 0;
      opacity: 0;
      transition: opacity .45s ease, transform .45s ease;
      transform: scale(1.015);
    }
    .top-carousel-slide.is-active {
      opacity: 1;
      transform: scale(1);
    }
    .top-carousel-backdrop {
      display: none;
    }
    .top-carousel-slide-shell {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    .top-carousel-slide-shell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: none;
    }
    .top-carousel-nav {
      position: absolute;
      top: 50%;
      z-index: 3;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.34);
      background: rgba(12,21,39,.3);
      color: #fff;
      display: grid;
      place-items: center;
      cursor: pointer;
      backdrop-filter: blur(14px);
      box-shadow: 0 16px 28px -18px rgba(0,0,0,.5);
      transition: background .2s ease, transform .2s ease, border-color .2s ease, opacity .2s ease;
    }
    .top-carousel-nav:hover {
      background: rgba(12,21,39,.48);
      border-color: rgba(255,255,255,.46);
    }
    .top-carousel-nav--prev { left: 24px; }
    .top-carousel-nav--next { right: 24px; }

    @media (hover: hover) {
      .top-carousel-nav {
        opacity: 0;
        pointer-events: none;
      }
      .top-carousel-track:hover .top-carousel-nav,
      .top-carousel:focus-within .top-carousel-nav {
        opacity: 1;
        pointer-events: auto;
      }
    }
    .top-carousel-status {
      display: none;
    }
    .top-carousel-counter {
      display: inline-flex;
      align-items: baseline;
      gap: 5px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(12,21,39,.32);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(14px);
      color: #fff;
      font-family: var(--font-display);
      font-size: 18px;
      line-height: 1;
      box-shadow: 0 12px 28px -20px rgba(0,0,0,.5);
    }
    .top-carousel-counter-total {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .14em;
      opacity: .72;
    }
    .top-carousel-progress {
      flex: 1;
      height: 7px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255,255,255,.2);
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: inset 0 1px 1px rgba(255,255,255,.1);
      backdrop-filter: blur(8px);
    }
    .top-carousel-progress span {
      display: block;
      height: 100%;
      width: 33.333%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--lime), #fff085);
      box-shadow: 0 0 20px rgba(181,204,28,.36);
      transition: width .32s ease;
    }
    .top-carousel-dots {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      border-radius: 999px;
      background: rgba(12,21,39,.32);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(14px);
      pointer-events: auto;
      box-shadow: 0 12px 28px -20px rgba(0,0,0,.5);
      flex-shrink: 0;
    }
    .top-carousel-dot {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      padding: 0;
      display: grid;
      place-items: center;
      cursor: pointer;
      color: rgba(255,255,255,.72);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }
    .top-carousel-dot:hover,
    .top-carousel-dot.is-active {
      transform: translateY(-1px);
      background: rgba(255,255,255,.18);
      border-color: rgba(255,255,255,.34);
      color: #fff;
    }
    .top-carousel-dot-index {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: currentColor;
    }

    /* ── HERO ── */
    .hero { padding: 48px 40px 28px; max-width: 1240px; margin: 0 auto; width: 100%; }
    .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--lime-600); background: var(--lime-50); padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; font-weight: 600; }

    /* headline row — h1 + No.1 badge sitting inline */
    .hero-headline-row { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 14px; }
    .hero h1 { font-size: 44px; line-height: 1.05; max-width: 680px; letter-spacing: -.02em; margin: 0; }
    .hero h1 .accent-word { font-style: italic; color: var(--lime-600); font-weight: 500; position: relative; }
    .hero h1 .accent-word::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px; background: var(--lime); opacity: .35; z-index: -1; border-radius: 4px; }

    /* India No.1 floating badge */
    .hero-no1-badge {
      display: flex; align-items: center; gap: 10px;
      background: var(--ink); color: #fff;
      padding: 10px 14px; border-radius: 14px;
      margin-top: 6px;
      box-shadow: 0 8px 24px -8px rgba(0,0,0,.35);
      flex-shrink: 0;
      white-space: nowrap;
    }
    .no1-star { color: var(--lime); display: flex; align-items: center; }
    .no1-label { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.65); line-height: 1; margin-bottom: 3px; }
    .no1-sub { font-size: 15px; font-weight: 700; color: #fff; font-family: var(--font-display); letter-spacing: -.01em; line-height: 1; }

    /* sub-headline */
    .hero-sub {
      font-size: 16.5px; color: var(--ink-2); font-weight: 400; line-height: 1.55;
      margin-bottom: 12px;
      max-width: 660px;
    }
    .hero-sub strong { color: var(--ink); font-weight: 700; }

    /* lede — body copy under sub-headline */
    .lede { font-size: 15.5px; color: var(--muted); max-width: 660px; margin-top: 0; line-height: 1.75; margin-bottom: 22px; }
    .lede strong { color: var(--ink-2); font-weight: 600; }
    .trust-strip { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 22px; font-size: 14.5px; color: var(--ink-2); }
    .t-item { display: inline-flex; align-items: center; gap: 8px; }
    .t-item svg { width: 16px; height: 16px; color: var(--lime-600); }

    /* ── STEPPER ── */
    .stepper-wrap { max-width: 1240px; margin: 24px auto 0; padding: 0 40px; }
    .stepper { display: grid; grid-template-columns: minmax(0,1fr) 60px minmax(0,1fr) 60px minmax(0,1fr); align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px 24px; box-shadow: var(--shadow-sm); }
    .step { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; padding: 4px 8px; }
    .step .num { width: 30px; height: 30px; border-radius: 999px; display: grid; place-items: center; background: var(--line-2); color: var(--muted); font-weight: 600; font-size: 13px; border: 1px solid transparent; transition: all .25s; flex-shrink: 0; }
    .step .meta { display: flex; flex-direction: column; min-width: 0; }
    .step .step-label { font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.2; }
    .step .step-desc { font-size: 12px; color: var(--muted); opacity: .7; }
    .step.active .num { background: var(--accent); color: #fff; box-shadow: 0 4px 10px -2px color-mix(in oklab,var(--accent) 50%,transparent); }
    .step.active .step-label { color: var(--ink); }
    .step.done .num { background: color-mix(in oklab,var(--success) 12%,white); color: var(--success); border-color: color-mix(in oklab,var(--success) 30%,white); }
    .step.done .num::after { content: ""; display: block; width: 12px; height: 7px; border: 2px solid var(--success); border-top: 0; border-right: 0; transform: rotate(-45deg) translate(1px,-2px); }
    .step.done .num-raw { display: none; }
    .step-sep { height: 2px; background: var(--line); border-radius: 2px; position: relative; overflow: hidden; }
    .step-sep.filled { background: var(--accent); }

    /* ── MAIN GRID ── */
    .main { max-width: 1240px; margin: 28px auto 80px; padding: 0 40px; display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 28px; align-items: start; }
    html[data-layout="stacked"] .main { grid-template-columns: 1fr; }
    html[data-layout="stacked"] .summary-col { display: none; }

    /* ── CARD PANEL ── */
    .card-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
    .panel-head { padding: 26px 32px 20px; border-bottom: 1px solid var(--line-2); }
    .panel-head h2 { font-size: 22px; letter-spacing: -.015em; }
    .panel-head .sub { color: var(--muted); font-size: 15px; margin-top: 6px; }
    .panel-body { padding: 28px 32px 32px; }
    .panel-foot { padding: 18px 32px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; align-items: center; gap: 16px; background: color-mix(in oklab,var(--bg) 40%,white); }

    /* ── FORM ── */
    .section-title { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .section-title::before { content: ""; width: 20px; height: 1px; background: var(--muted); }
    .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
    .field-grid .full { grid-column: 1/-1; }
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field label { font-size: 13.5px; color: var(--ink-2); font-weight: 500; }
    .field label .req { color: var(--danger); margin-left: 2px; }
    .hint { font-size: 12.5px; color: var(--muted); }
    .error-msg { color: var(--danger); font-size: 12px; margin-top: 2px; display: none; }
    .error-msg.visible { display: block; }
    .input, .select { width: 100%; font: inherit; font-size: 15.5px; color: var(--ink); padding: 12px 14px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm); transition: all .15s; outline: none; }
    .input::placeholder { color: color-mix(in oklab,var(--muted) 70%,transparent); }
    .input:hover, .select:hover { border-color: color-mix(in oklab,var(--accent) 40%,var(--line)); }
    .input:focus, .select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab,var(--accent) 16%,transparent); }
    .input.err, .select.err, .model-trigger.err { border-color: var(--danger) !important; }
    .input-group { position: relative; display: flex; align-items: center; }
    .input-group .prefix { position: absolute; left: 14px; font-size: 15px; color: var(--muted); font-weight: 500; pointer-events: none; border-right: 1px solid var(--line); padding-right: 10px; }
    .input-group .input { padding-left: 56px; }
    .select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' fill='none' stroke='%235A6B85' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
    .divider { border: 0; height: 1px; background: var(--line-2); margin: 24px 0; }
    .date-lock { font-size: 11.5px; color: var(--lime-600); background: var(--lime-50); padding: 6px 10px; border-radius: 6px; display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }

    /* ── BUTTONS ── */
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; font: inherit; font-weight: 600; font-size: 15px; border-radius: 10px; border: 1px solid transparent; cursor: pointer; transition: all .15s; user-select: none; white-space: nowrap; }
    .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px -6px rgba(48,103,232,.55),0 3px 6px rgba(48,103,232,.25),inset 0 1px 0 rgba(255,255,255,.18); }
    .btn-primary:hover { background: var(--accent-600); transform: translateY(-1px); box-shadow: 0 14px 26px -6px rgba(48,103,232,.65),0 4px 8px rgba(48,103,232,.3),inset 0 1px 0 rgba(255,255,255,.18); }
    .btn-primary:active { transform: translateY(0); }
    .btn-primary:disabled { background: var(--line); color: var(--muted); box-shadow: none; cursor: not-allowed; transform: none; }
    .btn-ghost { background: transparent; color: var(--ink-2); border-color: var(--line); }
    .btn-ghost:hover { background: var(--line-2); }
    .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* ── MODEL SELECT ── */
    .model-select { position: relative; }
    .model-trigger { width: 100%; display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; cursor: pointer; transition: all .15s; text-align: left; font: inherit; }
    .model-trigger:hover { border-color: color-mix(in oklab,var(--accent) 40%,var(--line)); }
    .model-trigger.open { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab,var(--accent) 16%,transparent); }
    .model-trigger .thumb { width: 48px; height: 48px; border-radius: 8px; background: linear-gradient(135deg,var(--accent-50),#fff); display: grid; place-items: center; border: 1px solid var(--line); flex-shrink: 0; }
    .model-trigger .thumb svg { width: 28px; height: 28px; color: var(--accent); }
    .m-title { font-weight: 600; font-size: 15.5px; }
    .m-sku { font-size: 13px; color: var(--muted); margin-top: 2px; font-family: ui-monospace,monospace; }
    .m-placeholder { color: var(--muted); font-size: 15.5px; }
    .chev { width: 16px; height: 16px; margin-left: auto; color: var(--muted); flex-shrink: 0; transition: transform .2s; }
    .model-trigger.open .chev { transform: rotate(180deg); }
    .model-dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); z-index: 20; max-height: 340px; overflow-y: auto; padding: 6px; }
    .model-dropdown.open { display: block; }
    .model-search { width: 100%; padding: 10px 12px; border: 0; border-bottom: 1px solid var(--line-2); outline: none; font: inherit; font-size: 13px; margin-bottom: 4px; background: transparent; }
    .model-option { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; cursor: pointer; }
    .model-option:hover { background: var(--accent-50); }
    .model-option .thumb { width: 40px; height: 40px; border-radius: 6px; background: linear-gradient(135deg,var(--accent-50),#fff); display: grid; place-items: center; border: 1px solid var(--line); flex-shrink: 0; }
    .model-option .thumb svg { width: 22px; height: 22px; color: var(--accent); }
    .model-option .check { margin-left: auto; color: var(--accent); }
    .no-results { padding: 14px; text-align: center; color: var(--muted); font-size: 13px; }

    /* ── WARRANTY CARDS ── */
    .warranty-block { margin-top: 24px; }
    .section-label { font-size: 12.5px; color: var(--ink-2); font-weight: 500; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
    .pill { font-size: 11px; color: var(--lime-600); background: var(--lime-50); padding: 4px 10px; border-radius: 999px; font-weight: 600; }
    .warranty-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
    html[data-card-style="minimal"] .warranty-grid { gap: 10px; }
    .warranty-empty { padding: 40px 20px; text-align: center; border: 1.5px dashed var(--line); border-radius: 12px; color: var(--muted); font-size: 13.5px; background: color-mix(in oklab,var(--bg) 30%,white); }
    .warranty-card { position: relative; border: 1.5px solid var(--line); border-radius: 14px; padding: 20px 18px 18px; cursor: pointer; transition: all .2s; background: #fff; display: flex; flex-direction: column; gap: 14px; }
    .warranty-card:hover { border-color: color-mix(in oklab,var(--accent) 35%,var(--line)); transform: translateY(-2px); box-shadow: 0 10px 26px -14px rgba(11,31,58,.18); }
    .warranty-card.selected { border-color: var(--accent); background: linear-gradient(180deg,var(--accent-50) 0%,#fff 60%); box-shadow: 0 10px 26px -10px color-mix(in oklab,var(--accent) 35%,transparent); }
    .warranty-card .tier-tag { position: absolute; top: 14px; right: 14px; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
    .warranty-card.selected .tier-tag { color: var(--accent); }
    .warranty-card.popular::before { content: "POPULAR"; position: absolute; top: -10px; left: 16px; background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .12em; padding: 4px 10px; border-radius: 999px; box-shadow: 0 4px 10px -3px color-mix(in oklab,var(--lime) 60%,transparent); }
    .w-duration { font-family: var(--font-display); font-size: 34px; font-weight: 600; letter-spacing: -.02em; line-height: 1; color: var(--ink); }
    html[data-card-style="minimal"] .w-duration { font-size: 28px; }
    .w-duration small { font-size: 14px; color: var(--muted); font-weight: 400; margin-left: 4px; }
    .w-name { font-size: 13px; color: var(--muted); margin-top: 2px; }
    .w-price { font-size: 20px; font-weight: 600; color: var(--ink); }
    .w-price small { font-size: 12px; color: var(--muted); font-weight: 400; }
    .w-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; border-top: 1px dashed var(--line); padding-top: 12px; }
    html[data-card-style="minimal"] .w-feats { display: none; }
    .w-feats li { font-size: 12.5px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 7px; }
    .w-feats li::before { content: ""; width: 14px; height: 14px; background: var(--accent-50); border-radius: 50%; flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M3.5 7l2.5 2.5L10.5 5' fill='none' stroke='%231E56A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: center; }

    /* ── NOTE CALLOUT ── */
    .note-callout { margin-top: 18px; display: flex; gap: 12px; padding: 14px 16px; border-radius: 12px; background: var(--lime-50); border: 1px solid color-mix(in oklab,var(--lime) 30%,transparent); }
    .note-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin-top: 1px; }
    .note-title { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lime-600); margin-bottom: 6px; }
    .note-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .note-list li { font-size: 14px; color: var(--ink-2); line-height: 1.55; padding-left: 14px; position: relative; }
    .note-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--lime-600); border-radius: 50%; }

    /* ── FILE UPLOAD ── */
    .upload-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 8px; }
    .upload-grid > * { min-width: 0; }
    .upload-field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
    .upload { border: 1.5px dashed var(--line); border-radius: var(--radius-sm); padding: 20px; text-align: center; transition: all .15s; cursor: pointer; background: color-mix(in oklab,var(--bg) 30%,white); min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
    .upload:hover { border-color: var(--accent); background: var(--accent-50); }
    .upload.has-file { border-style: solid; border-color: var(--accent); background: #fff; padding: 14px; align-items: flex-start; }
    .upload.err { border-color: var(--danger); }
    .upload input[type="file"] { display: none; }
    .u-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--accent-50); color: var(--accent); display: grid; place-items: center; }
    .u-title { font-size: 14.5px; font-weight: 600; color: var(--ink); }
    .u-hint { font-size: 12.5px; color: var(--muted); }
    .u-preview { display: flex; align-items: center; gap: 12px; width: 100%; min-width: 0; text-align: left; }
    .u-preview .thumb { width: 44px; height: 44px; border-radius: 8px; background: linear-gradient(135deg,var(--accent-50),#fff); display: grid; place-items: center; border: 1px solid var(--line); color: var(--accent); flex-shrink: 0; }
    .pv-meta { flex: 1; min-width: 0; }
    .pv-name { font-size: 14px; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .pv-size { font-size: 12.5px; color: var(--muted); }
    .remove-file { background: transparent; border: 0; color: var(--muted); cursor: pointer; padding: 4px; margin-left: auto; flex-shrink: 0; }
    .remove-file:hover { color: var(--danger); }

    /* ── SUMMARY ── */
    .summary { position: sticky; top: 96px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
    .summary-head { padding: 20px 22px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: space-between; }
    .summary-head .s-label { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .65; color: var(--peri); }
    .summary-head .s-title { font-size: 15px; font-weight: 600; margin-top: 2px; }
    .s-badge { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--lime); color: var(--ink); }
    .summary-body { padding: 6px 0; }
    .summary-row { display: flex; justify-content: space-between; gap: 10px; padding: 12px 22px; font-size: 14px; border-bottom: 1px dashed var(--line-2); }
    .summary-row:last-of-type { border-bottom: 0; }
    .summary-row .sk { color: var(--muted); }
    .summary-row .sv { color: var(--ink); font-weight: 500; text-align: right; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .summary-row .sv.empty { color: color-mix(in oklab,var(--muted) 80%,transparent); font-style: italic; font-weight: 400; }
    .summary-total { padding: 18px 22px; background: var(--accent-50); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
    .t-k { font-size: 14px; color: var(--ink-2); }
    .t-v { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--lime-600); }
    .summary-foot { padding: 14px 22px; font-size: 11.5px; color: var(--muted); border-top: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
    .summary-foot svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--lime-600); }
    .topbar-meta .meta-item svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ── PAYMENT ── */
    .pay-summary { background: linear-gradient(180deg,var(--accent-50),#fff); border: 1px solid var(--accent-100); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 20px; }
    .pay-summary h3 { font-family: var(--font-body); font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 14px; }
    .pay-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 15px; }
    .pay-line.total { border-top: 1px solid var(--accent-100); margin-top: 10px; padding-top: 14px; font-weight: 600; font-size: 18px; }
    .pay-line.total .amount { color: var(--lime-600); font-family: var(--font-display); font-size: 22px; }
    .razorpay-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
    .razorpay-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line-2); margin-bottom: 16px; }
    .razorpay-brand { display: flex; align-items: center; gap: 10px; }
    .rz-mark { width: 34px; height: 34px; background: #3395FF; border-radius: 8px; color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 15px; }
    .rz-text { font-weight: 600; font-size: 14px; }
    .rz-sub { font-size: 11.5px; color: var(--muted); }
    .secured { font-size: 11.5px; color: var(--success); display: flex; align-items: center; gap: 6px; }
    .pay-disclaimer { margin-top: 18px; font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
    .pay-disclaimer svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

    /* ── MODAL ── */
    .modal-overlay { position: fixed; inset: 0; background: color-mix(in oklab,var(--ink) 60%,transparent); backdrop-filter: blur(6px); display: none; place-items: center; z-index: 100; animation: fadeIn .2s ease; }
    .modal-overlay.open { display: grid; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    .modal { background: #fff; border-radius: 20px; max-width: 440px; width: calc(100% - 40px); padding: 36px 32px 28px; text-align: center; box-shadow: var(--shadow-lg); animation: popIn .3s cubic-bezier(.34,1.56,.64,1); }
    @keyframes popIn { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
    .modal .check { width: 76px; height: 76px; border-radius: 50%; background: color-mix(in oklab,var(--success) 12%,white); display: grid; place-items: center; margin: 0 auto 18px; animation: bounceIn .5s cubic-bezier(.34,1.56,.64,1); }
    @keyframes bounceIn { 0%{transform:scale(.3)} 60%{transform:scale(1.08)} 100%{transform:scale(1)} }
    .modal .check::after { content: ""; width: 28px; height: 14px; border: 3px solid var(--success); border-top: 0; border-right: 0; transform: rotate(-45deg) translate(2px,-4px); }
    .modal h3 { font-size: 24px; margin-bottom: 8px; }
    .modal p { color: var(--muted); font-size: 15px; margin-bottom: 4px; line-height: 1.55; }
    .order-id { font-family: ui-monospace,monospace; background: var(--lime-50); color: var(--lime-600); padding: 10px 14px; border-radius: 8px; margin: 18px 0 10px; font-size: 13px; font-weight: 600; display: inline-block; }
    .modal-actions { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }

    /* ── STEP PANELS ── */
    .step-panel { display: none; }
    .step-panel.active { display: block; }

    /* ── FOOTER ── */
    .site-footer { margin-top: auto; border-top: 1px solid var(--line); background: #fff; }
    .footer-inner { max-width: 1240px; margin: 0 auto; padding: 48px 40px 32px; display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; }
    .footer-brand .footer-blurb { font-size: 14.5px; color: var(--muted); margin-top: 16px; max-width: 320px; line-height: 1.6; }
    .footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
    .footer-col { display: flex; flex-direction: column; gap: 10px; }
    .footer-h { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
    .footer-col a { font-size: 14.5px; color: var(--muted); text-decoration: none; transition: color .15s; }
    .footer-col a:hover { color: var(--lime-600); }
    .footer-bottom { max-width: 1240px; margin: 0 auto; padding: 18px 40px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); }

    /* ── MARKETING SECTION ── */
    .marketing-wrap {
      max-width: 1240px;
      margin: 0 auto;
      padding: 56px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: stretch;
    }

    /* Why Symphony Shield card */
    .mkt-shield {
      background: var(--accent-100);
      border-radius: var(--radius-lg);
      padding: 40px 44px;
      color: #fff;
      display: flex;
      flex-direction: column;
      gap: 28px;
      position: relative;
      overflow: hidden;
    }
    .mkt-shield::before {
      content: "";
      position: absolute;
      top: -80px; right: -80px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, color-mix(in oklab,var(--accent) 30%,transparent), transparent 70%);
      pointer-events: none;
    }
    .mkt-shield::after {
      content: "";
      position: absolute;
      bottom: -60px; left: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, color-mix(in oklab,var(--lime) 20%,transparent), transparent 70%);
      pointer-events: none;
    }
    .mkt-shield-head { display: flex; align-items: flex-start; gap: 16px; }
    .mkt-shield-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: var(--accent);
      display: grid; place-items: center;
      flex-shrink: 0;
      box-shadow: 0 8px 20px -6px rgba(48,103,232,.7);
    }
    .mkt-shield-icon svg { width: 26px; height: 26px; color: #fff; }
    .mkt-shield-title { font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); line-height: 1.15; }
    .mkt-shield-sub { font-size: 14.5px; color: var(--ink); margin-top: 5px; line-height: 1.6; }
    .mkt-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
    .mkt-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink); line-height: 1.55; }
    .mkt-bullet-icon {
      width: 22px; height: 22px; border-radius: 50%;
      background: color-mix(in oklab,var(--accent) 90%,transparent);
      border: 1.5px solid color-mix(in oklab,var(--accent) 45%,transparent);
      display: grid; place-items: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .mkt-bullet-icon svg { width: 12px; height: 12px; color: var(--accent-50); }
    .mkt-tagline { font-size: 14px; color: var(--ink); line-height: 1.6; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; margin-top: 4px; }
    .mkt-tagline strong { color: var(--ink); }

    /* Right column — stacked cards */
    .mkt-right { display: flex; flex-direction: column; gap: 20px; }

    /* Activate in 3 min card */
    .mkt-activate {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 32px 36px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 16px;
      flex: 1;
    }
    .mkt-activate-head { display: flex; align-items: center; gap: 14px; }
    .mkt-activate-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--lime-50); color: var(--lime-600);
      font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      padding: 6px 12px; border-radius: 999px;
      border: 1.5px solid color-mix(in oklab,var(--lime) 30%,transparent);
    }
    .mkt-activate-badge svg { width: 13px; height: 13px; }
    .mkt-activate-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -.015em; line-height: 1.2; }
    .mkt-activate-body { font-size: 15px; color: var(--muted); line-height: 1.7; }
    .mkt-activate-body strong { color: var(--ink); font-weight: 600; }

    /* Steps row */
    .mkt-steps { display: flex; gap: 0; margin-top: 4px; }
    .mkt-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; position: relative; }
    .mkt-step + .mkt-step::before {
      content: "";
      position: absolute; left: 0; top: 18px;
      width: 100%; height: 1.5px;
      background: linear-gradient(to right, var(--accent), color-mix(in oklab,var(--accent) 30%,var(--line)));
      transform: translateX(-50%);
    }
    .mkt-step-num {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--accent-50); color: var(--accent);
      font-weight: 700; font-size: 14px;
      display: grid; place-items: center;
      border: 2px solid var(--accent-100);
      position: relative; z-index: 1;
    }
    .mkt-step-label { font-size: 12px; color: var(--muted); font-weight: 500; }

    /* Callout banner */
    .mkt-callout {
      background: linear-gradient(135deg, var(--accent) 0%, color-mix(in oklab,var(--accent) 70%,var(--lime)) 100%);
      border-radius: var(--radius-lg);
      padding: 28px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .mkt-callout-text { display: flex; flex-direction: column; gap: 4px; }
    .mkt-callout-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); }
    .mkt-callout-headline { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: #fff; letter-spacing: -.01em; line-height: 1.2; }
    .mkt-callout-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: rgba(255,255,255,.15);
      display: grid; place-items: center;
      flex-shrink: 0;
      border: 1.5px solid rgba(255,255,255,.2);
    }
    .mkt-callout-icon svg { width: 28px; height: 28px; color: #fff; }

    /* ── TESTIMONIALS / SOCIAL PROOF ── */
    .testimonials-wrap {
      background: var(--bg);
      border-top: 1px solid var(--line-2);
      border-bottom: 1px solid var(--line-2);
    }
    .testimonials-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 52px 40px;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .testimonials-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      color: var(--lime-600);
      align-self: center;
    }
    .testimonials-eyebrow svg { color: var(--lime); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .testi-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 26px 24px 22px;
      display: flex; flex-direction: column; gap: 14px;
      box-shadow: var(--shadow-sm);
      transition: transform .2s, box-shadow .2s;
    }
    .testi-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }
    .testi-card--accent {
      background: var(--ink);
      border-color: var(--ink);
    }
    .testi-card--accent .testi-quote { color: rgba(255,255,255,.82); }
    .testi-card--accent .testi-name  { color: #fff; }
    .testi-card--accent .testi-loc   { color: rgba(255,255,255,.5); }
    .testi-stars { color: var(--lime); font-size: 15px; letter-spacing: 2px; }
    .testi-quote {
      font-size: 14.5px; color: var(--ink-2);
      line-height: 1.7; margin: 0;
      font-style: italic;
      flex: 1;
    }
    .testi-author {
      display: flex; align-items: center; gap: 12px;
      padding-top: 14px;
      border-top: 1px solid var(--line-2);
    }
    .testi-card--accent .testi-author { border-top-color: rgba(255,255,255,.12); }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      font-size: 13px; font-weight: 700;
      display: grid; place-items: center;
      flex-shrink: 0;
      letter-spacing: .03em;
    }
    .testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
    .testi-loc  { font-size: 12px; color: var(--muted); margin-top: 2px; }

    /* Counter strip */
    .proof-strip {
      display: flex; align-items: center; justify-content: center;
      gap: 0;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px 32px;
      box-shadow: var(--shadow-sm);
    }
    .proof-item {
      flex: 1; text-align: center; padding: 4px 20px;
    }
    .proof-num {
      font-family: var(--font-display);
      font-size: 26px; font-weight: 600;
      color: var(--ink); letter-spacing: -.02em; line-height: 1;
      margin-bottom: 5px;
    }
    .proof-label { font-size: 13px; color: var(--muted); }
    .proof-divider { width: 1px; height: 48px; background: var(--line); flex-shrink: 0; }

    /* ── PANEL HELPER ── */
    .panel-helper {
      display: flex; align-items: center; gap: 10px;
      margin-top: 14px;
      padding: 11px 16px;
      background: color-mix(in oklab, var(--accent-50) 60%, white);
      border: 1px solid var(--accent-100);
      border-radius: 10px;
      font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
    }
    .helper-avatar { font-size: 18px; flex-shrink: 0; }

    /* ── FLOATING HELP BUBBLE ── */
    .help-bubble {
      position: fixed; bottom: 28px; right: 28px;
      z-index: 200;
    }
    .help-face {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--accent);
      color: #fff;
      display: grid; place-items: center;
      cursor: pointer;
      box-shadow: 0 8px 24px -6px rgba(48,103,232,.65), 0 3px 8px rgba(48,103,232,.3);
      transition: transform .2s, box-shadow .2s;
    }
    .help-face:hover {
      transform: scale(1.08);
      box-shadow: 0 12px 28px -6px rgba(48,103,232,.75);
    }
    .help-tooltip {
      display: none;
      position: absolute; bottom: 64px; right: 0;
      width: 288px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: var(--shadow-lg);
      padding: 20px;
      animation: popIn .25s cubic-bezier(.34,1.56,.64,1);
    }
    .help-tooltip.open { display: block; }
    .help-tooltip-head {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 14px;
    }
    .help-rep-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--accent); color: #fff;
      font-size: 12px; font-weight: 700;
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .help-rep-name { font-size: 14px; font-weight: 600; color: var(--ink); }
    .help-rep-status { font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
    .help-rep-status .dot { width: 6px; height: 6px; }
    .help-close {
      margin-left: auto; background: none; border: none;
      font-size: 13px; color: var(--muted); cursor: pointer;
      padding: 4px 6px; border-radius: 6px; line-height: 1;
    }
    .help-close:hover { background: var(--line-2); color: var(--ink); }
    .help-msg {
      font-size: 14px; color: var(--ink-2); line-height: 1.65;
      margin: 0 0 14px;
    }
    .help-actions { display: flex; gap: 8px; }
    .help-action-btn {
      flex: 1; padding: 9px 12px;
      border-radius: 8px; font: inherit; font-size: 13px; font-weight: 600;
      background: var(--accent); color: #fff;
      border: 1px solid var(--accent);
      text-decoration: none; text-align: center;
      display: flex; align-items: center; justify-content: center; gap: 6px;
      transition: background .15s;
    }
    .help-action-btn:hover { background: var(--accent-600); }
    .help-action-btn--ghost {
      background: transparent; color: var(--ink-2);
      border-color: var(--line);
    }
    .help-action-btn--ghost:hover { background: var(--line-2); }

    @media (max-width: 960px) {
      .testimonials-inner { padding: 36px 20px; gap: 24px; }
      .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
      .proof-strip { flex-wrap: wrap; gap: 16px; padding: 20px; }
      .proof-divider { display: none; }
      .proof-item { min-width: calc(50% - 16px); }
      .help-bubble { bottom: 20px; right: 16px; }
      .help-tooltip { width: 260px; right: 0; }
    }


    .terms-section {
      border-top: 1px solid var(--line);
      background: color-mix(in oklab, var(--bg) 60%, white);
    }
    .terms-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 32px 40px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .terms-header {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .terms-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--lime-50);
      border: 1px solid color-mix(in oklab, var(--lime) 30%, transparent);
      display: grid;
      place-items: center;
      color: var(--lime-600);
      flex-shrink: 0;
    }
    .terms-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      line-height: 1;
      margin-bottom: 4px;
    }
    .terms-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -.01em;
      line-height: 1;
    }
    .terms-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-left: 54px;
    }
    .terms-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.6;
    }
    .terms-list li strong {
      color: var(--ink-2);
      font-weight: 600;
    }
    .terms-bullet {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--lime-600);
      flex-shrink: 0;
      margin-top: 7px;
    }
    @media (max-width: 960px) {
      .terms-inner { padding: 24px 20px; }
      .terms-list { padding-left: 0; }
    }
@media (max-width: 960px) {
      .marketing-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 30px 20px;
      }
      .mkt-right { gap: 14px; }
      .mkt-shield,
      .mkt-activate,
      .mkt-callout { min-width: 0; }
      .mkt-shield-head > div { min-width: 0; }
      .mkt-shield { padding: 30px 28px; }
      .mkt-activate { padding: 26px 24px; }
      .mkt-callout { padding: 22px 24px; flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 960px) {
      .main { grid-template-columns: 1fr; }
      .field-grid { grid-template-columns: 1fr; }
      .warranty-grid { grid-template-columns: 1fr; }
      .upload-grid { grid-template-columns: 1fr; }
      .top-carousel { padding: 0; }
      .top-carousel-track { min-height: 220px; }
      .top-carousel-nav { width: 42px; height: 42px; }
      .top-carousel-nav--prev { left: 14px; }
      .top-carousel-nav--next { right: 14px; }
      .hero h1 { font-size: 28px; }
      .hero-headline-row { flex-direction: column; gap: 14px; }
      .hero-no1-badge { align-self: flex-start; }
      .hero-sub { font-size: 15px; }
      .lede { font-size: 14.5px; }
      .hero, .stepper-wrap, .main { padding-inline: 20px; }
      .hero { padding-top: 32px; padding-bottom: 20px; }
      .stepper { padding: 12px; }
      .step .meta { display: none; }
      .step-sep { flex: 1; }
      .panel-body { padding: 22px 20px; }
      .panel-head { padding: 20px 20px 14px; }
      .panel-foot { padding: 16px 20px; flex-direction: column-reverse; }
      .panel-foot .btn { width: 100%; }
      .topbar { padding: 16px 20px; }
      .topbar-meta { display: none; }
    }
    @media (max-width: 760px) {
      .marketing-wrap { padding: 24px 16px; }
      .mkt-shield { padding: 24px 18px; gap: 18px; }
      .mkt-shield-head { gap: 12px; }
      .mkt-shield-icon { width: 44px; height: 44px; border-radius: 12px; }
      .mkt-shield-icon svg { width: 22px; height: 22px; }
      .mkt-shield-title { font-size: 24px; }
      .mkt-shield-sub,
      .mkt-bullets li,
      .mkt-tagline,
      .mkt-activate-body { font-size: 14px; line-height: 1.6; }
      .mkt-activate { padding: 22px 18px; gap: 14px; }
      .mkt-activate-title { font-size: 20px; line-height: 1.2; }
      .mkt-steps { margin-top: 2px; }
      .mkt-step-label { font-size: 11.5px; line-height: 1.25; }
      .mkt-callout { padding: 18px 18px; }
      .top-carousel { padding: 0; }
      .top-carousel-track {
        min-height: 0;
        aspect-ratio: 5692 / 1742;
        background: #e8ecf4;
      }
      .top-carousel-slide-shell img {
        object-fit: contain;
        background: #e8ecf4;
      }
      .top-carousel-nav { width: 36px; height: 36px; }

      .footer-inner { grid-template-columns: 1fr; padding: 36px 20px 24px; gap: 28px; }
      .footer-nav { grid-template-columns: 1fr 1fr; gap: 22px; }
      .footer-bottom { flex-direction: column; gap: 8px; padding: 16px 20px; text-align: center; }
    }
