/* Home page */
:root {
      --bg: #09090f;
      --bg2: #0e0e1a;
      --surface: #13131f;
      --surface2: #1a1a2e;
      --border: rgba(255,255,255,0.07);
      --border2: rgba(255,255,255,0.12);
      --text: #f0f0f8;
      --text2: #9090b0;
      --text3: #5a5a7a;
      --nav-bg: rgba(9, 9, 15, 0.80);
      --accent: #efc348;
      --accent2: #5dd6a8;
      --accent3: #f5d47a;
      --glow: rgba(239, 195, 72, 0.28);
      --font-display: 'Sora', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 48px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--nav-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 20px;
      color: var(--text);
      text-decoration: none;
    }

    .nav-logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      overflow: hidden;
      box-shadow: 0 0 20px var(--glow);
      flex-shrink: 0;
    }
    .nav-logo-mark img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text2);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--accent);
      color: #1a1200 !important;
      padding: 8px 18px;
      border-radius: 8px;
      font-weight: 700 !important;
      transition: opacity 0.2s, transform 0.2s !important;
      box-shadow: 0 0 20px var(--glow);
    }

    .nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 120px 0 80px;
    }

    .hero-split {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 80px;
      width: 100%;
    }

    @media (max-width: 900px) {
      .hero-split {
        grid-template-columns: 1fr;
      }
      .hero-split .hero-mockup-wrap {
        display: none;
      }
    }

    /* gradient mesh background */
    .hero-mesh {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-mesh::before {
      content: '';
      position: absolute;
      width: 800px; height: 800px;
      top: -200px; left: 50%;
      transform: translateX(-50%);
      background: radial-gradient(ellipse, rgba(239,195,72,0.15) 0%, transparent 70%);
      animation: pulse 6s ease-in-out infinite;
    }

    .hero-mesh::after {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      bottom: -100px; right: -100px;
      background: radial-gradient(ellipse, rgba(93,214,168,0.1) 0%, transparent 70%);
      animation: pulse 8s ease-in-out infinite reverse;
    }

    @keyframes pulse {
      0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
      50% { transform: translateX(-50%) scale(1.1); opacity: 0.7; }
    }

    .hero-content {
      text-align: left;
      max-width: 600px;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(239,195,72,0.12);
      border: 1px solid rgba(239,195,72,0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 500;
      color: #efc348;
      margin-bottom: 32px;
      animation: fadeUp 0.6s ease forwards;
    }

    .hero-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent2);
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(48px, 7vw, 88px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero-title .grad {
      background: linear-gradient(135deg, var(--text) 0%, #efc348 60%, #5dd6a8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .mobile-only { display: none; }

    .hero-sub {
      font-size: 20px;
      color: var(--text2);
      line-height: 1.6;
      max-width: 560px;
      margin: 0 0 40px;
      font-weight: 300;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: #1a1200;
      padding: 14px 28px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 40px var(--glow);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 50px var(--glow);
      opacity: 0.9;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--surface);
      color: var(--text);
      padding: 14px 28px;
      border-radius: 12px;
      font-weight: 500;
      font-size: 16px;
      text-decoration: none;
      border: 1px solid var(--border2);
      transition: all 0.2s;
    }

    .btn-ghost:hover {
      background: var(--surface2);
      border-color: rgba(255,255,255,0.2);
      transform: translateY(-2px);
    }

    .hero-price-note {
      margin-top: 20px;
      font-size: 13px;
      color: var(--text3);
      animation: fadeUp 0.6s 0.4s ease both;
    }

    .hero-price-note strong { color: var(--accent2); font-weight: 600; }

    /* ── HERO MOCKUP ── */
    .hero-mockup-wrap {
      position: relative;
      z-index: 1;
      margin-top: 72px;
      animation: fadeUp 0.8s 0.5s ease both;
    }

    .phone-frame {
      width: 280px;
      margin: 0 auto;
      background: var(--surface);
      border-radius: 44px;
      border: 1.5px solid var(--border2);
      padding: 12px;
      box-shadow:
        0 0 0 1px var(--border),
        0 40px 120px rgba(0,0,0,0.6),
        0 0 80px var(--glow);
      position: relative;
    }

    .phone-inner {
      border-radius: 36px;
      overflow: hidden;
      background: var(--bg2);
      aspect-ratio: 9/19;
      position: relative;
    }

    /* ── APP UI MOCKUP ── */
    .app-ui {
      padding: 24px 16px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .app-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .app-header-left { font-size: 11px; color: var(--text3); }
    .app-header-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text); }

    .app-avatar {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent3));
    }

    /* Budget Ring */
    .budget-ring-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .ring-container {
      position: relative;
      width: 110px;
      height: 110px;
    }

    .ring-svg {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }

    .ring-bg { fill: none; stroke: var(--surface2); stroke-width: 8; }
    .ring-fill {
      fill: none;
      stroke-width: 8;
      stroke-linecap: round;
      stroke: url(#ringGrad);
      stroke-dasharray: 283;
      stroke-dashoffset: 85;
      animation: ringFill 1.5s 1s ease both;
    }

    @keyframes ringFill {
      from { stroke-dashoffset: 283; }
      to { stroke-dashoffset: 85; }
    }

    .ring-center {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .ring-pct {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      line-height: 1;
    }

    .ring-label { font-size: 8px; color: var(--text3); }

    .budget-meta {
      display: flex;
      gap: 20px;
    }

    .budget-meta-item { text-align: center; }
    .budget-meta-num { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text); }
    .budget-meta-lbl { font-size: 8px; color: var(--text3); }

    /* Categories */
    .categories { display: flex; flex-direction: column; gap: 6px; }

    .cat-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cat-icon {
      width: 24px; height: 24px;
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      flex-shrink: 0;
    }

    .cat-info { flex: 1; }
    .cat-name { font-size: 9px; font-weight: 600; color: var(--text2); }
    .cat-bar-wrap { height: 3px; background: var(--surface2); border-radius: 2px; margin-top: 2px; overflow: hidden; }
    .cat-bar { height: 100%; border-radius: 2px; }
    .cat-amount { font-size: 9px; font-weight: 600; color: var(--text); }

    /* AI Card */
    .ai-card {
      background: rgba(239,195,72,0.08);
      border: 1px solid rgba(239,195,72,0.18);
      border-radius: 12px;
      padding: 10px 12px;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .ai-icon {
      width: 20px; height: 20px;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--accent), var(--accent3));
      display: flex; align-items: center; justify-content: center;
      font-size: 9px;
      flex-shrink: 0;
    }

    .ai-text { font-size: 8px; color: var(--text2); line-height: 1.4; }
    .ai-text strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }

    /* ── SECTION SHARED ── */
    section { position: relative; }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .section-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 18px;
      color: var(--text2);
      font-weight: 300;
      max-width: 520px;
      line-height: 1.6;
    }

    /* ── PROBLEMS ── */
    .problems {
      padding: 100px 0;
      border-top: 1px solid var(--border);
    }

    .problems-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      margin-top: 64px;
    }

    .problem-cell {
      background: var(--surface);
      padding: 36px 32px;
      transition: background 0.2s;
    }

    .problem-cell:hover { background: var(--surface2); }

    .problem-icon {
      font-size: 28px;
      margin-bottom: 16px;
      filter: grayscale(0.3);
    }

    .problem-title {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .problem-desc {
      font-size: 14px;
      color: var(--text2);
      line-height: 1.6;
    }

    /* ── FEATURES ── */
    .features {
      padding: 100px 0;
      border-top: 1px solid var(--border);
    }

    .features-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 64px;
      gap: 32px;
    }

    .feature-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      opacity: 0;
      transition: opacity 0.3s;
      background: radial-gradient(ellipse at top left, var(--glow), transparent 60%);
    }

    .feature-card:hover::before { opacity: 1; }
    .feature-card:hover { border-color: var(--border2); transform: translateY(-4px); }

    .feature-card.wide {
      grid-column: span 2;
    }

    .feature-icon-wrap {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .feature-icon-wrap.purple { background: oklch(65% 0.25 280 / 0.15); border: 1px solid rgba(239,195,72,0.18); }
    .feature-icon-wrap.green { background: rgba(93,214,168,0.12); border: 1px solid rgba(93,214,168,0.2); }
    .feature-icon-wrap.pink { background: rgba(239,195,72,0.18); border: 1px solid rgba(239,195,72,0.25); }

    .feature-card-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feature-card-desc {
      font-size: 14px;
      color: var(--text2);
      line-height: 1.7;
    }

    .feature-tag {
      display: inline-block;
      margin-top: 16px;
      font-size: 11px;
      font-weight: 600;
      color: var(--accent2);
      background: rgba(93,214,168,0.12);
      border: 1px solid rgba(93,214,168,0.2);
      padding: 3px 10px;
      border-radius: 100px;
    }

    /* AI Chat Demo */
    .ai-demo {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .chat-bubble {
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 13px;
      max-width: 85%;
      line-height: 1.5;
    }

    .chat-user {
      background: var(--surface2);
      border: 1px solid var(--border2);
      color: var(--text);
      align-self: flex-end;
      border-radius: 14px 14px 4px 14px;
    }

    .chat-ai {
      background: rgba(239,195,72,0.12);
      border: 1px solid rgba(239,195,72,0.18);
      color: var(--text2);
      align-self: flex-start;
      border-radius: 14px 14px 14px 4px;
    }

    .chat-ai strong { color: var(--accent2); }

    /* ── PRICING ── */
    .pricing {
      padding: 100px 0;
      border-top: 1px solid var(--border);
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .pricing-header .section-sub { margin: 0 auto; }

    .pricing-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 720px;
      margin: 0 auto;
    }

    .pricing-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px 36px;
      position: relative;
      transition: all 0.3s;
    }

    .pricing-card:hover { border-color: var(--border2); }

    .pricing-card.featured {
      border-color: rgba(239,195,72,0.4);
      background: linear-gradient(145deg, rgba(239,195,72,0.08), var(--surface));
      box-shadow: 0 0 60px rgba(239,195,72,0.12);
    }

    .pricing-badge {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, var(--accent), var(--accent3));
      color: #1a1200;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .pricing-tier {
      font-size: 13px;
      font-weight: 600;
      color: var(--text3);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 8px;
    }

    .pricing-currency {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 700;
      color: var(--text);
    }

    .pricing-amount {
      font-family: var(--font-display);
      font-size: 56px;
      font-weight: 800;
      color: var(--text);
      line-height: 1;
    }

    .pricing-period {
      font-size: 14px;
      color: var(--text3);
    }

    .pricing-alt {
      font-size: 12px;
      color: var(--accent2);
      margin-bottom: 32px;
    }

    .pricing-divider {
      height: 1px;
      background: var(--border);
      margin: 24px 0;
    }

    .pricing-features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .pricing-features-list li {
      display: flex;
      gap: 10px;
      font-size: 14px;
      color: var(--text2);
      align-items: flex-start;
    }

    .pricing-features-list li .check {
      color: var(--accent2);
      font-size: 15px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .btn-pricing-primary {
      display: block;
      text-align: center;
      background: var(--accent);
      color: #1a1200;
      padding: 14px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 30px var(--glow);
    }

    .btn-pricing-primary:hover { opacity: 0.85; transform: translateY(-2px); }

    .btn-pricing-ghost {
      display: block;
      text-align: center;
      background: transparent;
      color: var(--text2);
      padding: 14px;
      border-radius: 12px;
      font-weight: 500;
      font-size: 15px;
      text-decoration: none;
      border: 1px solid var(--border2);
      transition: all 0.2s;
    }

    .btn-pricing-ghost:hover { background: var(--surface2); color: var(--text); }

    .pricing-note {
      text-align: center;
      margin-top: 24px;
      font-size: 12px;
      color: var(--text3);
    }

    /* ── WHY BAJIN ── */
    .why {
      padding: 100px 0;
      border-top: 1px solid var(--border);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 64px;
    }

    .why-item { }

    .why-num {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      color: var(--text3);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .why-item-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }

    .why-item-desc {
      font-size: 14px;
      color: var(--text2);
      line-height: 1.7;
    }

    /* ── AUDIENCE ── */
    .audience {
      padding: 100px 0;
      border-top: 1px solid var(--border);
    }

    .audience-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 48px;
    }

    .audience-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 12px 20px;
      transition: all 0.2s;
    }

    .audience-pill:hover {
      border-color: var(--border2);
      background: var(--surface2);
      transform: translateY(-2px);
    }

    .pill-emoji { font-size: 18px; }

    .pill-text {
      font-size: 14px;
      font-weight: 500;
      color: var(--text2);
    }

    /* ── REQUIREMENTS ── */
    .requirements {
      padding: 80px 0;
      border-top: 1px solid var(--border);
    }

    .req-row {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }

    .req-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text3);
    }

    .req-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--text3);
      flex-shrink: 0;
    }

    /* ── FOOTER ── */
    footer {
      padding: 48px 0;
      border-top: 1px solid var(--border);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      color: var(--text2);
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text3);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--text2); }

    .footer-copy {
      font-size: 13px;
      color: var(--text3);
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: none; }
    }

    /* ── DIVIDER LINE ── */
    .gradient-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent3), transparent);
      opacity: 0.4;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hero { padding: 100px 20px 60px; }
      .hero-content { max-width: 100%; }
      .hero-title {
        font-size: clamp(42px, 12vw, 52px) !important;
        line-height: 1.08 !important;
        max-width: 100%;
      }
      .mobile-only { display: block; }
      .hero-sub {
        font-size: 16px;
        max-width: 310px;
        word-break: break-all;
      }
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 260px;
      }
      .hero-actions .btn-primary,
      .hero-actions .btn-ghost {
        justify-content: center;
      }
      .section-inner { padding: 0 20px; }
      .problems-grid { grid-template-columns: 1fr; }
      .feature-cards { grid-template-columns: 1fr; }
      .feature-card.wide { grid-column: span 1; }
      .pricing-cards { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 32px; }
      .features-header { flex-direction: column; align-items: flex-start; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }

