:root {
    --bg: #161D33;
    --bg-1: #1E2747;
    --bg-2: #283358;
    --bg-elevated: #303C68;
    --bg-input: #11172A;

    --border: rgba(255,255,255,0.07);
    --border-bright: rgba(255,255,255,0.15);
    --border-card: rgba(255,255,255,0.12);
    --border-blue: rgba(96,165,250,0.4);

    --text: #ECEFF7;
    --text-secondary: #A6AEC4;
    --text-muted: #757D98;

    --brand: #3B82F6;
    --brand-bright: #60A5FA;
    --brand-deep: #2563EB;
    --brand-glow: rgba(59,130,246,0.2);

    --success: #22C55E;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; height: 100%; }
body { min-height: 100%; display: flex; flex-direction: column; }
  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; }

  body::before {
    content: '';
    position: fixed;
    top: -300px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 700px;
    background: radial-gradient(ellipse at center, var(--brand-glow), transparent 65%);
    pointer-events: none;
    z-index: 0;
  }

  /* ============ LOGO ============ */
  .brand { display: inline-flex; align-items: center; gap: 10px; }
  .brand-icon {
    width: 30px; height: 30px;
    background-image: url('/assets/logo_img.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
  }
  .brand-text {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .brand-text .cv { color: var(--text); }
  .brand-text .applyr { color: var(--brand); }

  /* ============ NEW NAV ============ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 40px;
    background: rgba(22, 29, 51, 0.72);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .nav-links {
    display: flex;
    gap: 2px;
    flex: 1;
    justify-content: center;
    margin-left: 48px;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 9px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
  }
  .nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
  }
  .nav-cta { display: flex; gap: 10px; align-items: center; }

  body > #app-header + * {
    padding-top: 88px;
  }
  @media (max-width: 768px) {
    body > #app-header + * {
      padding-top: 76px;
    }
  }

  /* Hamburger button — mobile only */
  .menu-btn {
    display: none;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-bright);
    border-radius: 10px;
    cursor: pointer;
    align-items: center; justify-content: center;
    padding: 0;
    transition: all 0.2s;
  }
  .menu-btn:hover { background: rgba(255,255,255,0.1); }
  .menu-btn-icon {
    display: block; position: relative;
    width: 16px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.2s;
  }
  .menu-btn-icon::before, .menu-btn-icon::after {
    content: ''; position: absolute; left: 0;
    width: 100%; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.2s;
  }
  .menu-btn-icon::before { top: -6px; }
  .menu-btn-icon::after { top: 6px; }
  .menu-btn.open .menu-btn-icon { background: transparent; }
  .menu-btn.open .menu-btn-icon::before { top: 0; transform: rotate(45deg); }
  .menu-btn.open .menu-btn-icon::after { top: 0; transform: rotate(-45deg); }

  /* Mobile menu panel */
  .mobile-menu {
    position: fixed;
    top: 70px; left: 12px; right: 12px;
    z-index: 99;
    background: rgba(22, 29, 51, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: 10px;
    transition: background 0.15s;
  }
  .mobile-menu a:hover { background: rgba(255,255,255,0.05); }
  .mobile-menu a + a { border-top: 1px solid var(--border); }
  .mobile-menu .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .mobile-menu .mobile-cta a {
    justify-content: center;
    border-top: none !important;
  }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    font-size: 13.5px; font-weight: 600;
    font-family: inherit;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-ghost {
    background: transparent; color: var(--text-secondary);
    border-color: var(--border-bright);
  }
  .btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
  .btn-primary {
    background: var(--brand); color: #fff;
    box-shadow: 0 4px 14px rgba(59,130,246,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  .btn-primary:hover {
    background: var(--brand-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(59,130,246,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  .btn-lg { padding: 14px 26px; font-size: 14.5px; }
  .arrow { display: inline-block; transition: transform 0.2s; }
  .btn:hover .arrow { transform: translateX(2px); }

  /* ============ HERO ============ */
  .hero {
    position: relative; z-index: 1;
    padding: 140px 48px 39px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px 6px 6px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 100px;
    font-size: 12.5px; font-weight: 500;
    color: var(--brand-bright);
    margin-bottom: 28px;
  }
  .hero-eyebrow .tag {
    background: var(--brand);
    color: #fff;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px; font-weight: 600;
  }

  .hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .hero h1 .accent { color: var(--brand); }
  .hero h1 .gradient {
    background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero p.lede {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 36px;
  }
  .hero-cta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

  .trust-row {
    display: flex; align-items: center; gap: 18px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    max-width: 480px;
  }
  .avatars { display: flex; }
  .avatar {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
  }
  .avatar:nth-child(1) { background: linear-gradient(135deg, #C9A96E, #8B6F3F); margin-left: 0; }
  .avatar:nth-child(2) { background: linear-gradient(135deg, #60A5FA, #1E40AF); }
  .avatar:nth-child(3) { background: linear-gradient(135deg, #A78BFA, #6D28D9); }
  .avatar:nth-child(4) { background: linear-gradient(135deg, #E6E9F2, #6B7290); }
  .trust-text { font-size: 13px; color: var(--text-muted); font-weight: 500; }
  .trust-text strong {
    color: var(--text);
    display: block; font-weight: 600;
    margin-bottom: 2px; letter-spacing: -0.01em;
  }
  .star { color: #FBBF24; }

  /* ============ HERO IMAGE ============ */
  .hero-visual {
    position: relative;
    height: 620px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-1);
    border: 1px solid var(--border-card);
  }
  .hero-image {
    position: absolute; inset: 0;
    background-image: url('/assets/Swati.jpg');
    background-size: cover;
    background-position: center 30%;
  }
  .hero-image::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, transparent 35%, rgba(22,29,51,0.45) 75%, rgba(22,29,51,0.8) 100%),
      linear-gradient(90deg, rgba(22,29,51,0.25) 0%, transparent 35%);
  }

  /* ============ GLASS FLOATING CARDS ============ */
  .float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow:
      0 20px 50px rgba(0,0,0,0.35),
      inset 0 1px 0 rgba(255,255,255,0.15);
    z-index: 3;
    color: #fff;
  }
  .float-card.notif {
    top: 28px; left: 24px;
    display: flex; align-items: center; gap: 12px;
    animation: float 6s ease-in-out infinite;
    max-width: calc(100% - 48px);
  }
  .notif-icon {
    width: 34px; height: 34px; border-radius: 10px;
    background: rgba(34,197,94,0.22);
    border: 1px solid rgba(34,197,94,0.5);
    color: #86EFAC;
    display: grid; place-items: center;
    font-size: 16px; font-weight: 700;
    flex-shrink: 0;
  }
  .notif-text { font-size: 12.5px; min-width: 0; font-weight: 500; }
  .notif-text strong { display: block; font-size: 13px; color: #fff; font-weight: 600; }
  .notif-text span { color: rgba(255,255,255,0.65); font-size: 11.5px; font-weight: 500; }

  .float-card.stat {
    bottom: 32px; right: 24px;
    min-width: 180px;
    animation: float 7s ease-in-out infinite reverse;
  }
  .stat-num {
    font-size: 34px; line-height: 1;
    font-weight: 700; letter-spacing: -0.03em;
    color: var(--brand-bright);
  }
  .stat-label {
    font-size: 11px; color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
    font-weight: 500;
  }
  .stat-spark {
    margin-top: 12px;
    display: flex; align-items: flex-end; gap: 3px;
    height: 24px;
  }
  .stat-spark span {
    flex: 1;
    background: linear-gradient(180deg, var(--brand-bright), var(--brand));
    border-radius: 2px;
    opacity: 0.85;
  }
  .stat-spark span:nth-child(1) { height: 30%; }
  .stat-spark span:nth-child(2) { height: 45%; }
  .stat-spark span:nth-child(3) { height: 35%; }
  .stat-spark span:nth-child(4) { height: 60%; }
  .stat-spark span:nth-child(5) { height: 75%; }
  .stat-spark span:nth-child(6) { height: 90%; }
  .stat-spark span:nth-child(7) { height: 100%; opacity: 1; }

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

  /* ============ POWERED-BY STRIP ============ */
  .powered {
    padding: 29px 48px 32px;
    text-align: center;
    position: relative; z-index: 1;
  }
  .powered p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .powered-row {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 14px 26px;
    background: var(--bg-1);
    border: 1px solid var(--border-card);
    border-radius: 100px;
  }
  .gemini-icon {
    width: 22px; height: 22px;
    display: inline-grid; place-items: center;
    border-radius: 50%;
    background: conic-gradient(from 180deg, #4285F4, #EA4335, #FBBC05, #34A853, #4285F4);
    position: relative;
  }
  .gemini-icon::after {
    content: '';
    position: absolute; inset: 4px;
    background: var(--bg-1);
    border-radius: 50%;
  }
  .gemini-icon::before {
    content: ''; position: absolute; inset: 6px;
    background: conic-gradient(from 0deg, #4285F4, #EA4335, #FBBC05, #34A853, #4285F4);
    border-radius: 50%;
    z-index: 1;
  }
  .powered-row strong { font-weight: 700; letter-spacing: -0.01em; font-size: 15px; }
  .powered-row span { color: var(--text-secondary); font-size: 14px; font-weight: 500; }

  /* ============ SECTION HEAD ============ */
  .section-head {
    max-width: 720px;
    margin: 0 auto 72px;
    text-align: center;
  }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 100px;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-bright);
    margin-bottom: 20px;
  }
  .section-head h2 {
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 18px;
  }
  .section-head h2 .accent { color: var(--brand); }
  .section-head p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
  }

  /* ============ FEATURES ============ */
  .features { padding: 100px 48px; position: relative; z-index: 1; }
  .feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
  }
  .feature {
    background: var(--bg-1);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .feature:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  }
  .feature.wide { grid-column: span 7; min-height: 380px; }
  .feature.narrow { grid-column: span 5; min-height: 380px; }
  .feature.third { grid-column: span 4; min-height: 280px; }

  .feature-icon {
    width: 44px; height: 44px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.3);
    color: var(--brand-bright);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 18px; font-weight: 700;
    margin-bottom: 24px;
  }
  .feature h3 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .feature p {
    color: var(--text-secondary);
    font-size: 14.5px;
    margin-bottom: 24px;
  }

  .demo-terminal {
    background: var(--bg);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    overflow-x: auto;
  }
  .demo-tab {
    display: flex; gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .demo-tab span { width: 9px; height: 9px; border-radius: 50%; }
  .demo-tab span:nth-child(1) { background: #FF5F57; }
  .demo-tab span:nth-child(2) { background: #FFBD2E; }
  .demo-tab span:nth-child(3) { background: #28CA42; }
  .demo-line { color: var(--text-secondary); white-space: nowrap; }
  .demo-line .prompt { color: var(--brand-bright); }
  .demo-line .ok { color: var(--success); }
  .demo-line .val { color: #FBBF24; }

  /* Application history mini-chart inside a feature card */
  .history-chart {
    margin-top: 8px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border-card);
    border-radius: 12px;
  }
  .history-chart-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px;
  }
  .history-chart-head strong {
    font-size: 13px; font-weight: 600;
  }
  .history-chart-head span {
    font-size: 11px; color: var(--text-muted);
    background: rgba(34,197,94,0.12);
    color: #86EFAC;
    padding: 2px 8px; border-radius: 100px;
    font-weight: 600;
  }
  .history-chart-svg { width: 100%; height: 100px; display: block; }
  .history-chart-legend {
    display: flex; justify-content: space-between;
    margin-top: 8px;
    font-size: 10.5px; color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
  }

  /* Credit chips inside the credit feature */
  .credit-chips {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 8px;
  }
  .credit-chip {
    padding: 6px 12px;
    background: var(--bg);
    border: 1px solid var(--border-card);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    display: flex; align-items: center; gap: 6px;
  }
  .credit-chip .price { color: var(--brand-bright); }
  .credit-chip .qty { color: var(--text-muted); font-weight: 500; }

  /* ============ PROCESS ============ */
  .process {
    padding: 80px 48px 100px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
    position: relative; z-index: 1;
    border-bottom: 1px solid var(--border);
  }
  .steps {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 48px; left: 14%; right: 14%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  }
  .step {
    padding: 28px;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    background: var(--bg-1);
    position: relative;
    transition: all 0.3s;
  }
  .step:hover { border-color: var(--border-blue); transform: translateY(-3px); }
  .step-num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: rgba(59,130,246,0.12);
    border: 1px solid var(--border-blue);
    color: var(--brand-bright);
    border-radius: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px; font-weight: 700;
    margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .step h3 {
    font-size: 19px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .step p { color: var(--text-secondary); font-size: 14.5px; }

  /* ============ PRICING ============ */
  .pricing { padding: 100px 48px; position: relative; z-index: 1; }
  .pricing-grid {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .price-card {
    padding: 32px 28px;
    background: var(--bg-1);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s;
    display: flex; flex-direction: column;
  }
  .price-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
  }
  .price-card.featured {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
    border-color: var(--border-blue);
    box-shadow: 0 0 0 1px var(--border-blue), 0 30px 60px -20px rgba(59,130,246,0.25);
  }
  .price-badge {
    position: absolute;
    top: -12px; left: 28px;
    background: var(--brand);
    color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(59,130,246,0.4);
  }
  .price-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
  .price-amount {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .price-amount .currency { color: var(--text-muted); font-size: 24px; }
  .price-credits {
    font-size: 14px; color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .price-credits strong { color: var(--brand-bright); font-weight: 700; }
  .price-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
  }
  .price-features li {
    font-size: 13.5px; color: var(--text-secondary);
    display: flex; align-items: flex-start; gap: 10px;
    font-weight: 500;
  }
  .price-features li::before {
    content: '✓';
    color: var(--brand-bright);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .price-card .btn {
    width: 100%; justify-content: center;
  }

  .pricing-foot {
    max-width: 1180px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
  }
  .pricing-foot strong { color: var(--text-secondary); font-weight: 600; }
  .pricing-foot a {
    color: var(--brand-bright);
    font-weight: 600;
    margin-left: 8px;
  }
  .pricing-foot a:hover { color: var(--brand); }

  /* ============ STATS ============ */
  .stats-band { padding: 80px 48px; position: relative; z-index: 1; }
  .stats-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-1);
  }
  .stat-cell {
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid var(--border);
  }
  .stat-cell:last-child { border-right: none; }
  .stat-big {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
    background: linear-gradient(135deg, var(--brand-bright), var(--brand));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
  }
  .stat-cell-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
  }

  /* ============ TESTIMONIAL ============ */
  .testimonial {
    padding: 100px 48px;
    text-align: center;
    position: relative; z-index: 1;
  }
  .testimonial-card { max-width: 820px; margin: 0 auto; }
  .quote-icon {
    width: 40px; height: 40px;
    background: rgba(59,130,246,0.12);
    border: 1px solid var(--border-blue);
    color: var(--brand-bright);
    border-radius: 12px;
    display: inline-grid; place-items: center;
    font-size: 22px; font-weight: 800;
    margin-bottom: 28px;
    line-height: 0.5;
    padding-top: 14px;
  }
  .testimonial blockquote {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.35;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin-bottom: 36px;
  }
  .testimonial blockquote .accent { color: var(--brand-bright); }
  .author {
    display: flex; align-items: center; justify-content: center; gap: 14px;
  }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #60A5FA, #1E40AF);
    border: 1px solid var(--border-bright);
  }
  .author-info { text-align: left; }
  .author-info strong { display: block; font-size: 14.5px; font-weight: 600; }
  .author-info span { font-size: 13px; color: var(--text-muted); font-weight: 500; }

  /* ============ CTA ============ */
  .cta-band {
    padding: 100px 48px;
    text-align: center;
    position: relative; z-index: 1;
  }
  .cta-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 72px 48px;
    background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
  }
  .cta-wrap::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--brand-glow), transparent 60%);
    z-index: 0;
  }
  .cta-content { position: relative; z-index: 1; }
  .cta-wrap h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .cta-wrap h2 .accent { color: var(--brand-bright); }
  .cta-wrap p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
  }

  /* ============ FOOTER ============ */
  footer {
    display: block;
    clear: both;
    width: 100%;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 48px 24px;
    position: relative; z-index: 1;
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 280px;
    margin-top: 14px;
    font-weight: 500;
  }
  .footer-brand .footer-co {
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
  }
  .footer-brand .footer-co strong { color: var(--text-secondary); font-weight: 600; }
  .footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-weight: 600;
  }
  .footer-col a {
    display: block;
    font-size: 13.5px;
    padding: 5px 0;
    color: var(--text-secondary);
    transition: color 0.2s;
    font-weight: 500;
  }
  .footer-col a:hover { color: var(--brand-bright); }
  .footer-bottom {
    max-width: 1200px; margin: 24px auto 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
    font-size: 12.5px; color: var(--text-muted);
    font-weight: 500;
  }

  /* ============================================== */
  /* ============ RESPONSIVE ============ */
  /* ============================================== */

  @media (max-width: 1200px) {
    .hero { padding: 120px 32px 42px; gap: 40px; }
    .features, .stats-band, .testimonial, .pricing { padding: 80px 32px; }
    .process, .cta-band { padding: 80px 32px; }
    .powered, footer { padding-left: 32px; padding-right: 32px; }
    .nav { padding: 12px 24px; }
    .nav-links { margin-left: 24px; }
    .nav-links a { padding: 8px 12px; font-size: 13.5px; font-weight: 500; }
  }

  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .menu-btn { display: flex; }
    .nav-cta .btn-ghost { display: none; }

    .hero {
      grid-template-columns: 1fr;
      padding: 110px 24px 39px;
      gap: 32px;
    }
    /* Mobile order: PHOTO on top, text below */
    .hero-text { order: 2; max-width: 720px; margin: 0 auto; }
    .hero-visual { order: 1; height: 440px; max-width: 600px; margin: 0 auto; width: 100%; }

    .feature-grid { grid-template-columns: 1fr 1fr; }
    .feature.wide, .feature.narrow { grid-column: span 2; min-height: 320px; }
    .feature.third { grid-column: span 1; min-height: 260px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .price-card:nth-child(3) { grid-column: span 2; max-width: 500px; margin: 0 auto; width: 100%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
    .stat-cell:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  @media (max-width: 768px) {
    .hero { padding: 100px 20px 39px; gap: 28px; min-height: auto; }
    .hero-visual { height: 380px; }
    .hero h1 { font-size: clamp(34px, 9vw, 50px); }
    .hero p.lede { font-size: 16px; }
    .trust-row { flex-wrap: wrap; gap: 12px; }
    .features, .process, .stats-band, .testimonial, .cta-band, .pricing {
      padding: 64px 20px;
    }
    .process { padding-top: 50px; }
    .powered { padding: 24px 20px 22px; }
    .section-head { margin-bottom: 48px; }
    .feature-grid { grid-template-columns: 1fr; gap: 14px; }
    .feature.wide, .feature.narrow, .feature.third {
      grid-column: span 1; min-height: auto;
    }
    .feature { padding: 24px; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card:nth-child(3) { grid-column: span 1; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-cell {
      border-right: none !important;
      border-bottom: 1px solid var(--border);
    }
    .stat-cell:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; padding-bottom: 32px; gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    footer { padding: 48px 20px 20px; }
    .cta-wrap { padding: 48px 24px; }

    /* SMALLER + REPOSITIONED glass cards so they don't cover the face */
    .float-card.notif {
      top: auto; bottom: 16px; left: 14px;
      padding: 8px 12px;
      max-width: calc(50% - 24px);
    }
    .notif-icon { width: 28px; height: 28px; font-size: 13px; font-weight: 500; }
    .notif-text strong { font-size: 11.5px; font-weight: 500; }
    .notif-text span { font-size: 10.5px; font-weight: 500; }
    .float-card.stat {
      bottom: 16px; right: 14px;
      min-width: auto;
      padding: 10px 14px;
    }
    .stat-num { font-size: 22px; }
    .stat-label { font-size: 9.5px; margin-top: 3px; font-weight: 500; }
    .stat-spark { height: 16px; margin-top: 8px; }

    .nav { padding: 10px 16px; }
    .brand-text { font-size: 17px; }
    .brand-icon { width: 26px; height: 26px; }
  }

  @media (max-width: 480px) {
    .hero { padding: 90px 16px 34px; }
    .hero h1 { font-size: clamp(30px, 10vw, 42px); }
    .hero-visual { height: 340px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .features, .process, .stats-band, .testimonial, .cta-band, .pricing {
      padding: 56px 16px;
    }
    .process { padding-top: 44px; }
    .feature { padding: 22px; }
    .feature h3 { font-size: 19px; }
    .testimonial blockquote { font-size: 20px; }
    .cta-wrap { padding: 40px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .nav { padding: 10px 12px; }
    .float-card.notif {
      padding: 7px 11px;
      max-width: 45%;
    }
    .notif-icon { width: 24px; height: 24px; font-size: 11px; font-weight: 500; }
    .notif-text strong { font-size: 10.5px; font-weight: 500; }
    .notif-text span { font-size: 9.5px; font-weight: 500; }
    .float-card.stat { padding: 8px 12px; }
    .stat-num { font-size: 18px; }
    .price-amount { font-size: 38px; }
  }
/* ============ LEGAL / TEXT PAGES ============ */
.page-wrap {
  display: block;
  flex: 1;
  min-height: 50vh;
  padding: 140px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.page-wrap h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.page-wrap .last-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
  font-weight: 500;
}
.page-wrap h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  color: var(--brand-bright);
}
.page-wrap h3 {
  font-size: 18px;
  margin: 24px 0 12px;
  color: var(--text);
}
.page-wrap p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}
.page-wrap ul, .page-wrap ol {
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-left: 24px;
}
.page-wrap li { margin-bottom: 8px; }
.page-wrap .highlight-box {
  background: var(--bg-1);
  border: 1px solid var(--border-card);
  padding: 24px;
  border-radius: var(--radius-md);
  margin: 32px 0;
}
.page-wrap .highlight-box p:last-child { margin-bottom: 0; }
.page-wrap a { color: var(--brand-bright); text-decoration: underline; }
.page-wrap a:hover { color: var(--brand); }

.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin: 32px 0;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  background: var(--bg-1);
  border: 1px solid var(--border-card);
  padding: 24px;
  border-radius: var(--radius-md);
}
.contact-card h3 { margin-top: 0; }
.contact-card p { font-size: 14.5px; }

@media (max-width: 768px) {
  .page-wrap { padding: 100px 20px 60px; }
}

/* Fix anchor scrolling offset */
section { scroll-margin-top: 80px; }

/* app-header fixes */
#app-header { position: sticky; top: 0; z-index: 1000; }
body { padding-top: 0 !important; }
