:root {
    --saffron: #FF6B00;
    --saffron-light: #FF8C00;
    --gold: #FFB300;
    --green: #00A550;
    --green-dark: #007A3D;
    --cream: #FFF8EE;
    --ink: #1A1200;
    --muted: #6B5E4A;
    --card-bg: #FFFDF7;
    --shadow: 0 4px 32px rgba(255,107,0,0.10);
  }

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

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 6vw;
    background: rgba(255,248,238,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1.5px solid rgba(255,107,0,0.12);
  }

  .logo {
    font-family: 'Baloo 2', cursive;
    font-size: 2rem; font-weight: 800;
    color: var(--saffron);
    letter-spacing: -1px;
  }
  .logo span { color: var(--green); }

  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    text-decoration: none;
    font-size: 0.88rem; font-weight: 600;
    color: var(--muted);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--saffron); }

  .btn-primary {
    background: var(--saffron);
    color: #fff;
    border: none; border-radius: 50px;
    padding: 10px 26px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--saffron-light); transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: var(--saffron);
    border: 2px solid var(--saffron);
    border-radius: 50px;
    padding: 10px 26px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover { background: var(--saffron); color: #fff; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 120px 6vw 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 0%, rgba(255,179,0,0.18) 0%, transparent 65%),
                radial-gradient(ellipse at 10% 80%, rgba(0,165,80,0.10) 0%, transparent 55%);
    pointer-events: none;
  }

  .lang-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,0,0.08);
    border: 1.5px solid rgba(255,107,0,0.22);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.78rem; font-weight: 600;
    color: var(--saffron);
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
  }
  .lang-pill span { font-family: 'Noto Sans Devanagari', sans-serif; }

  .hero h1 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    max-width: 800px;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero h1 .highlight { color: var(--saffron); }
  .hero h1 .highlight-green { color: var(--green); }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 600px;
    margin: 20px auto 36px;
    line-height: 1.7;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.7s 0.3s ease both;
  }

  .hero-mockup {
    margin-top: 60px;
    width: 100%; max-width: 900px;
    background: var(--card-bg);
    border: 2px solid rgba(255,107,0,0.15);
    border-radius: 24px;
    box-shadow: var(--shadow), 0 0 0 8px rgba(255,107,0,0.04);
    overflow: hidden;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .mockup-topbar {
    background: var(--saffron);
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .mockup-topbar .app-name {
    font-family: 'Baloo 2', cursive;
    color: #fff; font-size: 1.1rem; font-weight: 800;
  }
  .mockup-topbar .balance-chip {
    background: rgba(255,255,255,0.25);
    border-radius: 20px; padding: 4px 14px;
    color: #fff; font-size: 0.82rem; font-weight: 600;
  }

  .mockup-body { padding: 20px 24px; display: flex; gap: 16px; flex-wrap: wrap; }

  .ledger-card {
    flex: 1; min-width: 200px;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #f0e8d8;
    padding: 16px;
  }
  .ledger-card .lc-label { font-size: 0.72rem; color: var(--muted); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
  .ledger-card .lc-amount { font-family: 'Baloo 2', cursive; font-size: 1.5rem; font-weight: 800; }
  .ledger-card.give .lc-amount { color: #E53E3E; }
  .ledger-card.take .lc-amount { color: var(--green); }
  .ledger-card .lc-name { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

  .customer-row {
    width: 100%;
    display: flex; gap: 10px; align-items: center;
    background: #fff; border-radius: 12px; padding: 12px 16px;
    border: 1.5px solid #f0e8d8;
    margin-top: 4px;
  }
  .cr-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
  }
  .cr-info { flex: 1; }
  .cr-name { font-size: 0.88rem; font-weight: 600; }
  .cr-date { font-size: 0.72rem; color: var(--muted); }
  .cr-amt { font-family: 'Baloo 2', cursive; font-size: 1rem; font-weight: 800; }
  .cr-amt.red { color: #E53E3E; }
  .cr-amt.green { color: var(--green); }

  /* ── FEATURES ── */
  section { padding: 80px 6vw; }

  .section-tag {
    display: inline-block;
    background: rgba(255,107,0,0.1);
    color: var(--saffron);
    border-radius: 50px; padding: 5px 16px;
    font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 600px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

  .feat-card {
    background: var(--card-bg);
    border: 1.5px solid rgba(255,107,0,0.15);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

  .feat-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 18px;
  }
  .feat-icon.orange { background: rgba(255,107,0,0.12); }
  .feat-icon.green { background: rgba(0,165,80,0.10); }
  .feat-icon.gold { background: rgba(255,179,0,0.14); }
  .feat-icon.blue { background: rgba(0,100,255,0.08); }

  .feat-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.15rem; font-weight: 700; margin-bottom: 8px;
  }
  .feat-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

  /* ── HOW IT WORKS ── */
  .how-bg { background: linear-gradient(135deg, #fff8ee 0%, #fff 100%); }

  .steps { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; max-width: 700px; }

  .step { display: flex; gap: 22px; align-items: flex-start; }
  .step-num {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--saffron); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Baloo 2', cursive; font-size: 1.1rem; font-weight: 800;
    flex-shrink: 0; margin-top: 2px;
  }
  .step-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
  .step-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

  /* ── LANGUAGES ── */
  .lang-strip {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px;
  }
  .lang-badge {
    background: #fff;
    border: 1.5px solid rgba(255,107,0,0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem; font-weight: 600;
    color: var(--ink);
    display: flex; align-items: center; gap: 8px;
  }
  .lang-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); }

  /* ── PRICING ── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px; margin-top: 48px;
  }

  .price-card {
    background: var(--card-bg);
    border: 2px solid rgba(255,107,0,0.15);
    border-radius: 24px; padding: 32px;
    position: relative;
    transition: transform 0.2s;
  }
  .price-card:hover { transform: translateY(-4px); }
  .price-card.popular {
    border-color: var(--saffron);
    background: #fff;
    box-shadow: 0 8px 40px rgba(255,107,0,0.18);
  }
  .popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--saffron); color: #fff;
    border-radius: 50px; padding: 4px 18px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .price-name { font-weight: 700; font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; }
  .price-amount { font-family: 'Baloo 2', cursive; font-size: 2.5rem; font-weight: 800; }
  .price-amount span { font-size: 1rem; font-weight: 400; color: var(--muted); }
  .price-features { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
  .price-features li { font-size: 0.85rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
  .price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
  .price-cta { margin-top: 28px; width: 100%; text-align: center; }

  /* ── TESTIMONIALS ── */
  .testi-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px; margin-top: 48px;
  }
  .testi-card {
    background: #fff;
    border: 1.5px solid #f0e8d8;
    border-radius: 18px; padding: 24px;
  }
  .testi-card .stars { color: var(--gold); margin-bottom: 12px; font-size: 1rem; }
  .testi-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
  .testi-author { display: flex; align-items: center; gap: 10px; }
  .testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 0.85rem;
  }
  .testi-name { font-size: 0.85rem; font-weight: 700; }
  .testi-city { font-size: 0.75rem; color: var(--muted); }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 50%, var(--gold) 100%);
    border-radius: 28px; padding: 60px 48px;
    text-align: center; margin: 0 6vw 80px;
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: '📒';
    position: absolute; right: -20px; bottom: -30px;
    font-size: 160px; opacity: 0.12;
    transform: rotate(-10deg);
  }
  .cta-banner h2 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800; color: #fff; margin-bottom: 12px;
  }
  .cta-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 32px; }
  .btn-white {
    background: #fff; color: var(--saffron);
    border: none; border-radius: 50px;
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: transform 0.2s;
  }
  .btn-white:hover { transform: scale(1.04); }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 48px 6vw 24px;
  }
  .footer-top {
    display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between;
    margin-bottom: 40px;
  }
  .footer-brand .logo { color: #fff; }
  .footer-brand .logo span { color: var(--gold); }
  .footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 10px; max-width: 240px; line-height: 1.6; }
  .footer-links h4 { color: #fff; font-size: 0.88rem; margin-bottom: 14px; }
  .footer-links a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; margin-bottom: 8px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 0.76rem; text-align: center; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    .nav-links { display: none; }
    .mockup-body { flex-direction: column; }
    .cta-banner { padding: 40px 24px; }
  }
  
  .legal-page{
    padding:120px 20px 80px;
}

.legal-page .container{
    max-width:1000px;
    margin:0 auto;
}

.legal-page h1{
    font-size:42px;
    margin-bottom:20px;
    color:#0F172A;
}

.legal-page h2{
    margin-top:30px;
    margin-bottom:10px;
    color:#0F172A;
    font-size:24px;
}

.legal-page p,
.legal-page li{
    line-height:1.8;
    color:#475569;
}

.legal-page ul{
    padding-left:25px;
    margin-bottom:20px;
}