/* Support page */
    body.support-page, body.privacy-page { line-height: 1.7; }

    /* PAGE */
    body.support-page .page-wrap {
      max-width: 900px;
      margin: 0 auto;
      padding: 120px 48px 100px;
    }

    /* HERO */
    .doc-hero {
      margin-bottom: 64px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }

    .doc-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(239,195,72,0.12);
      border: 1px solid rgba(239,195,72,0.25);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
      color: #efc348;
      margin-bottom: 24px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .doc-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 16px;
    }

    .doc-subtitle {
      font-size: 18px;
      color: var(--text2);
      font-weight: 300;
      max-width: 480px;
    }

    /* QUICK LINKS */
    .quick-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 64px;
    }

    .quick-link {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: all 0.2s;
    }

    .quick-link:hover {
      border-color: var(--border2);
      background: var(--surface2);
      transform: translateY(-2px);
    }

    .quick-link-icon {
      font-size: 22px;
    }

    .quick-link-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }

    .quick-link-desc {
      font-size: 12px;
      color: var(--text3);
      line-height: 1.5;
    }

    /* FAQ SECTIONS */
    .faq-section {
      margin-bottom: 56px;
    }

    .faq-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }

    .faq-section-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .faq-section-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
    }

    /* ACCORDION */
    .accordion {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .acc-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .acc-item.open { border-color: var(--border2); }

    .acc-trigger {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
    }

    .acc-q {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
    }

    .acc-icon {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--surface2);
      display: flex; align-items: center; justify-content: center;
      color: var(--text3);
      font-size: 14px;
      flex-shrink: 0;
      transition: transform 0.25s, background 0.2s;
    }

    .acc-item.open .acc-icon {
      transform: rotate(45deg);
      background: oklch(65% 0.25 315 / 0.15);
      color: var(--accent);
    }

    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .acc-item.open .acc-body { max-height: 800px; }

    .acc-content {
      padding: 0 20px 20px;
      font-size: 14px;
      color: var(--text2);
      line-height: 1.75;
    }

    .acc-content p { margin-bottom: 10px; }
    .acc-content p:last-child { margin-bottom: 0; }

    .acc-content ol, .acc-content ul {
      padding-left: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin: 10px 0;
    }

    .acc-content ul li {
      padding-left: 16px;
      position: relative;
    }

    .acc-content ul li::before {
      content: '·';
      position: absolute;
      left: 4px;
      color: var(--accent2);
      font-weight: 700;
    }

    .acc-content ol { counter-reset: ol; }
    .acc-content ol li { counter-increment: ol; padding-left: 24px; position: relative; }
    .acc-content ol li::before {
      content: counter(ol) '.';
      position: absolute; left: 0;
      color: var(--accent); font-size: 12px; font-weight: 700;
      top: 2px;
    }

    .acc-content strong { color: var(--text); font-weight: 600; }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(239,195,72,0.12);
      border: 1px solid rgba(239,195,72,0.2);
      border-radius: 6px;
      padding: 2px 8px;
      font-size: 11px;
      font-weight: 600;
      color: var(--accent);
    }

    .badge.green {
      background: rgba(93,214,168,0.12);
      border-color: rgba(93,214,168,0.2);
      color: var(--accent2);
    }

    /* TIPS BOX */
    .tip-box {
      background: oklch(72% 0.18 185 / 0.08);
      border: 1px solid rgba(93,214,168,0.2);
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 13px;
      color: var(--text2);
      margin: 10px 0;
      display: flex;
      gap: 8px;
    }

    .warning-box {
      background: oklch(65% 0.25 315 / 0.08);
      border: 1px solid rgba(239,195,72,0.2);
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 13px;
      color: var(--text2);
      margin: 10px 0;
      display: flex;
      gap: 8px;
    }

    /* CONTACT */
    .contact-section {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-top: 64px;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(239,195,72,0.1), transparent 60%);
      pointer-events: none;
    }

    .contact-section h2 {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .contact-section p {
      font-size: 15px;
      color: var(--text2);
      margin-bottom: 32px;
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: #fff;
      padding: 14px 28px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 30px var(--glow);
    }

    .contact-btn:hover { opacity: 0.85; transform: translateY(-2px); }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      margin-top: 80px;
      padding: 40px 48px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      color: var(--text2);
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text3);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--text2); }
    .footer-copy { font-size: 13px; color: var(--text3); }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      body.support-page .page-wrap { padding: 100px 20px 80px; }
      .quick-links { grid-template-columns: 1fr 1fr; }
      footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
      .contact-section { padding: 32px 24px; }
    }

