    /* ─── DESIGN TOKENS (matches hublle-landing-v4) ─────────────── */
    :root {
      --blue-950: #0a1628;
      --blue-900: #0f1f3d;
      --blue-800: #1a3260;
      --blue-700: #1e4080;
      --blue-600: #2563eb;
      --blue-500: #3b82f6;
      --blue-400: #60a5fa;
      --blue-100: #dbeafe;
      --blue-50:  #eff6ff;
      --accent:   #0ea5e9;
      --accent-light: #e0f2fe;
      --wa-green: #25d366;
      --surface:  #f8faff;
      --white:    #ffffff;
      --text-primary: #0a1628;
      --text-secondary: #4b5e7e;
      --text-muted: #8499b8;
      --border: #e2eaf8;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --radius-full: 100px;
      --shadow-sm: 0 1px 4px rgba(10,22,40,0.07);
      --shadow-md: 0 4px 20px rgba(37,99,235,0.10);
      --shadow-lg: 0 8px 40px rgba(37,99,235,0.15);
      --shadow-blue: 0 8px 32px rgba(37,99,235,0.22);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--text-primary);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul { list-style: none; }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; }
    .section-sm { padding: 64px 0; }
    .tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--blue-50); color: var(--blue-600);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 5px 12px; border-radius: var(--radius-full);
      border: 1px solid var(--blue-100);
    }
    .section-label { text-align: center; margin-bottom: 16px; }
    .section-headline {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800; font-size: clamp(32px, 4.5vw, 48px);
      line-height: 1.15; letter-spacing: -0.02em;
      color: var(--text-primary); text-align: center;
    }
    .section-sub {
      text-align: center; font-size: 18px; color: var(--text-secondary);
      max-width: 560px; margin: 16px auto 0; line-height: 1.6;
    }
    .highlight { color: var(--blue-600); }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--blue-600); color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 700; padding: 13px 26px;
      border-radius: var(--radius-full);
      box-shadow: var(--shadow-blue);
      transition: all 0.2s ease;
    }
    .btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 12px 40px rgba(37,99,235,0.30); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--blue-600);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 600; padding: 12px 24px;
      border-radius: var(--radius-full); border: 1.5px solid var(--blue-200, #bfdbfe);
      transition: all 0.2s ease;
    }
    .btn-ghost:hover { background: var(--blue-50); border-color: var(--blue-600); }
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); color: var(--blue-700);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 700; padding: 13px 26px;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
      transition: all 0.2s ease;
    }
    .btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

    .fade-up {
      opacity: 1; transform: translateY(28px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }
    .fade-up-delay-4 { transition-delay: 0.4s; }
    .fade-up-delay-5 { transition-delay: 0.5s; }

    /* ANNOUNCEMENT */
    #announcement {
      background: linear-gradient(90deg, var(--blue-600), var(--accent));
      color: var(--white); font-size: 13px; font-weight: 500;
      text-align: center; padding: 10px 48px 10px 16px; position: relative;
    }
    #announcement a { color: var(--white); font-weight: 700; text-decoration: underline; }
    #announcement .close-ann {
      position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
      font-size: 18px; color: rgba(255,255,255,0.7); cursor: pointer; line-height: 1;
    }

    /* NAVBAR */
    #navbar {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }
    #navbar.scrolled { border-bottom-color: var(--border); background: rgba(255,255,255,0.95); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
    .nav-logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800; font-size: 22px; color: var(--blue-900);
      letter-spacing: -0.03em; display: flex; align-items: center; gap: 4px;
    }
    .nav-logo .dot { color: var(--blue-500); }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; }
    .nav-links a:hover { color: var(--blue-600); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; }
    .mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; background: var(--white); flex-direction: column; padding: 24px; }
    .mobile-menu.open { display: flex; }
    .mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
    .mobile-menu nav { display: flex; flex-direction: column; gap: 24px; }
    .mobile-menu nav a { font-size: 24px; font-weight: 700; color: var(--text-primary); }
    .mobile-menu .close-menu { font-size: 28px; cursor: pointer; color: var(--text-secondary); }
    .mobile-menu .mobile-cta { margin-top: 40px; }

    /* ─── HERO ──────────────────────────────────────────────────── */
    #hero {
      background: var(--surface);
      background-image:
        radial-gradient(ellipse 60% 40% at 70% 50%, rgba(37,99,235,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(14,165,233,0.05) 0%, transparent 60%);
      padding: 80px 0 96px;
      position: relative; overflow: hidden;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 64px;
    }
    .hero-h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800; font-size: clamp(36px, 4.5vw, 54px);
      line-height: 1.1; letter-spacing: -0.03em;
      color: var(--text-primary); margin-bottom: 20px; margin-top: 16px;
    }
    .hero-h1 .line2 { color: var(--blue-600); display: block; }
    .hero-sub {
      font-size: 18px; line-height: 1.65; color: var(--text-secondary);
      margin-bottom: 32px; max-width: 480px;
    }
    .hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
    .hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-top: 20px; }
    .hero-trust-item { display: flex; align-items: center; gap: 5px; }
    .hero-stat-strip {
      display: flex; gap: 24px; flex-wrap: wrap;
      margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border);
    }
    .hero-stat { display: flex; flex-direction: column; }
    .hero-stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px; font-weight: 800; color: var(--text-primary); line-height: 1;
    }
    .hero-stat-num .unit { font-size: 16px; color: var(--blue-600); }
    .hero-stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

    /* HERO VISUAL — WhatsApp Return Flow */
    .hero-visual { position: relative; }
    .wa-phone-shell {
      width: 100%; max-width: 380px; margin: 0 auto;
      background: #e5ddd5;
      border-radius: 24px; overflow: hidden;
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.06);
    }
    .wa-phone-header {
      background: #075e54; padding: 12px 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .wa-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: #128c7e; display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }
    .wa-contact-info { flex: 1; }
    .wa-contact-name { font-size: 14px; font-weight: 600; color: #fff; }
    .wa-contact-sub { font-size: 11px; color: rgba(255,255,255,0.6); }
    .wa-chat-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; min-height: 400px; background: #e5ddd5; background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3C/svg%3E"); }
    .wa-bubble {
      max-width: 85%; padding: 8px 12px; border-radius: 10px;
      font-size: 12px; line-height: 1.5; position: relative;
    }
    .wa-bubble.in {
      background: #fff; align-self: flex-start;
      border-bottom-left-radius: 3px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    .wa-bubble.out {
      background: #dcf8c6; align-self: flex-end;
      border-bottom-right-radius: 3px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    .wa-bubble.bot {
      background: #fff; align-self: flex-start;
      border-bottom-left-radius: 3px; border-left: 3px solid #25d366;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    .wa-bubble-time { font-size: 9px; color: #999; margin-top: 3px; text-align: right; }
    .wa-bubble strong { color: #075e54; }
    .wa-bubble .wa-list-item {
      display: flex; align-items: center; gap: 6px;
      padding: 5px 8px; background: rgba(7,94,84,0.06); border-radius: 6px;
      margin-top: 4px; font-size: 11px; font-weight: 600; color: #075e54;
      cursor: pointer; transition: background 0.15s;
    }
    .wa-bubble .wa-list-item:hover { background: rgba(7,94,84,0.12); }
    .wa-bubble .wa-list-item .wa-item-num {
      width: 18px; height: 18px; border-radius: 50%; background: #075e54;
      color: #fff; font-size: 9px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .wa-auto-badge {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 9px; font-weight: 700; color: #16a34a;
      background: #dcfce7; border-radius: 4px; padding: 2px 6px;
      margin-bottom: 3px;
    }
    .wa-ticket-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-md); padding: 12px 14px; margin-top: 4px;
    }
    .wa-ticket-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
    .wa-ticket-label { font-size: 10px; color: var(--text-muted); }
    .wa-ticket-value { font-size: 11px; font-weight: 700; color: var(--text-primary); }
    .wa-status-pill {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px;
    }
    .wa-status-pill.approved { background: #dcfce7; color: #16a34a; }
    .wa-status-pill.pending { background: #fef9c3; color: #854d0e; }
    .wa-status-pill.pickup { background: var(--blue-50); color: var(--blue-700); }
    .hero-float-badges {
      position: absolute; right: -20px; top: 60px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .float-badge {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-md); padding: 10px 14px;
      box-shadow: var(--shadow-md); font-size: 12px; white-space: nowrap;
      display: flex; align-items: center; gap: 8px;
    }
    .float-badge .fb-icon { font-size: 18px; }
    .float-badge-title { font-weight: 700; color: var(--text-primary); font-size: 11px; }
    .float-badge-sub { font-size: 10px; color: var(--text-muted); }
    @keyframes floatBadge1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
    @keyframes floatBadge2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
    .float-badge:nth-child(1) { animation: floatBadge1 3.5s ease-in-out infinite; }
    .float-badge:nth-child(2) { animation: floatBadge2 4.2s ease-in-out infinite 0.8s; }

    /* ─── DAY IN THE LIFE: SCROLL-DRIVEN TIMELINE ───────────────── */
    #pain-solution { background: var(--blue-950); padding: 80px 0 0; overflow: hidden; }
    #pain-solution .section-headline { color: var(--white); }
    #pain-solution .section-sub { color: rgba(255,255,255,0.45); }
    #pain-solution .tag { background: rgba(255,255,255,0.08); color: var(--blue-400); border-color: rgba(255,255,255,0.1); }

    .ditl-sticky-wrap {
      position: sticky; top: 0;
      background: var(--blue-950);
      z-index: 2;
      padding-bottom: 24px;
    }
    .ditl-scroll-driver {
      /* Only enough height for scroll-driven steps; next section follows with minimal gap */
      height: 120vh;
      pointer-events: none;
      position: relative;
      z-index: 0;
    }
    .ditl-scroll-hint {
      text-align: center; font-size: 14px; color: rgba(255,255,255,0.4);
      margin-top: 20px; padding-bottom: 16px;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      flex-wrap: wrap;
    }
    .ditl-scroll-hint-icon {
      animation: ditlScrollBounce 2s ease-in-out infinite;
    }
    @keyframes ditlScrollBounce {
      0%, 100% { transform: translateY(0); opacity: 0.7; }
      50% { transform: translateY(4px); opacity: 1; }
    }
    .ditl-time-chips {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
      margin-top: 16px; padding: 0 8px 8px;
    }
    .ditl-time-chip {
      padding: 8px 14px; border-radius: var(--radius-full);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      cursor: pointer; transition: all 0.2s ease;
    }
    .ditl-time-chip:hover {
      color: var(--white); background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
    }
    .ditl-time-chip.active {
      color: var(--white); background: var(--blue-600);
      border-color: var(--blue-400);
      box-shadow: 0 0 20px rgba(37,99,235,0.35);
    }

    /* Column headers */
    .ditl-cols {
      display: grid; grid-template-columns: 1fr 80px 1fr;
      gap: 0; margin-top: 48px; margin-bottom: 0;
    }
    .ditl-col-header {
      padding: 14px 20px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      display: flex; align-items: center; gap: 10px;
    }
    .ditl-col-header.bad  { background: rgba(220,38,38,0.12); border: 1.5px solid rgba(220,38,38,0.2); border-bottom: none; }
    .ditl-col-header.good { background: rgba(22,163,74,0.12);  border: 1.5px solid rgba(22,163,74,0.2);  border-bottom: none; }
    .ditl-col-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .ditl-col-dot.red   { background: #dc2626; box-shadow: 0 0 8px #dc2626; }
    .ditl-col-dot.green { background: #16a34a; box-shadow: 0 0 8px #16a34a;
      animation: livePulse 2s ease-in-out infinite; }
    @keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
    .ditl-col-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; }
    .ditl-col-label.red   { color: #fca5a5; }
    .ditl-col-label.green { color: #86efac; }
    .ditl-divider-head { display: flex; align-items: flex-end; justify-content: center; padding-bottom: 12px; }
    .ditl-vs { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.2); }

    /* Timeline scroll container */
    .ditl-scroll {
      display: grid; grid-template-columns: 1fr 80px 1fr;
      gap: 0; position: relative;
    }
    .ditl-left-col, .ditl-right-col {
      display: flex; flex-direction: column;
    }
    .ditl-left-col  { border: 1.5px solid rgba(220,38,38,0.2); border-top: none; border-radius: 0 0 0 var(--radius-lg); background: rgba(220,38,38,0.04); }
    .ditl-right-col { border: 1.5px solid rgba(22,163,74,0.2);  border-top: none; border-radius: 0 0 var(--radius-lg) 0; background: rgba(22,163,74,0.04); }

    /* Center time spine */
    .ditl-spine {
      display: flex; flex-direction: column; align-items: center;
      position: relative; padding-top: 0;
    }
    .ditl-spine-line {
      position: absolute; top: 0; bottom: 0; left: 50%;
      width: 2px; background: rgba(255,255,255,0.07); transform: translateX(-50%);
    }

    /* Time node */
    .ditl-time-node {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ditl-time-bubble {
      background: var(--blue-800); border: 1.5px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-full); padding: 6px 12px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.5);
      white-space: nowrap; transition: all 0.3s;
    }
    .ditl-time-bubble.active {
      background: var(--blue-600); border-color: var(--blue-400);
      color: var(--white); box-shadow: 0 0 16px rgba(37,99,235,0.4);
    }

    /* Event row */
    .ditl-row {
      display: contents;
    }
    .ditl-event {
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      opacity: 0.4; transition: opacity 0.4s, background 0.3s;
      min-height: 80px; display: flex; flex-direction: column; justify-content: center;
    }
    .ditl-event:last-child { border-bottom: none; }
    .ditl-event.active { opacity: 1; }
    .ditl-event.active.bad-event  { background: rgba(220,38,38,0.07); }
    .ditl-event.active.good-event { background: rgba(22,163,74,0.07); }

    .ditl-event-head {
      display: flex; align-items: center; gap: 8px; margin-bottom: 5px;
    }
    .ditl-event-icon { font-size: 16px; flex-shrink: 0; }
    .ditl-event-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 800;
    }
    .ditl-event.bad-event  .ditl-event-title { color: #fca5a5; }
    .ditl-event.good-event .ditl-event-title { color: #86efac; }
    .ditl-event-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.5; padding-left: 24px; }
    .ditl-event.active .ditl-event-desc { color: rgba(255,255,255,0.6); }

    .ditl-event-tag {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 12px; font-weight: 700; padding: 4px 10px;
      border-radius: var(--radius-full); margin-top: 6px; margin-left: 24px;
      width: fit-content;
    }
    .ditl-event-tag.cost  { background: rgba(220,38,38,0.2);  color: #fca5a5; }
    .ditl-event-tag.saved { background: rgba(22,163,74,0.2);   color: #86efac; }
    .ditl-event-tag.bot   { background: rgba(37,99,235,0.2);   color: var(--blue-400); }

    /* Spine node spacer matching row height */
    .ditl-spine-node {
      display: flex; align-items: center; justify-content: center;
      padding: 18px 0; min-height: 80px; border-bottom: 1px solid rgba(255,255,255,0.05);
      position: relative; z-index: 1;
    }
    .ditl-spine-node:last-child { border-bottom: none; }

    /* Bottom totals bar */
    .ditl-totals {
      display: grid; grid-template-columns: 1fr 80px 1fr;
      gap: 0; margin-top: 0;
    }
    .ditl-total-cell {
      padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
    }
    .ditl-total-cell.bad  { background: rgba(220,38,38,0.15); border: 1.5px solid rgba(220,38,38,0.25); border-top: none; border-radius: 0 0 0 var(--radius-lg); }
    .ditl-total-cell.good { background: rgba(22,163,74,0.15);  border: 1.5px solid rgba(22,163,74,0.25);  border-top: none; border-radius: 0 0 var(--radius-lg) 0; }
    .ditl-total-divider { background: rgba(255,255,255,0.03); border-left: 1px solid rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06); }
    .ditl-total-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.4); }
    .ditl-total-val {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 24px; font-weight: 800;
    }
    .ditl-total-val.red   { color: #f87171; }
    .ditl-total-val.green { color: #4ade80; }

    @media (max-width: 768px) {
      .ditl-cols, .ditl-scroll, .ditl-totals { grid-template-columns: 1fr; }
      .ditl-spine, .ditl-divider-head, .ditl-total-divider { display: none; }
      .ditl-left-col { border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-bottom: none; }
      .ditl-right-col { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-top: none; }
      .ditl-col-header.bad { border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-bottom: none; }
      .ditl-col-header.good { border-radius: 0; }
      .ditl-total-cell.bad { border-radius: 0; }
      .ditl-total-cell.good { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
    }

    /* ─── HOW IT WORKS — FLOW ────────────────────────────────────── */
    #how-it-works { background: var(--blue-900); }
    #how-it-works .section-headline { color: var(--white); }
    #how-it-works .section-sub { color: rgba(255,255,255,0.5); }
    .flow-steps-container { margin-top: 56px; }
    .flow-step-row {
      display: grid; grid-template-columns: 80px 1fr 1fr; gap: 32px;
      align-items: center; padding: 32px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .flow-step-row:last-child { border-bottom: none; }
    .flow-step-num-col { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .flow-step-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(37,99,235,0.2); border: 2px solid var(--blue-500);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800; font-size: 18px; color: var(--blue-400);
    }
    .flow-step-line { width: 2px; height: 32px; background: rgba(37,99,235,0.2); }
    .flow-step-row:last-child .flow-step-num-col .flow-step-line { display: none; }
    .flow-step-visual {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg); padding: 20px; min-height: 120px;
    }
    .flow-step-content { }
    .flow-step-tag {
      font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--blue-400); margin-bottom: 6px;
    }
    .flow-step-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px;
    }
    .flow-step-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
    .flow-step-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
    .flow-chip {
      font-size: 11px; font-weight: 600; padding: 4px 10px;
      border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.5);
    }
    .flow-chip.green { border-color: rgba(37,211,102,0.3); color: #4ade80; }
    .flow-chip.blue { border-color: rgba(96,165,250,0.3); color: #93c5fd; }
    .flow-chip.purple { border-color: rgba(167,139,250,0.3); color: #c4b5fd; }
    .flow-chip.yellow { border-color: rgba(252,211,77,0.3); color: #fcd34d; }
    .flow-step-visual {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg); padding: 20px; min-height: 120px;
    }

    /* ─── FEATURE CARDS ─────────────────────────────────────────── */
    .feat-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin-top: 48px;
    }
    .feat-card {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius-xl); padding: 24px 22px;
      transition: box-shadow 0.2s, transform 0.2s; position: relative;
      overflow: hidden;
    }
    .feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .feat-card-featured {
      border-color: var(--blue-400);
      background: linear-gradient(150deg, #eff6ff 0%, #fff 100%);
    }
    .feat-card-badge {
      display: inline-block; font-size: 10px; font-weight: 800;
      letter-spacing: 0.05em; color: var(--blue-600);
      background: var(--blue-50); border: 1px solid var(--blue-100);
      padding: 3px 10px; border-radius: var(--radius-full);
      margin-bottom: 12px;
    }
    .feat-card-top {
      display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
    }
    .feat-card-icon { font-size: 22px; flex-shrink: 0; }
    .feat-card-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px; font-weight: 800; color: var(--text-primary);
      line-height: 1.3;
    }
    .feat-card-desc {
      font-size: 14px; color: var(--text-secondary); line-height: 1.6;
      margin-top: 10px; margin-bottom: 14px;
    }
    .feat-card-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    .feat-chip {
      font-size: 11px; font-weight: 600; padding: 4px 10px;
      border-radius: var(--radius-full);
      background: var(--surface); border: 1px solid var(--border);
      color: var(--text-secondary);
    }
    .feat-chip.green { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
    .feat-chip.red   { background: #fff5f5; border-color: #fecaca; color: #dc2626; }
    @media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

    /* ─── FEATURES + ADMIN MERGED ───────────────────────────────── */
    #features { background: var(--surface); }
    #admin-setup { display: none; }
    .cp-layout {
      display: grid; grid-template-columns: 300px 1fr;
      gap: 20px; margin-top: 48px; align-items: start;
    }
    .cp-pills { display: flex; flex-direction: column; gap: 6px; }
    .cp-pill {
      display: flex; align-items: center; gap: 12px;
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius-md); padding: 12px 14px;
      cursor: pointer; transition: all 0.2s;
    }
    .cp-pill:hover { border-color: var(--blue-400); }
    .cp-pill.active {
      border-color: var(--blue-500); background: var(--blue-50);
      box-shadow: 0 2px 12px rgba(37,99,235,0.12);
    }
    .cp-pill-icon { font-size: 20px; flex-shrink: 0; width: 32px; text-align: center; }
    .cp-pill-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.2;
    }
    .cp-pill.active .cp-pill-title { color: var(--blue-700); }
    .cp-pill-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
    .cp-pill-hint { font-size: 10px; color: var(--text-muted); margin-top: 3px; opacity: 0.7; }
    .cp-pill-arrow { margin-left: auto; font-size: 16px; color: var(--border); transition: all 0.2s; flex-shrink: 0; }
    .cp-pill.active .cp-pill-arrow { color: var(--blue-500); transform: translateX(2px); }
    @media (max-width: 900px) {
      .cp-layout { grid-template-columns: 1fr; }
    }
    .admin-preview-panel {
      background: var(--blue-950); border-radius: var(--radius-xl);
      overflow: hidden; box-shadow: var(--shadow-lg);
    }
    .admin-panel-header {
      background: var(--blue-900); padding: 16px 20px;
      display: flex; align-items: center; gap: 10px;
    }
    .admin-panel-dots { display: flex; gap: 5px; }
    .admin-panel-dot { width: 9px; height: 9px; border-radius: 50%; }
    .admin-panel-dot-r { background: #ff5f57; }
    .admin-panel-dot-y { background: #febc2e; }
    .admin-panel-dot-g { background: #28c840; }
    .admin-panel-title { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; flex: 1; text-align: center; }
    .admin-panel-body { padding: 24px; min-height: 340px; }
    /* Panel Content Styles */
    .panel-section-title { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 14px; }
    .panel-form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
    .panel-form-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); }
    .panel-form-field {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 10px 14px;
      font-size: 12px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px;
    }
    .panel-form-field-value { flex: 1; }
    .panel-form-field-badge {
      font-size: 10px; font-weight: 700; padding: 2px 8px;
      border-radius: 20px; background: rgba(37,99,235,0.3); color: var(--blue-400);
    }
    .panel-reasons-grid { display: flex; flex-direction: column; gap: 6px; }
    .panel-reason-item {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.05); border-radius: 8px; padding: 10px 14px;
      border: 1px solid rgba(255,255,255,0.07);
    }
    .panel-reason-icon { font-size: 14px; }
    .panel-reason-text { flex: 1; font-size: 12px; color: rgba(255,255,255,0.7); }
    .panel-reason-auto {
      font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 20px;
    }
    .panel-reason-auto.auto { background: rgba(34,197,94,0.2); color: #4ade80; }
    .panel-reason-auto.manual { background: rgba(251,191,36,0.15); color: #fcd34d; }
    .panel-toggle-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 14px; background: rgba(255,255,255,0.05);
      border-radius: 8px; border: 1px solid rgba(255,255,255,0.07); margin-bottom: 6px;
    }
    .panel-toggle-label { font-size: 12px; color: rgba(255,255,255,0.7); }
    .panel-toggle { width: 34px; height: 18px; border-radius: 20px; background: var(--blue-600); position: relative; cursor: pointer; }
    .panel-toggle::after { content: ''; position: absolute; top: 3px; right: 3px; width: 12px; height: 12px; border-radius: 50%; background: #fff; }
    .panel-toggle.off { background: rgba(255,255,255,0.12); }
    .panel-toggle.off::after { right: auto; left: 3px; }
    .panel-logistics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .panel-logi-item {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px; padding: 10px 12px; display: flex; align-items: center; gap: 8px;
    }
    .panel-logi-item.active { border-color: var(--blue-500); background: rgba(37,99,235,0.15); }
    .panel-logi-icon { font-size: 16px; }
    .panel-logi-name { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); }
    .panel-logi-sub { font-size: 10px; color: rgba(255,255,255,0.3); }
    .panel-logi-check { width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,0.08); margin-left: auto; }
    .panel-logi-item.active .panel-logi-check { background: var(--blue-500); display: flex; align-items: center; justify-content: center; }
    .panel-logi-item.active .panel-logi-check::after { content: '✓'; font-size: 9px; color: #fff; font-weight: 800; }
    .panel-refund-options { display: flex; flex-direction: column; gap: 8px; }
    .panel-refund-option {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 8px; padding: 12px 14px;
    }
    .panel-refund-option.selected { border-color: var(--blue-500); background: rgba(37,99,235,0.15); }
    .panel-refund-radio { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); flex-shrink: 0; }
    .panel-refund-option.selected .panel-refund-radio { border-color: var(--blue-400); background: var(--blue-500); }
    .panel-refund-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); flex: 1; }
    .panel-refund-desc { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 1px; }
    .panel-refund-option.selected .panel-refund-name { color: var(--white); }

    /* ─── ROI CALCULATOR ─────────────────────────────────────────── */
    #roi-calculator { background: var(--blue-950); }
    #roi-calculator .section-headline { color: var(--white); }
    #roi-calculator .section-sub { color: rgba(255,255,255,0.5); }
    .calc-shell {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-xl); padding: 48px; margin-top: 48px;
    }
    .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
    .calc-inputs-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 24px;
    }
    .calc-field { margin-bottom: 20px; }
    .calc-label {
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
      margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center;
    }
    .calc-label-hint { font-size: 11px; color: rgba(255,255,255,0.25); font-weight: 400; }
    .calc-input {
      width: 100%; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-md); padding: 12px 16px;
      font-size: 16px; font-weight: 700; color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      outline: none; transition: border-color 0.2s;
    }
    .calc-input:focus { border-color: var(--blue-500); background: rgba(255,255,255,0.09); }
    .calc-input::placeholder { color: rgba(255,255,255,0.2); font-weight: 400; font-size: 14px; }
    .calc-input-prefix {
      position: relative;
    }
    .calc-input-prefix::before {
      content: '₹'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
      font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.4); pointer-events: none;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .calc-input-prefix input { padding-left: 30px; }
    .calc-cta { margin-top: 8px; }
    .calc-cta button {
      width: 100%; padding: 14px; background: var(--blue-600); color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
      border-radius: var(--radius-full); border: none; cursor: pointer;
      box-shadow: var(--shadow-blue); transition: all 0.2s;
    }
    .calc-cta button:hover { background: var(--blue-700); transform: translateY(-1px); }
    .calc-results { opacity: 0; transition: opacity 0.5s ease; }
    .calc-results.visible { opacity: 1; }
    .calc-results-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 24px;
      display: flex; align-items: center; gap: 8px;
    }
    .calc-stat-cards { display: flex; flex-direction: column; gap: 14px; }
    .calc-stat-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg); padding: 20px 24px;
    }
    .calc-stat-card.highlight-card {
      background: rgba(37,99,235,0.15); border-color: var(--blue-500);
    }
    .calc-stat-card-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
    .calc-stat-card-value {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 32px; font-weight: 800; color: var(--white); line-height: 1;
    }
    .calc-stat-card.highlight-card .calc-stat-card-value { color: #4ade80; }
    .calc-stat-card-sub { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 4px; }
    .calc-breakdown {
      background: rgba(255,255,255,0.03); border-radius: var(--radius-md);
      padding: 16px 18px; font-size: 13px; color: rgba(255,255,255,0.45);
      line-height: 1.7; margin-top: 14px; border: 1px solid rgba(255,255,255,0.06);
    }
    .calc-breakdown strong { color: rgba(255,255,255,0.8); }

    /* ─── COMPARE TABLE ─────────────────────────────────────────── */
    #compare { background: var(--surface); }
    .compare-table-wrap { margin-top: 48px; overflow-x: auto; }
    .compare-table {
      width: 100%; border-collapse: collapse;
      font-size: 14px;
    }
    .compare-table th {
      padding: 14px 20px; text-align: center;
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 13px;
      border-bottom: 2px solid var(--border);
    }
    .compare-table th:first-child { text-align: left; }
    .compare-table th.hublle-th {
      background: var(--blue-50); color: var(--blue-700);
      border-left: 2px solid var(--blue-200, #bfdbfe);
      border-right: 2px solid var(--blue-200, #bfdbfe);
      border-top: 2px solid var(--blue-500); border-radius: 4px 4px 0 0;
    }
    .compare-table td {
      padding: 13px 20px; text-align: center;
      border-bottom: 1px solid var(--border); color: var(--text-secondary);
    }
    .compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text-primary); }
    .compare-table td.hublle-td {
      background: #eff6ff; color: var(--blue-700); font-weight: 700;
      border-left: 2px solid #bfdbfe; border-right: 2px solid #bfdbfe;
    }
    .compare-table tr:nth-child(even) td { background: var(--white); }
    .compare-table tr:nth-child(even) td.hublle-td { background: #dbeafe; }
    .compare-table .yes { color: #16a34a; font-size: 16px; font-weight: 700; }
    .compare-table .no { color: #dc2626; font-size: 16px; }
    .compare-table .partial { color: #d97706; font-size: 14px; }

    /* ─── TESTIMONIAL / PROOF ───────────────────────────────────── */
    #social-proof { background: var(--white); }
    .proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .proof-card {
      background: var(--surface); border: 1.5px solid var(--border);
      border-radius: var(--radius-xl); padding: 32px 28px;
    }
    .proof-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; }
    .proof-quote { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
    .proof-author { display: flex; align-items: center; gap: 12px; }
    .proof-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700; color: var(--white);
    }
    .proof-name { font-weight: 700; font-size: 14px; color: var(--text-primary); }
    .proof-store { font-size: 12px; color: var(--text-muted); }
    .proof-stat-row {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
      border: 1.5px solid var(--border); border-radius: var(--radius-xl);
      overflow: hidden; margin-top: 48px;
    }
    .proof-stat-item {
      padding: 32px; text-align: center;
      border-right: 1px solid var(--border);
    }
    .proof-stat-item:last-child { border-right: none; }
    .proof-stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 40px; font-weight: 800; color: var(--blue-600); line-height: 1;
    }
    .proof-stat-lbl { font-size: 14px; color: var(--text-secondary); margin-top: 6px; }

    /* ─── FAQ ──────────────────────────────────────────────────── */
    #faq { background: var(--surface); }
    .faq-list { max-width: 760px; margin: 48px auto 0; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%; text-align: left; padding: 22px 0;
      font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700;
      color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; gap: 12px;
      cursor: pointer; background: transparent; border: none;
    }
    .faq-q .faq-icon { font-size: 20px; color: var(--blue-600); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a-inner { padding-bottom: 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

    /* ─── BOTTOM CTA ─────────────────────────────────────────────── */
    #bottom-cta {
      background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 100%);
      padding: 96px 0; text-align: center; position: relative; overflow: hidden;
    }
    #bottom-cta::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(14,165,233,0.15), transparent 60%);
    }
    .bottom-cta-inner { position: relative; z-index: 1; }
    .bottom-cta-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 24px; }
    .bottom-cta-h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(32px,4vw,48px); line-height: 1.15; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px; }
    .bottom-cta-sub { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 36px; }
    .bottom-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .bottom-trust { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 24px; }
    .bottom-trust-item { display: flex; align-items: center; gap: 5px; }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    footer { background: var(--blue-950); padding: 48px 0 32px; }
    .footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
    .footer-brand { max-width: 240px; }
    .footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; color: var(--white); letter-spacing: -0.03em; margin-bottom: 10px; }
    .footer-logo .dot { color: var(--blue-400); }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.5; }
    .footer-links-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
    .footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-links-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .footer-links-col a:hover { color: var(--white); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; margin-top: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

    /* ─── RESPONSIVE ────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { max-width: 380px; margin: 0 auto; }
      .hero-float-badges { display: none; }
      .admin-layout { grid-template-columns: 1fr; }
      .proof-grid { grid-template-columns: 1fr; }
      .calc-grid { grid-template-columns: 1fr; }
      .flow-step-row { grid-template-columns: 60px 1fr; }
      .flow-step-visual { display: none; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .proof-stat-row { grid-template-columns: 1fr; }
      .proof-stat-item { border-right: none; border-bottom: 1px solid var(--border); }
      .proof-stat-item:last-child { border-bottom: none; }
      .game-score-bar { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .calc-shell { padding: 28px 20px; }
      .game-score-bar { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .container { padding-left: 16px; padding-right: 16px; }
      .section { padding: 56px 0; }
      .flow-step-row { grid-template-columns: 1fr; gap: 16px; }
      .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .calc-shell { padding: 28px 20px; }
      .bottom-cta-h2 { font-size: clamp(26px, 5vw, 36px); }
      .bottom-cta-btns { flex-direction: column; }
      .bottom-cta-btns .btn-primary, .bottom-cta-btns .btn-white { width: 100%; justify-content: center; }
    }
