    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

    * { font-family: 'Inter', sans-serif; }

    /* ============================================================
       DARK MODE (DEFAULT) — Brand Navy #122960 + Brand Red #DC2626
       ============================================================ */
    :root {
      --brand-navy: #122960;
      --brand-navy-deep: #0a1a3a;
      --brand-navy-soft: #1a3570;
      --brand-red: #DC2626;
      --brand-red-dark: #B91C1C;
      --brand-red-light: #f87171;
      --brand-red-tint: rgba(220, 38, 38, 0.08);
      --brand-red-border: rgba(220, 38, 38, 0.2);

      --text-primary: #ffffff;
      --text-secondary: #cbd5e1;
      --text-muted: #94a3b8;
      --text-dim: #64748b;

      --bg-page: #0a1a3a;
      --bg-card: rgba(255, 255, 255, 0.03);
      --bg-card-hover: rgba(255, 255, 255, 0.06);
      --bg-elevated: rgba(18, 41, 96, 0.5);
      --border-subtle: rgba(255, 255, 255, 0.06);
      --border-medium: rgba(255, 255, 255, 0.1);

      --logo-filter: brightness(0) invert(1);
    }

    /* ============================================================
       LIGHT MODE OVERRIDES
       ============================================================ */
    body.light-mode {
      --text-primary: #122960;
      --text-secondary: #334155;
      --text-muted: #475569;
      --text-dim: #64748b;

      --bg-page: #f8fafc;
      --bg-card: #ffffff;
      --bg-card-hover: #ffffff;
      --bg-elevated: #ffffff;
      --border-subtle: #e2e8f0;
      --border-medium: #cbd5e1;

      /* Logo becomes deep navy in light mode (from any base color) */
      --logo-filter: brightness(0) saturate(100%) invert(13%) sepia(60%) saturate(3100%) hue-rotate(215deg) brightness(92%) contrast(96%);
    }

    /* ============================================================
       SECTION BACKGROUNDS
       ============================================================ */
    .bg-hero-gradient {
      background: radial-gradient(ellipse at 20% 50%, #122960 0%, #0a1a3a 70%);
    }
    .bg-problem-gradient {
      background: radial-gradient(ellipse at 80% 20%, #122960 0%, #0a1a3a 70%);
    }
    .bg-how-gradient {
      background: radial-gradient(ellipse at 50% 80%, #122960 0%, #0a1a3a 70%);
    }
    .bg-diff-gradient {
      background: radial-gradient(ellipse at 70% 30%, #1a3570 0%, #0a1a3a 100%);
    }
    .bg-pricing-gradient {
      background: radial-gradient(ellipse at 30% 70%, #122960 0%, #0a1a3a 100%);
    }
    .bg-faq-gradient {
      background: radial-gradient(ellipse at 50% 50%, #1a3570 0%, #0a1a3a 100%);
    }
    .bg-footer-gradient {
      background: #0a1a3a;
    }

    /* Light mode section backgrounds */
    body.light-mode .bg-hero-gradient {
      background: radial-gradient(ellipse at 20% 50%, #ffffff 0%, #f1f5f9 100%);
    }
    body.light-mode .bg-problem-gradient {
      background: radial-gradient(ellipse at 80% 20%, #f8fafc 0%, #eef2f7 100%);
    }
    body.light-mode .bg-how-gradient {
      background: radial-gradient(ellipse at 50% 80%, #ffffff 0%, #f1f5f9 100%);
    }
    body.light-mode .bg-diff-gradient {
      background: radial-gradient(ellipse at 70% 30%, #f8fafc 0%, #eef2f7 100%);
    }
    body.light-mode .bg-pricing-gradient {
      background: radial-gradient(ellipse at 30% 70%, #ffffff 0%, #f1f5f9 100%);
    }
    body.light-mode .bg-faq-gradient {
      background: radial-gradient(ellipse at 50% 50%, #f8fafc 0%, #eef2f7 100%);
    }

    /* ============================================================
       BRAND RED GLOWS
       ============================================================ */
    .bg-glow-1 { background: radial-gradient(ellipse at 70% 20%, rgba(220, 38, 38, 0.10) 0%, transparent 60%); }
    .bg-glow-2 { background: radial-gradient(ellipse at 30% 80%, rgba(220, 38, 38, 0.07) 0%, transparent 50%); }
    .bg-glow-3 { background: radial-gradient(ellipse at 90% 60%, rgba(220, 38, 38, 0.08) 0%, transparent 50%); }
    .bg-glow-4 { background: radial-gradient(ellipse at 20% 30%, rgba(220, 38, 38, 0.06) 0%, transparent 50%); }
    .bg-glow-5 { background: radial-gradient(ellipse at 80% 80%, rgba(220, 38, 38, 0.09) 0%, transparent 50%); }
    .bg-glow-6 { background: radial-gradient(ellipse at 20% 50%, rgba(220, 38, 38, 0.07) 0%, transparent 50%); }

    body.light-mode .bg-glow-1,
    body.light-mode .bg-glow-2,
    body.light-mode .bg-glow-3,
    body.light-mode .bg-glow-4,
    body.light-mode .bg-glow-5,
    body.light-mode .bg-glow-6 {
      opacity: 0.4;
    }

    /* ============================================================
       CARDS
       ============================================================ */
    .value-card, .problem-card, .leakage-card, .step-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      transition: all 0.35s ease;
    }
    .value-card:hover, .problem-card:hover, .step-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--brand-red-border);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.35);
    }
    body.light-mode .value-card:hover,
    body.light-mode .problem-card:hover,
    body.light-mode .step-card:hover {
      box-shadow: 0 12px 30px -10px rgba(18, 41, 96, 0.12);
    }
    .leakage-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--brand-red-border);
      transform: translateX(4px);
    }
    .step-number {
      background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
      border: 1px solid rgba(220, 38, 38, 0.3);
    }
    body.light-mode .step-number {
      background: #fee2e2;
      border-color: #fecaca;
      color: #B91C1C !important;
    }

    /* ============================================================
       TABLE
       ============================================================ */
    .diff-table td, .diff-table th {
      padding: 1rem 0.75rem;
      border-bottom: 1px solid var(--border-subtle);
    }
    .diff-table tr:last-child td { border-bottom: none; }

    body.light-mode .diff-table thead { background: #f1f5f9 !important; border-color: #e2e8f0 !important; }
    body.light-mode .diff-table td { border-color: #e2e8f0 !important; }

    /* ============================================================
       SLIDER
       ============================================================ */
    input[type="range"] {
      -webkit-appearance: none; appearance: none;
      width: 100%; height: 6px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: 4px; outline: none;
    }
    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none; appearance: none;
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--brand-red); cursor: pointer;
      box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
      transition: transform 0.2s;
    }
    input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
    input[type="range"]::-moz-range-thumb {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--brand-red); cursor: pointer; border: none;
    }
    body.light-mode input[type="range"] { background: #cbd5e1; }

    /* ============================================================
       FAQ
       ============================================================ */
    details summary::-webkit-details-marker { display: none; }
    details summary {
      list-style: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
    }
    details summary .fa-chevron-down { transition: transform 0.3s ease; }
    details[open] summary .fa-chevron-down { transform: rotate(180deg); }

    /* ============================================================
       BUTTONS — Brand Red #DC2626
       ============================================================ */
    .btn-primary, .btn-cta-problem, .btn-how {
      background: var(--brand-red);
      box-shadow: 0 8px 28px rgba(220, 38, 38, 0.25);
      transition: all 0.3s ease;
      color: #ffffff;
    }
    .btn-primary:hover, .btn-cta-problem:hover, .btn-how:hover {
      background: var(--brand-red-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: #e2e8f0;
      transition: all 0.3s ease;
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.22);
      transform: translateY(-2px);
    }
    body.light-mode .btn-secondary {
      background: #ffffff;
      border-color: #cbd5e1;
      color: #122960;
      box-shadow: 0 2px 8px rgba(18, 41, 96, 0.06);
    }
    body.light-mode .btn-secondary:hover {
      background: #f1f5f9;
      border-color: #94a3b8;
    }

    /* ============================================================
       TRUST PILLS
       ============================================================ */
    .trust-pill {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      backdrop-filter: blur(4px);
      color: var(--text-secondary);
    }
    body.light-mode .trust-pill {
      background: #ffffff;
      border-color: #e2e8f0;
      color: #334155;
      box-shadow: 0 2px 8px rgba(18, 41, 96, 0.04);
    }

    /* ============================================================
       ANNOUNCEMENT BAR
       ============================================================ */
    .announcement-bar {
      background: rgba(220, 38, 38, 0.10);
      border: 1px solid rgba(220, 38, 38, 0.25);
    }
    .announcement-text { color: #fca5a5; }
    .announcement-text strong { color: #f87171; }
    body.light-mode .announcement-bar {
      background: #fef2f2;
      border-color: #fecaca;
    }
    body.light-mode .announcement-text { color: #991b1b; }
    body.light-mode .announcement-text strong { color: #B91C1C; }

    /* ============================================================
       LIGHT MODE TEXT OVERRIDES (Tailwind class overrides)
       ============================================================ */
    body.light-mode .text-white { color: #122960 !important; }
    body.light-mode .text-gray-100 { color: #1e293b !important; }
    body.light-mode .text-gray-200 { color: #334155 !important; }
    body.light-mode .text-gray-300 { color: #475569 !important; }
    body.light-mode .text-gray-400 { color: #64748b !important; }
    body.light-mode .text-amber-400,
    body.light-mode .text-amber-400\/80,
    body.light-mode .text-amber-400\/90,
    body.light-mode .text-amber-400\/60,
    body.light-mode .text-amber-300 {
      color: #B91C1C !important;
    }

    /* Light-mode container backgrounds */
    body.light-mode .bg-white\/5,
    body.light-mode .bg-white\/10,
    body.light-mode .bg-\[\#132a45\]\/50,
    body.light-mode .bg-\[\#132a45\]\/40,
    body.light-mode .bg-\[\#0f172a\]\/60 {
      background-color: #ffffff !important;
      border-color: #e2e8f0 !important;
      box-shadow: 0 10px 30px -8px rgba(18, 41, 96, 0.08) !important;
    }

    /* Light-mode section label pills */
    body.light-mode .bg-amber-500\/5,
    body.light-mode .bg-amber-500\/10,
    body.light-mode .bg-amber-500\/20 {
      background-color: #fef2f2 !important;
      border-color: #fecaca !important;
    }

    /* Light-mode red badges stay red-tinted */
    body.light-mode .bg-red-500\/10 { background-color: #fef2f2 !important; }
    body.light-mode .bg-red-500\/20 { background-color: #fee2e2 !important; }

    /* Light-mode card icons */
    body.light-mode .bg-amber-500\/10 {
      background-color: #fef2f2 !important;
    }

    /* ============================================================
       LOGO — Works in both modes regardless of source color
       ============================================================ */
    #siteLogo,
    #footerLogo {
      filter: var(--logo-filter);
      transition: filter 0.4s ease;
    }

    /* ============================================================
       THEME TOGGLE — Modern Sun/Moon Pill Switch
       ============================================================ */
    .theme-toggle-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.9rem 0.5rem 0.75rem;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #e2e8f0;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(8px);
    }
    .theme-toggle-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(220, 38, 38, 0.4);
      transform: translateY(-1px);
    }
    body.light-mode .theme-toggle-btn {
      background: #ffffff;
      border-color: #cbd5e1;
      color: #122960;
      box-shadow: 0 2px 10px rgba(18, 41, 96, 0.08);
    }
    body.light-mode .theme-toggle-btn:hover {
      background: #f1f5f9;
      border-color: #94a3b8;
    }

    .theme-toggle-btn .toggle-icon-wrap {
      position: relative;
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .theme-toggle-btn .icon-sun,
    .theme-toggle-btn .icon-moon {
      position: absolute;
      font-size: 13px;
      transition: all 0.4s ease;
    }
    /* Dark mode (default): show moon, hide sun */
    .theme-toggle-btn .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.6); }
    .theme-toggle-btn .icon-moon { opacity: 1; transform: rotate(0) scale(1); color: #fca5a5; }
    /* Light mode: show sun, hide moon */
    body.light-mode .theme-toggle-btn .icon-sun { opacity: 1; transform: rotate(0) scale(1); color: #B91C1C; }
    body.light-mode .theme-toggle-btn .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.6); }

    /* ============================================================
       SMOOTH COLOR TRANSITION ON THEME SWITCH
       ============================================================ */
    body, body * {
      transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
    }
    /* But don't transition things that would cause jank */
    .btn-primary, .btn-cta-problem, .btn-how, .btn-secondary,
    input[type="range"]::-webkit-slider-thumb {
      transition: all 0.3s ease;
    }

    /* ============================================================
       FADE-UP ANIMATION
       ============================================================ */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 640px) {
      .value-card, .problem-card, .step-card { padding: 1rem 1.25rem; }
      .diff-table td, .diff-table th { padding: 0.75rem 0.5rem; font-size: 0.8rem; }
    }

    /* Mobile Comparison Cards Light Mode */
    body.light-mode .diff-mobile-card {
      background-color: #ffffff !important;
      border-color: #e2e8f0 !important;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    }
    body.light-mode .diff-mobile-card .bg-rose-500\/10 {
      background-color: #fef2f2 !important;
      border-color: #fecdd3 !important;
      color: #9f1239 !important;
    }
    body.light-mode .diff-mobile-card .bg-rose-500\/10 .text-rose-400 {
      color: #be123c !important;
    }
    body.light-mode .diff-mobile-card .bg-emerald-500\/10 {
      background-color: #ecfdf5 !important;
      border-color: #a7f3d0 !important;
      color: #065f46 !important;
    }
    body.light-mode .diff-mobile-card .bg-emerald-500\/10 .text-emerald-400 {
      color: #047857 !important;
    }

    /* ============================================================
       PRODUCT DEMO SECTION
       ============================================================ */
    .bg-demo-gradient {
      background: radial-gradient(ellipse at 60% 40%, #0f1f4a 0%, #080f28 100%);
    }
    body.light-mode .bg-demo-gradient {
      background: radial-gradient(ellipse at 60% 40%, #eef2f7 0%, #f8fafc 100%);
    }
    .demo-screenshot-wrap {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
    }
    body.light-mode .demo-screenshot-wrap {
      border-color: #cbd5e1;
      box-shadow: 0 40px 80px -20px rgba(18,41,96,0.15);
    }
    .demo-browser-bar {
      height: 36px;
      background: rgba(18,41,96,0.92);
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 0 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    body.light-mode .demo-browser-bar { background: #dde3f0; border-bottom-color: #cbd5e1; }
    .demo-browser-dot { width: 10px; height: 10px; border-radius: 50%; }
    .demo-feature-chip {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 14px; border-radius: 999px;
      font-size: 0.72rem; font-weight: 600;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      color: #cbd5e1;
    }
    body.light-mode .demo-feature-chip {
      background: #ffffff; border-color: #e2e8f0; color: #475569;
      box-shadow: 0 2px 6px rgba(18,41,96,0.06);
    }

    /* ============================================================
       BEFORE / AFTER SECTION
       ============================================================ */
    .bg-ba-gradient {
      background: radial-gradient(ellipse at 20% 70%, #1a0a0a 0%, #0a1a3a 80%);
    }
    body.light-mode .bg-ba-gradient {
      background: radial-gradient(ellipse at 20% 70%, #fff8f8 0%, #f8fafc 100%);
    }
    .ba-before-card {
      background: rgba(220,38,38,0.06);
      border: 1px solid rgba(220,38,38,0.18);
      border-radius: 16px;
      padding: 1.5rem;
    }
    body.light-mode .ba-before-card { background: #fff5f5; border-color: #fecaca; }
    .ba-after-card {
      background: rgba(16,185,129,0.06);
      border: 1px solid rgba(16,185,129,0.18);
      border-radius: 16px;
      padding: 1.5rem;
    }
    body.light-mode .ba-after-card { background: #f0fdf4; border-color: #a7f3d0; }
    .ba-row {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 0.875rem; line-height: 1.4;
    }
    .ba-row:last-child { border-bottom: none; }
    body.light-mode .ba-row { border-bottom-color: rgba(0,0,0,0.05); }

    /* ============================================================
       SOCIAL PROOF / TESTIMONIALS
       ============================================================ */
    .bg-proof-gradient {
      background: radial-gradient(ellipse at 80% 30%, #0d1f4a 0%, #0a1a3a 70%);
    }
    body.light-mode .bg-proof-gradient {
      background: radial-gradient(ellipse at 80% 30%, #f8fafc 0%, #eef2f7 100%);
    }
    .testimonial-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; padding: 1.5rem;
      transition: all 0.35s ease;
      display: flex; flex-direction: column;
    }
    .testimonial-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(220,38,38,0.25);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px -12px rgba(0,0,0,0.4);
    }
    body.light-mode .testimonial-card {
      background: #ffffff; border-color: #e2e8f0;
      box-shadow: 0 4px 20px rgba(18,41,96,0.06);
    }
    body.light-mode .testimonial-card:hover {
      box-shadow: 0 16px 40px -12px rgba(18,41,96,0.14);
      border-color: #fca5a5;
    }
    .stat-bar-item {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px; padding: 1.25rem 1.5rem; text-align: center;
    }
    body.light-mode .stat-bar-item {
      background: #ffffff; border-color: #e2e8f0;
      box-shadow: 0 2px 8px rgba(18,41,96,0.05);
    }

    /* ============================================================
       TRUST AGENCY STRIP
       ============================================================ */
    .agency-strip-item {
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.05em; color: rgba(255,255,255,0.25);
      text-transform: uppercase; white-space: nowrap;
    }
    body.light-mode .agency-strip-item { color: rgba(18,41,96,0.3); }

    /* ============================================================
       RISK REVERSAL STRIP
       ============================================================ */
    .risk-strip {
      background: rgba(16,185,129,0.06);
      border: 1px solid rgba(16,185,129,0.18);
      border-radius: 12px; padding: 1rem 1.5rem;
    }
    body.light-mode .risk-strip { background: #f0fdf4; border-color: #a7f3d0; }

    /* Modal Light Mode */
    body.light-mode #demoModal > div {
      background-color: #ffffff !important;
      border-color: #e2e8f0 !important;
      color: #122960 !important;
      box-shadow: 0 25px 50px -12px rgba(18, 41, 96, 0.25) !important;
    }
    body.light-mode #demoModal input,
    body.light-mode #demoModal select {
      background-color: #f8fafc !important;
      border-color: #cbd5e1 !important;
      color: #122960 !important;
    }
    body.light-mode #demoModal label {
      color: #475569 !important;
    }
    body.light-mode #demoModal #closeDemoModalBtn {
      background-color: #f1f5f9 !important;
      color: #122960 !important;
    }

    /* Datepicker Icon Visibility & Contrast Fix */
    input[type="date"] {
      color-scheme: dark;
    }
    input[type="date"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
      filter: invert(0.9);
      opacity: 0.85;
      padding: 2px;
      transition: opacity 0.2s ease, filter 0.2s ease;
    }
    input[type="date"]::-webkit-calendar-picker-indicator:hover {
      opacity: 1;
    }

    body.light-mode input[type="date"] {
      color-scheme: light !important;
    }
    body.light-mode input[type="date"]::-webkit-calendar-picker-indicator {
      filter: invert(0) !important;
      opacity: 0.8;
    }
    body.light-mode input[type="date"]::-webkit-calendar-picker-indicator:hover {
      opacity: 1;
    }

    /* ============================================================
       BRAND COLOR UTILITIES: WHATSAPP & TRACK ITINERARY
       ============================================================ */
    .brand-whatsapp {
      color: #25D366 !important;
      font-weight: inherit;
    }
    body.light-mode .brand-whatsapp {
      color: #128C7E !important;
      font-weight: inherit;
    }

    .brand-ti {
      color: var(--brand-red, #DC2626) !important;
      font-weight: inherit;
    }
    body.light-mode .brand-ti {
      color: var(--brand-red, #DC2626) !important;
      font-weight: inherit;
    }
  


      /* Product Demo Steps */
        #demo .container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

        #demo .max-width-700 {
            max-width: 56rem;
            margin: 0 auto;
        }

        .demo-section-label {
            display: inline-block;
            margin-bottom: 0.75rem;
            padding: 0.25rem 0.875rem;
            border-radius: 999px;
            border: 1px solid rgba(220, 38, 38, 0.2);
            background: rgba(220, 38, 38, 0.1);
            color: var(--brand-red-light);
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        #demo h2 {
            color: var(--text-primary);
            font-size: 2rem;
            line-height: 1.1;
            font-weight: 900;
            letter-spacing: 0;
            margin: 0;
        }

        #demo .max-width-700 > p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
            max-width: 48rem;
            margin: 1rem auto 0;
        }

        .demo-steps-wrap {
            margin-top: 4rem;
            display: grid;
            gap: 2rem;
        }

        .demo-step {
            display: flex;
            align-items: center;
            gap: 3rem;
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--border-subtle);
            box-shadow: 0 24px 60px -36px rgba(0, 0, 0, 0.75);
            transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
        }

        .demo-step:hover {
            background: var(--bg-card-hover);
            border-color: var(--brand-red-border);
            transform: translateY(-4px);
            box-shadow: 0 28px 70px -34px rgba(0, 0, 0, 0.85);
        }

        .demo-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .demo-content {
            flex: 1;
            min-width: 0;
        }

        /* .demo-content h3 {
            margin: 0 0 0.875rem;
            color: var(--brand-red-light);
            font-size: 1.25rem;
            line-height: 1.25;
            font-weight: 800;
            letter-spacing: 0;
        } */

        .demo-content p {
            color: var(--text-secondary);
            font-size: 0.98rem;
            line-height: 1.7;
            margin: 0;
        }

        .demo-content p + p {
            margin-top: 0.475rem;
        }

        .demo-content strong {
            color: var(--text-primary);
        }

        .demo-visual {
            flex: 1;
            min-width: 0;
            padding: 0.625rem;
            border-radius: 14px;
            border: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .demo-visual img {
            width: 100%;
            display: block;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.8);
        }

        .chat-bubble {
            position: relative;
            background: linear-gradient(135deg, #25D366, #1fb85a);
            color: #052e16;
            padding: 1rem;
            border-radius: 14px 14px 14px 4px;
            max-width: 90%;
            margin: 1.25rem 0 1rem;
            font-size: 0.95rem;
            line-height: 1.55;
            box-shadow: 0 12px 28px -18px rgba(37, 211, 102, 0.7);
        }

        .chat-bubble strong {
            color: #052e16;
        }
/* 
        .crm-record {
            display: grid;
            gap: 0.45rem;
            background: rgba(18, 41, 96, 0.5);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
            color: var(--text-secondary);
            font-size: 0.875rem;
            line-height: 1.55;
        } */

        /* .crm-record p {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            color: var(--text-secondary);
        } */
.crm-record {
    background: #334155;
    padding: 16px;
    border-radius: 8px; 
}
         
.crm-record p{
 font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
         

        body.light-mode .demo-section-label {
            background: #fef2f2;
            border-color: #fecaca;
            color: #B91C1C;
        }

        body.light-mode .demo-step {
            background: #ffffff;
            border-color: #e2e8f0;
            box-shadow: 0 18px 45px -28px rgba(18, 41, 96, 0.3);
        }

        body.light-mode .demo-step:hover {
            border-color: #fca5a5;
            box-shadow: 0 24px 60px -30px rgba(18, 41, 96, 0.35);
        }

        body.light-mode .demo-visual,
        body.light-mode .crm-record {
            background: #f8fafc;
            border-color: #e2e8f0;
        }

        body.light-mode .demo-visual img {
            border-color: #cbd5e1;
            box-shadow: 0 18px 40px -28px rgba(18, 41, 96, 0.5);
        }

        body.light-mode .crm-record p {
            color: #334155;
        }

        body.light-mode .crm-record span {
            color: #64748b;
        }

        @media (min-width: 640px) {
            #demo .container {
                padding: 0 1.5rem;
            }

            #demo h2 {
                font-size: 2.5rem;
            }

            .demo-content h3 {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            #demo .container {
                padding: 0 2rem;
            }

            #demo h2 {
                font-size: 3rem;
            }

            .demo-content h3 {
                font-size: 1.625rem;
            }
        }

        @media (max-width: 900px) {
            .demo-step,
            .demo-step:nth-child(even) {
                flex-direction: column;
                align-items: stretch;
            }
        }

        @media (max-width: 640px) {
            .demo-steps-wrap {
                margin-top: 2.5rem;
                gap: 1.25rem;
            }

            .demo-step {
                padding: 1.25rem;
                gap: 1.25rem;
                border-radius: 14px;
            }

            .demo-visual {
                padding: 0.5rem;
            }

            .chat-bubble {
                max-width: 100%;
            }

            .crm-record p {
                display: block;
            }
        }

        /* How It Works */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .step-card {
            background: var(--bg-card);
            padding: 32px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--bg-light);
            transition: transform 0.3s ease;
        }
        .step-card:hover { transform: translateY(-5px); }

        .step-num {
            background: var(--accent-red);
            color: var(--text-white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: bold;
        }

    /* ============================================================
       FIXED SPLIT THEME: DARK HERO + CALM LIGHT PAGE
       ============================================================ */
    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body.split-theme {
      color-scheme: light;
      background: #f6f8fb;
      color: #122960;
      overflow-x: hidden;
    }

    body.split-theme .theme-toggle-btn {
      display: none !important;
    }

    body.split-theme .bg-hero-gradient {
      background:
        radial-gradient(ellipse at 20% 35%, rgba(220, 38, 38, 0.13) 0%, transparent 46%),
        radial-gradient(ellipse at 82% 8%, rgba(37, 211, 102, 0.08) 0%, transparent 38%),
        linear-gradient(160deg, #102657 0%, #0a1a3a 58%, #071226 100%) !important;
      color: #ffffff;
    }

    body.split-theme .bg-hero-gradient .bg-glow-1,
    body.split-theme .bg-hero-gradient .bg-glow-2 {
      opacity: 0.55;
    }

    body.split-theme .bg-hero-gradient .text-white,
    body.split-theme .bg-hero-gradient .text-gray-100 {
      color: #ffffff !important;
    }

    body.split-theme .bg-hero-gradient .text-gray-200,
    body.split-theme .bg-hero-gradient .text-gray-300,
    body.split-theme .bg-hero-gradient .text-gray-300\/90 {
      color: #d8e0ec !important;
    }

    body.split-theme .bg-hero-gradient .text-gray-400 {
      color: #aebbd0 !important;
    }

    body.split-theme .bg-hero-gradient .text-gray-500 {
      color: #8898b2 !important;
    }

    body.split-theme .bg-hero-gradient .text-amber-400,
    body.split-theme .bg-hero-gradient .text-amber-400\/90,
    body.split-theme .bg-hero-gradient .text-amber-400\/80,
    body.split-theme .bg-hero-gradient .text-amber-400\/60 {
      color: #f8c35d !important;
    }

    body.split-theme .bg-hero-gradient .value-card {
      background: rgba(255, 255, 255, 0.055);
      border-color: rgba(255, 255, 255, 0.11);
      box-shadow: 0 18px 44px -30px rgba(0, 0, 0, 0.8);
    }

    body.split-theme .bg-hero-gradient .value-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(220, 38, 38, 0.35);
    }

    body.split-theme .bg-hero-gradient *,
    body.split-theme section:not(:first-of-type) * {
      box-sizing: border-box;
    }

    body.split-theme .bg-hero-gradient .max-w-7xl,
    body.split-theme .bg-hero-gradient .max-w-5xl,
    body.split-theme .bg-hero-gradient .max-w-4xl,
    body.split-theme .bg-hero-gradient .max-w-3xl {
      width: 100%;
      max-width: min(100%, calc(100vw - 2rem)) !important;
      min-width: 0;
    }

    body.split-theme .bg-hero-gradient .flex,
    body.split-theme .bg-hero-gradient .grid,
    body.split-theme .bg-hero-gradient .value-card,
    body.split-theme .bg-hero-gradient .value-card > div {
      min-width: 0;
    }

    body.split-theme #siteLogo {
      filter: brightness(0) invert(1) !important;
    }

    body.split-theme .hero-image-container {
      width: 100%;
      max-width: 68rem;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 28px 70px -34px rgba(0, 0, 0, 0.9);
    }

    body.split-theme .hero-image-container img {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
    }

    body.split-theme .bg-hero-gradient h1,
    body.split-theme .bg-hero-gradient p,
    body.split-theme section:not(:first-of-type) h2,
    body.split-theme section:not(:first-of-type) h3,
    body.split-theme section:not(:first-of-type) p {
      overflow-wrap: anywhere;
    }

    body.split-theme .bg-hero-gradient .inline-flex.items-center.gap-2 {
      max-width: 100%;
      white-space: normal;
      flex-wrap: wrap;
      justify-content: center;
    }

    body.split-theme .bg-hero-gradient .inline-flex.items-center.gap-2 > span {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    body.split-theme .bg-demo-gradient,
    body.split-theme .bg-how-gradient,
    body.split-theme .bg-proof-gradient,
    body.split-theme .bg-faq-gradient {
      background: #f8fafc !important;
    }

    body.split-theme .bg-problem-gradient,
    body.split-theme .bg-diff-gradient,
    body.split-theme .bg-pricing-gradient,
    body.split-theme .bg-ba-gradient {
      background: #eef3f8 !important;
    }

    body.split-theme .bg-footer-gradient {
      background: #f8fafc !important;
    }

    body.split-theme section:not(:first-of-type) > [class*="bg-glow"] {
      display: none;
    }

    body.split-theme section:not(:first-of-type),
    body.split-theme footer {
      border-color: #e3e9f1 !important;
    }

    body.split-theme section:not(:first-of-type) .text-white,
    body.split-theme footer .text-white {
      color: #122960 !important;
    }

    body.split-theme section:not(:first-of-type) .text-gray-100,
    body.split-theme footer .text-gray-100 {
      color: #1e293b !important;
    }

    body.split-theme section:not(:first-of-type) .text-gray-200,
    body.split-theme section:not(:first-of-type) .text-gray-300,
    body.split-theme footer .text-gray-200,
    body.split-theme footer .text-gray-300 {
      color: #334155 !important;
    }

    body.split-theme section:not(:first-of-type) .text-gray-400,
    body.split-theme section:not(:first-of-type) .text-gray-500,
    body.split-theme footer .text-gray-400,
    body.split-theme footer .text-gray-500 {
      color: #5f6f84 !important;
    }

    body.split-theme section:not(:first-of-type) .text-amber-400,
    body.split-theme section:not(:first-of-type) .text-amber-400\/90,
    body.split-theme section:not(:first-of-type) .text-amber-400\/80,
    body.split-theme section:not(:first-of-type) .text-amber-400\/60,
    body.split-theme section:not(:first-of-type) .text-amber-300,
    body.split-theme footer .text-amber-400 {
      color: #b91c1c !important;
    }

    body.split-theme .value-card,
    body.split-theme .problem-card,
    body.split-theme .leakage-card,
    body.split-theme .demo-step,
    body.split-theme .testimonial-card,
    body.split-theme .stat-bar-item,
    body.split-theme .diff-mobile-card,
    body.split-theme .ba-before-card,
    body.split-theme .ba-after-card,
    body.split-theme .risk-strip {
      border-radius: 8px !important;
    }

    body.split-theme section:not(:first-of-type) .value-card,
    body.split-theme section:not(:first-of-type) .problem-card,
    body.split-theme section:not(:first-of-type) .leakage-card,
    body.split-theme section:not(:first-of-type) .demo-step,
    body.split-theme section:not(:first-of-type) .testimonial-card,
    body.split-theme section:not(:first-of-type) .stat-bar-item,
    body.split-theme section:not(:first-of-type) .diff-mobile-card {
      background: #ffffff !important;
      border-color: #dfe7f0 !important;
      box-shadow: 0 14px 38px -28px rgba(18, 41, 96, 0.22) !important;
    }

    body.split-theme section:not(:first-of-type) [style*="background: rgba(255,255,255"],
    body.split-theme section:not(:first-of-type) [style*="background: rgba(18, 41, 96"],
    body.split-theme section:not(:first-of-type) [style*="background: rgba(255, 255, 255"],
    body.split-theme footer [style*="background: rgba(255,255,255"],
    body.split-theme footer [style*="background: rgba(18, 41, 96"] {
      background: #ffffff !important;
      border-color: #dfe7f0 !important;
      box-shadow: 0 14px 40px -30px rgba(18, 41, 96, 0.22);
    }

    body.split-theme section:not(:first-of-type) [style*="border-color: rgba(255,255,255"],
    body.split-theme footer [style*="border-color: rgba(255,255,255"] {
      border-color: #dfe7f0 !important;
    }

    body.split-theme .bg-white\/5,
    body.split-theme .bg-white\/10,
    body.split-theme .bg-\[\#132a45\]\/50,
    body.split-theme .bg-\[\#132a45\]\/40,
    body.split-theme .bg-\[\#0f172a\]\/60 {
      background-color: #ffffff !important;
      border-color: #dfe7f0 !important;
    }

    body.split-theme .bg-hero-gradient .bg-white\/5,
    body.split-theme .bg-hero-gradient .bg-white\/10 {
      background-color: rgba(255, 255, 255, 0.06) !important;
      border-color: rgba(255, 255, 255, 0.12) !important;
    }

    /* The demo modal sits at body level (outside any section) but keeps its
       dark panel design — re-assert it so the light-mode remaps above don't
       turn its inputs into white-on-white */
    body.split-theme #demoModal {
      color-scheme: dark;
    }
    body.split-theme #demoModal .bg-white\/5,
    body.split-theme #demoModal .bg-white\/10 {
      background-color: rgba(255, 255, 255, 0.06) !important;
      border-color: rgba(255, 255, 255, 0.15) !important;
    }

    body.split-theme .bg-amber-500\/5,
    body.split-theme .bg-amber-500\/10,
    body.split-theme .bg-amber-500\/20,
    body.split-theme .bg-red-500\/10,
    body.split-theme .bg-red-500\/20 {
      background-color: #f0fdf4 !important;
      border-color: #fecdd3 !important;
    }

    body.split-theme .bg-hero-gradient .bg-red-500\/10,
    body.split-theme .bg-hero-gradient .bg-amber-500\/10 {
      background-color: rgba(220, 38, 38, 0.12) !important;
      border-color: rgba(220, 38, 38, 0.26) !important;
    }

    body.split-theme .demo-feature-chip {
      background: #ffffff;
      border-color: #dfe7f0;
      color: #475569;
    }

    body.split-theme .diff-table thead {
      background: #eef3f8 !important;
    }

    body.split-theme .diff-table td,
    body.split-theme .diff-table th {
      border-color: #dfe7f0 !important;
    }

    body.split-theme details summary {
      gap: 1rem;
      line-height: 1.45;
    }

    body.split-theme .btn-primary,
    body.split-theme .btn-cta-problem,
    body.split-theme .btn-how {
      border-radius: 10px;
      box-shadow: 0 10px 24px -12px rgba(220, 38, 38, 0.72);
      min-height: 48px;
    }

    body.split-theme .btn-primary:hover,
    body.split-theme .btn-cta-problem:hover,
    body.split-theme .btn-how:hover {
      box-shadow: 0 12px 30px -14px rgba(220, 38, 38, 0.82);
    }

    body.split-theme p {
      letter-spacing: 0;
    }

    @media (max-width: 768px) {
      body.split-theme .bg-hero-gradient {
        min-height: auto;
      }

      body.split-theme .bg-hero-gradient > .relative {
        padding-top: 1.5rem !important;
        padding-bottom: 3rem !important;
      }

      body.split-theme .bg-hero-gradient h1 {
        font-size: 2.35rem !important;
        line-height: 1.12 !important;
        margin-bottom: 1rem !important;
      }

      body.split-theme section:not(:first-of-type) {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
      }

      body.split-theme h2 {
        font-size: 2rem !important;
        line-height: 1.18 !important;
      }

      body.split-theme h3 {
        line-height: 1.25 !important;
      }

      body.split-theme p {
        font-size: 0.98rem;
        line-height: 1.7;
      }

      body.split-theme .btn-primary,
      body.split-theme .btn-cta-problem,
      body.split-theme .btn-how {
        width: 100%;
        justify-content: center;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        text-align: center;
      }

      body.split-theme .agency-strip-item {
        white-space: normal;
        line-height: 1.4;
        text-align: center;
      }

      body.split-theme .agency-strip-item,
      body.split-theme .demo-feature-chip {
        font-size: 0.75rem;
      }

      body.split-theme .demo-feature-chip {
        width: 100%;
        justify-content: center;
      }

      body.split-theme #billingToggleWrapper {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
      }

      body.split-theme #billingMonthlyBtn,
      body.split-theme #billingAnnualBtn {
        flex: 1 1 8rem;
        justify-content: center;
      }

      body.split-theme #savingsBanner,
      body.split-theme .risk-strip {
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      body.split-theme .bg-hero-gradient h1 {
        font-size: 2.05rem !important;
      }

      body.split-theme h2 {
        font-size: 1.75rem !important;
      }

      body.split-theme .bg-hero-gradient .inline-flex.rounded-full {
        align-items: flex-start;
        border-radius: 8px !important;
        text-align: left;
      }

      body.split-theme .hero-image-container {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
      }

      body.split-theme .value-card,
      body.split-theme .problem-card,
      body.split-theme .leakage-card,
      body.split-theme .demo-step,
      body.split-theme .testimonial-card,
      body.split-theme .diff-mobile-card {
        padding: 1rem !important;
      }

      body.split-theme .diff-mobile-card .p-3 {
        padding: 0.875rem !important;
      }

      body.split-theme details summary span {
        min-width: 0;
      }

      body.split-theme footer .flex {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
      }
    }



        