/* Privacy page */
    /* PAGE LAYOUT */
    body.privacy-page .page-wrap {
      max-width: 800px;
      margin: 0 auto;
      padding: 120px 48px 100px;
    }

    /* HERO */
    .doc-hero {
      margin-bottom: 64px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }

    .doc-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(239,195,72,0.12);
      border: 1px solid rgba(239,195,72,0.25);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
      color: #efc348;
      margin-bottom: 24px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .doc-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 16px;
    }

    .doc-meta {
      font-size: 14px;
      color: var(--text3);
    }

    /* PROMISE CARDS */
    .promise-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 64px;
    }

    .promise-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 24px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: border-color 0.2s;
    }

    .promise-card:hover { border-color: var(--border2); }

    .promise-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: rgba(93,214,168,0.15);
      border: 1px solid rgba(93,214,168,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .promise-text {
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      line-height: 1.4;
      padding-top: 8px;
    }

    /* CONTENT */
    .doc-content {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }

    .doc-section { }

    .doc-section-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--text3);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .doc-section h2 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }

    .doc-section h3 {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      margin: 24px 0 10px;
    }

    .doc-section p {
      font-size: 15px;
      color: var(--text2);
      line-height: 1.75;
      margin-bottom: 12px;
    }

    .doc-section ul, .doc-section ol {
      padding-left: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }

    .doc-section ul li, .doc-section ol li {
      font-size: 15px;
      color: var(--text2);
      padding-left: 20px;
      position: relative;
      line-height: 1.6;
    }

    .doc-section ul li::before {
      content: '·';
      position: absolute;
      left: 6px;
      color: var(--accent2);
      font-weight: 700;
    }

    .doc-section ol { counter-reset: ol-counter; }
    .doc-section ol li { counter-increment: ol-counter; }
    .doc-section ol li::before {
      content: counter(ol-counter) '.';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-size: 13px;
      font-weight: 700;
    }

    .check-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px 24px;
      margin: 16px 0;
    }

    .check-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 14px;
      line-height: 1.5;
    }

    .check-item.yes { color: var(--text); }
    .check-item.no { color: var(--text3); }

    .check-item .chk {
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 13px;
    }

    .check-item.yes .chk { color: var(--accent2); }
    .check-item.no .chk { color: var(--text3); }

    strong { color: var(--text); font-weight: 600; }

    .doc-divider {
      height: 1px;
      background: var(--border);
    }

    /* CONTACT */
    .contact-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .contact-icon {
      width: 48px; height: 48px;
      border-radius: 14px;
      background: rgba(239,195,72,0.12);
      border: 1px solid rgba(239,195,72,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .contact-link {
      font-size: 14px;
      color: var(--accent);
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.2s;
    }

    .contact-link:hover { opacity: 0.7; }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      margin-top: 80px;
      padding: 40px 48px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      color: var(--text2);
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text3);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--text2); }

    .footer-copy { font-size: 13px; color: var(--text3); }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      body.privacy-page .page-wrap { padding: 100px 20px 80px; }
      .promise-grid { grid-template-columns: 1fr; }
      footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
    }

/* Shared external-file overrides */
.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text2);
  transition: all 0.2s;
}

.home-page .theme-toggle { margin-left: 8px; }

.logo-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-fill.rounded { border-radius: 6px; }

.footer-logo-mark {
  width: 24px !important;
  height: 24px !important;
}

body.home-page .nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
}

body.support-page .page-wrap,
body.support-page footer { max-width: 900px; }

body.privacy-page .page-wrap,
body.privacy-page footer { max-width: 800px; }

.faq-section-icon.gold {
  background: rgba(239,195,72,0.12);
  border: 1px solid rgba(239,195,72,0.2);
}

.faq-section-icon.green {
  background: rgba(93,214,168,0.12);
  border: 1px solid rgba(93,214,168,0.2);
}

.faq-section-icon.yellow {
  background: rgba(245,212,122,0.12);
  border: 1px solid rgba(245,212,122,0.2);
}

.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }

.contact-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.legal-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text3);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content-left { text-align: left; }
.hero-title-large {
  font-size: 80px;
  line-height: 1.1;
}
.hero-actions-left { justify-content: flex-start; }
.hero-price-left { text-align: left; }
.hero-mockup-flush { margin-top: 0; }

.cta-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.cta-panel {
  background: linear-gradient(135deg, rgba(239,195,72,0.12), rgba(93,214,168,0.08));
  border: 1px solid rgba(239,195,72,0.25);
  border-radius: 28px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(239,195,72,0.15), transparent 60%);
  pointer-events: none;
}

.cta-label { margin-bottom: 16px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-copy {
  font-size: 18px;
  color: var(--text2);
  max-width: 440px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.cta-button { display: inline-flex; }
.cta-requirements {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text3);
}

.dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.app-screen {
  background: #f0f0f5;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s;
}

.mock-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 4px;
  flex-shrink: 0;
}

.mock-time {
  font-size: 11px;
  font-weight: 700;
  color: #111;
}

.mock-status-icons,
.mock-row,
.mock-battery-shell,
.mock-app-header,
.mock-category-head,
.mock-balance-row,
.mock-input {
  display: flex;
  align-items: center;
}

.mock-status-icons { gap: 4px; }
.mock-battery { display: flex; align-items: center; gap: 1px; }
.mock-battery-shell {
  width: 20px;
  height: 10px;
  border: 1.5px solid #111;
  border-radius: 2.5px;
  padding: 1.5px;
}
.mock-battery-level {
  width: 75%;
  height: 100%;
  background: #4caf50;
  border-radius: 1px;
}

.mock-app-header {
  justify-content: space-between;
  padding: 4px 16px 10px;
  flex-shrink: 0;
}

.mock-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8e8ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-menu { font-size: 13px; }
.mock-plus {
  font-size: 15px;
  font-weight: 300;
  color: #555;
}

.mock-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.mock-content {
  flex: 1;
  overflow: hidden;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-card {
  background: #fff;
  border-radius: 14px;
  flex-shrink: 0;
}

.mock-card.padded { padding: 14px; }
.mock-card.compact { padding: 10px 12px; }
.mock-card.clip { overflow: hidden; }

.mock-muted {
  font-size: 9px;
  color: #999;
  margin-bottom: 4px;
}

.mock-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2px;
}

.mock-total {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
}

.mock-budget {
  font-size: 11px;
  font-weight: 600;
  color: #555;
}

.mock-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mock-small,
.mock-amount {
  font-size: 9px;
  color: #aaa;
}

.mock-small { font-size: 8px; }

.mock-bar,
.mock-thin-bar {
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
}

.mock-bar { height: 4px; }
.mock-thin-bar { height: 3px; }
.mock-fill {
  height: 100%;
  background: #efc348;
  border-radius: 2px;
}
.w-45 { width: 45%; }
.w-65 { width: 65%; }
.w-68 { width: 68%; }
.w-83 { width: 83%; }
.w-88 { width: 88%; }

.mock-category {
  padding: 10px 12px;
  border-bottom: 1px solid #f5f5f5;
}

.mock-category:last-child { border-bottom: 0; }
.mock-category-head {
  gap: 8px;
  margin-bottom: 6px;
}

.mock-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.mock-icon.food { background: #fff3e0; }
.mock-icon.daily { background: #e3f2fd; }
.mock-icon.transport { background: #fce4ec; }
.mock-icon.long { background: #f3e5f5; }
.mock-icon.balance { background: #fff9e6; }

.mock-name {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  flex: 1;
}

.mock-balance-row { gap: 8px; }
.mock-flex { flex: 1; }
.mock-health {
  font-size: 9px;
  color: #5dd6a8;
  margin-top: 2px;
}

.mock-input-wrap {
  padding: 8px 12px 14px;
  flex-shrink: 0;
}

.mock-input {
  background: #fff;
  border-radius: 22px;
  padding: 9px 14px;
  gap: 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.mock-star {
  font-size: 12px;
  color: #efc348;
}

.mock-placeholder {
  font-size: 10px;
  color: #bbb;
  flex: 1;
}

.mock-send {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  width: 200px;
  height: 40px;
  margin: -10px auto 0;
  background: radial-gradient(ellipse, var(--glow) 0%, transparent 70%);
  filter: blur(20px);
}
