/* ========== Aaroora — Production Styles ========== */
:root {
  --ink: #1A2A4A;
  --saffron: #D97706;
  --cream: #FAF6EE;
  --paper: #FFFCF5;
  --cream2: #F5F0E5;
  --muted: #7A6E5C;
  --ink-1a: rgba(26,42,74,0.10);
  --ink-26: rgba(26,42,74,0.15);
  --ink-14: rgba(26,42,74,0.08);
  --max: 1280px;
  --pad: 56px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream); color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01";
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }

.muted { color: var(--muted); }
.small { font-size: 11px; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; color: var(--muted); }
em { font-style: italic; color: var(--saffron); font-weight: inherit; }
.kicker { font-size: 10px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.kicker.saffron { color: var(--saffron); }

/* Decorative jali borders */
body::before, body::after {
  content: ""; display: block; height: 14px; background: var(--ink);
  background-image: repeating-linear-gradient(90deg, var(--saffron) 0 8px, transparent 8px 28px);
}

/* ===== NAV ===== */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--pad); border-bottom: 1px solid var(--ink-1a);
  max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-wordmark { display: inline-flex; align-items: center; gap: 14px; }
.wordmark { width: 150px; height: auto; display: block; }
.wordmark-sm { width: 120px; }
.foot-tag { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.brand-name { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); line-height: 1; display: block; }
.brand-sub { font-size: 10px; color: var(--muted); margin-top: 3px; letter-spacing: 0.08em; text-transform: uppercase; display: block; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--ink); font-weight: 500; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--saffron); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .link { font-size: 14px; color: var(--ink); text-decoration: none; }

.btn { border: none; padding: 11px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform .12s, opacity .12s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); padding: 9px 16px; }
.btn-saffron { background: var(--saffron); color: var(--paper); padding: 16px 26px; font-size: 15px; font-weight: 700; border-radius: 6px; }

.store-btn {
  background: var(--ink); color: var(--paper); border-radius: 8px;
  padding: 10px 18px; display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer;
}
.store-btn span { display: flex; flex-direction: column; line-height: 1.05; text-align: left; white-space: nowrap; }
.store-btn small { font-size: 9px; font-weight: 500; opacity: 0.75; letter-spacing: 0.04em; }
.store-btn strong { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.store-light { background: var(--paper); color: var(--ink); }

/* ===== HERO ===== */
.hero { position: relative; padding: 80px var(--pad) 100px; max-width: var(--max); margin: 0 auto; overflow: hidden; }
.jali {
  position: absolute; right: -80px; top: -40px; width: 320px; height: 320px;
  opacity: 0.07; pointer-events: none; background:
    radial-gradient(circle at 50% 50%, var(--saffron) 4px, transparent 5px) 0 0/52px 52px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; position: relative; }

.badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px;
  padding: 6px 16px 6px 6px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--ink-26); font-size: 13px;
  white-space: nowrap;
}
.badge strong { color: var(--ink); font-weight: 700; }
.badge-tag { background: var(--saffron); color: var(--paper); padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; }

/* hero price hook */
.price-hook {
  margin: 0 0 28px; padding: 18px 22px; background: var(--paper);
  border: 1px solid var(--ink-26); border-left: 4px solid var(--saffron);
  border-radius: 8px; display: flex; align-items: center; gap: 22px;
  max-width: 480px; flex-wrap: wrap;
}
.price-hook-num { font-size: 40px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; white-space: nowrap; font-feature-settings: "tnum"; }
.price-hook-rs { font-size: 26px; font-weight: 600; color: var(--saffron); margin-right: 2px; vertical-align: top; }
.price-hook-per { font-size: 13px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.price-hook-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 200px; }
.price-hook-meta strong { font-size: 14px; color: var(--ink); font-weight: 700; }
.price-hook-meta span { font-size: 12px; color: var(--muted); line-height: 1.4; }

.display { font-size: 84px; font-weight: 700; line-height: 0.98; letter-spacing: -0.04em; margin: 0 0 24px; color: var(--ink); }
.display em { font-weight: 600; }
.lede { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 480px; margin: 0 0 32px; }

/* Hero rhythm: even 28px gap between CTAs, price hook, and stats */
.cta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0 0 28px; }
.cta-row .btn-primary { padding: 15px 24px; font-weight: 700; }

.stats { margin-top: 28px; display: flex; align-items: center; gap: 32px; padding-top: 28px; border-top: 1px solid var(--ink-1a); }
.stat-num { font-size: 32px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.stat-num em { font-style: normal; }
.stat-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }
.stat-sep { width: 1px; height: 36px; background: var(--ink-26); }

/* receipt */
.receipt-wrap { position: relative; height: 540px; }
.receipt-shadow { position: absolute; inset: 0; background: var(--paper); border: 1px solid var(--ink-1a); border-radius: 12px; transform: rotate(2deg) translate(8px, 8px); }
.receipt {
  position: relative; background: var(--paper); border: 1px solid var(--ink-26);
  border-radius: 12px; padding: 28px; height: 100%;
  box-shadow: 0 24px 60px -10px rgba(26,42,74,0.2);
  display: flex; flex-direction: column;
}
.receipt-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.inv-num { font-size: 24px; font-weight: 700; color: var(--ink); margin-top: 6px; letter-spacing: -0.02em; white-space: nowrap; }
.inv-meta { font-size: 11px; color: var(--muted); margin-top: 4px; }
.dot-divider { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.dot-divider span { flex: 1; height: 1px; background: var(--ink-1a); }
.dot-divider i { width: 4px; height: 4px; background: var(--saffron); border-radius: 50%; }
.bill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; font-size: 12px; margin-bottom: 18px; }
.bill-grid strong { display: block; color: var(--ink); font-size: 13px; margin-top: 6px; }
.bill-grid .muted { margin-top: 2px; }

.lines { flex: 1; }
.lines-head, .line { display: grid; grid-template-columns: 1fr 50px 50px 70px; gap: 8px; }
.lines-head { font-size: 9px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; padding-bottom: 8px; border-bottom: 1px solid var(--ink-1a); font-weight: 700; }
.lines-head span:nth-child(2), .lines-head span:nth-child(3), .lines-head span:nth-child(4) { text-align: right; }
.line { padding: 8px 0; border-bottom: 1px dashed var(--ink-1a); font-size: 12px; }
.line span:nth-child(2) { text-align: right; }
.line span:nth-child(3) { text-align: right; color: var(--muted); }
.line strong { text-align: right; color: var(--ink); font-weight: 600; }

.totals { padding-top: 14px; border-top: 2px solid var(--ink); margin-top: 12px; }
.totals .row { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 4px; }
.total-row { align-items: center; }
.total-row span { font-size: 12px; font-weight: 700; color: var(--ink); letter-spacing: 0.06em; text-transform: uppercase; }
.total-row strong { font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }

.receipt-actions { display: flex; gap: 8px; margin-top: 16px; }
.pill { padding: 10px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.pill-dark { flex: 1; background: var(--ink); color: var(--paper); text-align: center; font-weight: 700; }
.pill-outline { background: var(--paper); color: var(--ink); border: 1px solid var(--ink-26); }

.upi-badge {
  position: absolute; bottom: -16px; left: -28px; padding: 12px 16px;
  background: var(--saffron); color: var(--paper); border-radius: 10px;
  box-shadow: 0 12px 30px -8px rgba(26,42,74,0.25); transform: rotate(-4deg);
}
.upi-badge small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; white-space: nowrap; }
.upi-badge strong { display: block; font-size: 14px; font-weight: 700; margin-top: 2px; white-space: nowrap; }

/* ===== STRIP ===== */
.strip { background: var(--ink); color: var(--paper); padding: 20px 0; overflow: hidden; }
.strip-row { display: flex; gap: 56px; font-size: 14px; font-weight: 500; white-space: nowrap; padding: 0 var(--pad); align-items: center; color: rgba(255,252,245,0.8); max-width: var(--max); margin: 0 auto; overflow-x: auto; scrollbar-width: none; }
.strip-row::-webkit-scrollbar { display: none; }
.strip-label { color: var(--saffron); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; }

/* ===== SECTION HELPERS ===== */
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; white-space: nowrap; }
.section-label span { width: 24px; height: 1.5px; background: var(--saffron); display: block; }
.section-label.dark { color: var(--saffron); }
.h2 { font-size: 60px; font-weight: 700; line-height: 1.02; letter-spacing: -0.04em; margin: 0; max-width: 800px; }
.h2.light { color: var(--paper); }
.h3 { font-size: 26px; font-weight: 700; margin: 16px 0 12px; letter-spacing: -0.02em; line-height: 1.1; }
.h3.light { color: var(--paper); font-size: 32px; }

/* ===== HOW ===== */
.how { padding: 120px var(--pad); max-width: var(--max); margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; margin-top: 72px; }
.how-line { position: absolute; top: 32px; left: 16%; right: 16%; height: 1px; border-top: 1px dashed var(--ink-26); z-index: 0; }
.step { padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--ink); display: grid; place-items: center; margin: 0 auto 24px; font-family: "Instrument Serif", serif; font-size: 24px; color: var(--ink); font-weight: 600; }
.step-kicker { font-size: 11px; color: var(--saffron); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 6px; }
.step h3 { font-size: 24px; font-weight: 700; margin: 0 0 4px; letter-spacing: -0.02em; }
.step-sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; font-style: italic; }
.step p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 auto; max-width: 280px; }

/* ===== PRODUCT SHOWCASE ===== */
.product { padding: 0 var(--pad) 120px; max-width: var(--max); margin: 0 auto; }
.product .h2 { margin-top: 16px; max-width: 900px; }

.card { background: var(--paper); border: 1px solid var(--ink-1a); border-radius: 16px; padding: 36px; }
.big-card { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center; padding: 48px; margin-top: 56px; margin-bottom: 24px; }
.big-card p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0 0 24px; }
.big-card .h3 { font-size: 32px; }

.tag { display: inline-block; padding: 4px 10px; border-radius: 4px; background: rgba(26,42,74,0.05); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--ink-1a); white-space: nowrap; }
.tag-dark { background: rgba(217,119,6,0.15); color: var(--saffron); border-color: rgba(217,119,6,0.25); }

.check-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-grid li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink); }
.check-grid li::before { content: "✓"; width: 16px; height: 16px; border-radius: 50%; background: var(--saffron); color: var(--paper); display: grid; place-items: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.light-checks li { color: var(--paper); }

/* browser mock */
.browser-mock { background: var(--cream2); border-radius: 12px; padding: 16px; border: 1px solid var(--ink-1a); }
.browser-bar { display: flex; gap: 6px; margin-bottom: 12px; align-items: center; }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; }
.browser-bar i:nth-child(1) { background: #FCA5A5; }
.browser-bar i:nth-child(2) { background: #FCD34D; }
.browser-bar i:nth-child(3) { background: #86EFAC; }
.browser-bar span { flex: 1; margin-left: 8px; height: 18px; border-radius: 4px; background: var(--paper); border: 1px solid var(--ink-14); padding: 0 8px; font-size: 10px; color: var(--muted); display: flex; align-items: center; }
.browser-body { background: var(--paper); border-radius: 8px; padding: 20px; border: 1px solid var(--ink-14); }
.bb-head { display: flex; justify-content: space-between; margin-bottom: 16px; align-items: flex-start; }
.bb-head strong { font-size: 18px; letter-spacing: -0.02em; color: var(--ink); display: block; }
.bb-actions { display: flex; gap: 6px; }
.bb-actions .pill { padding: 6px 12px; font-size: 11px; }
.bb-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.bb-fields > div { padding: 10px; border: 1px solid var(--ink-1a); border-radius: 6px; font-size: 11px; background: var(--cream2); }
.bb-fields strong { color: var(--ink); font-weight: 600; font-size: 12px; display: block; margin-top: 2px; }
.bb-table { background: var(--cream2); border-radius: 6px; padding: 10px; }
.bb-thead, .bb-row { display: grid; grid-template-columns: 1.5fr 60px 50px 50px 70px; gap: 8px; }
.bb-thead { color: var(--muted); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding-bottom: 6px; border-bottom: 1px solid var(--ink-1a); font-weight: 700; }
.bb-thead span:nth-child(n+3) { text-align: right; }
.bb-row { padding: 6px 0; border-bottom: 1px dashed var(--ink-14); font-size: 11px; }
.bb-row:last-child { border-bottom: none; }
.bb-row span:nth-child(3), .bb-row span:nth-child(4), .bb-row strong { text-align: right; }
.bb-row strong { color: var(--ink); font-weight: 600; }
.bb-total { display: flex; justify-content: flex-end; margin-top: 12px; }
.bb-total > div { text-align: right; }
.bb-amount { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.bb-tax { font-size: 10px; color: var(--saffron); font-weight: 600; margin-top: 2px; }

.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.two-up p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 24px; }

.ca-card { background: var(--cream2); border-radius: 8px; padding: 18px; border: 1px solid var(--ink-1a); }
.ca-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; gap: 12px; }
.ca-head > div { min-width: 0; }
.ca-head strong { font-size: 16px; font-weight: 700; color: var(--ink); margin-top: 2px; display: block; }
.ready { font-size: 10px; padding: 4px 10px; border-radius: 999px; background: var(--saffron); color: var(--paper); font-weight: 700; letter-spacing: 0.06em; white-space: nowrap; flex-shrink: 0; }
.ca-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--ink-14); gap: 12px; }
.ca-row > div { min-width: 0; flex: 1; }
.ca-row:last-of-type { border-bottom: none; }
.ca-row strong { font-size: 12px; color: var(--ink); font-weight: 600; display: block; }
.ca-row .muted { font-size: 10px; margin-top: 2px; display: block; }
.ca-row > span { flex-shrink: 0; white-space: nowrap; }
.ca-row > span { color: var(--saffron); font-weight: 700; font-size: 10px; }
.ca-actions { display: flex; gap: 6px; margin-top: 14px; }
.ca-actions .pill { padding: 9px 12px; font-size: 11px; }

.stock-card { background: var(--cream2); border-radius: 8px; padding: 18px; border: 1px solid var(--ink-1a); }
.stock-head { display: flex; justify-content: space-between; margin-bottom: 12px; align-items: center; gap: 8px; }
.stock-head strong { font-size: 12px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.stock-head .muted { white-space: nowrap; }
.stock-head .muted { font-size: 10px; }
.stock-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--ink-14); font-size: 12px; }
.stock-row:last-child { border-bottom: none; }
.stock-row .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.stock-row .dot.ok { background: #16A34A; }
.stock-row .dot.warn { background: var(--saffron); }
.stock-row .dot.bad { background: #DC2626; }
.stock-row > span:nth-child(2) { flex: 1; color: var(--ink); }
.stock-row .status { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.status.ok { color: #16A34A; }
.status.warn { color: var(--saffron); }
.status.bad { color: #DC2626; }
.stock-row > span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; min-width: 60px; text-align: right; }

.dark-card { background: var(--ink); color: var(--paper); border-radius: 16px; padding: 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.light-p { font-size: 14px; line-height: 1.7; color: rgba(255,252,245,0.7); margin: 0 0 24px; max-width: 480px; }
.dark-card .h3 { color: var(--paper); margin-top: 20px; }

.phones { display: flex; gap: 16px; justify-content: center; align-items: center; }
.phone { width: 200px; height: 400px; background: #000; border-radius: 30px; padding: 5px; box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4); }
.phone-screen { width: 100%; height: 100%; background: var(--paper); border-radius: 26px; padding: 14px; display: flex; flex-direction: column; color: var(--ink); }
.phone-screen .small { font-size: 9px; color: var(--muted); margin-bottom: 6px; }
.phone-amount { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px; }
.phone-row { background: var(--cream2); border-radius: 8px; padding: 10px; margin-bottom: 6px; position: relative; }
.phone-row strong { font-size: 10px; font-weight: 700; color: var(--ink); display: block; }
.phone-row .small { margin-top: 2px; margin-bottom: 0; }
.phone-row .paid, .phone-row .due { position: absolute; top: 10px; right: 10px; font-size: 8px; padding: 2px 6px; border-radius: 3px; font-weight: 700; }
.phone-row .paid { background: var(--saffron); color: var(--paper); }
.phone-row .due { background: var(--ink-26); color: var(--ink); }
.phone-cta { margin-top: auto; padding: 10px; border-radius: 8px; background: var(--ink); color: var(--paper); text-align: center; font-size: 11px; font-weight: 700; }

.wa { width: 220px; background: #E5DDD5; border-radius: 12px; padding: 12px; color: var(--ink); }
.wa-head { background: #075E54; color: var(--paper); margin: -12px -12px 8px; padding: 12px; border-radius: 12px 12px 0 0; display: flex; align-items: center; gap: 8px; }
.wa-head strong { font-size: 11px; font-weight: 600; display: block; }
.wa-head .small { font-size: 9px; opacity: 0.7; }
.wa-av { width: 28px; height: 28px; border-radius: 50%; background: var(--saffron); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.wa-msg { background: var(--paper); border-radius: 8px; padding: 8px; margin-bottom: 6px; max-width: 85%; box-shadow: 0 1px 1px rgba(0,0,0,0.05); font-size: 10px; }
.wa-msg.out { margin-left: auto; }
.wa-msg.in { background: #DCF8C6; max-width: 70%; }
.wa-pdf { background: var(--cream2); border-radius: 4px; padding: 8px; display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.pdf-icon { width: 28px; height: 32px; background: var(--ink); border-radius: 2px; display: grid; place-items: center; color: var(--paper); font-size: 9px; font-weight: 700; }
.wa-pdf strong { font-size: 9px; font-weight: 700; color: var(--ink); display: block; }
.wa-pdf .small { font-size: 8px; margin-top: 1px; }
.wa-time { font-size: 8px; color: var(--muted); text-align: right; margin-top: 4px; }

/* ===== AUDIENCE ===== */
.audience { padding: 0 var(--pad) 120px; max-width: var(--max); margin: 0 auto; }
.audience .h2 { margin-top: 16px; }
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.aud-tile { background: var(--paper); border: 1px solid var(--ink-1a); border-radius: 12px; padding: 28px; position: relative; overflow: hidden; }
.aud-num { position: absolute; top: 0; right: 0; width: 60px; height: 60px; border-left: 1px solid var(--ink-1a); border-bottom: 1px solid var(--ink-1a); border-bottom-left-radius: 12px; background: var(--cream); display: grid; place-items: center; font-size: 20px; font-weight: 700; color: var(--saffron); }
.aud-tag { display: inline-block; padding: 4px 10px; border-radius: 4px; background: var(--ink); color: var(--paper); font-size: 11px; font-weight: 600; margin-bottom: 14px; }
.aud-tile h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.02em; }
.aud-tile p { font-size: 13px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ===== PRICING ===== */
.pricing { padding: 0 var(--pad) 120px; max-width: var(--max); margin: 0 auto; }
.pricing .h2 { margin-top: 16px; }
.pricing-lede { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 560px; margin: 16px 0 36px; }

.pricing-toggle { display: inline-flex; padding: 6px; background: var(--paper); border: 1px solid var(--ink-1a); border-radius: 999px; gap: 4px; margin-bottom: 40px; }
.pricing-toggle button { background: transparent; border: none; padding: 10px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; transition: background .15s, color .15s; }
.pricing-toggle button:hover { color: var(--ink); }
.pricing-toggle button.active { background: var(--ink); color: var(--paper); }
.save-tag { background: var(--saffron); color: var(--paper); padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; }
.pricing-toggle button.active .save-tag { background: var(--saffron); color: var(--paper); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: var(--paper); border: 1px solid var(--ink-1a); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; position: relative; }
.price-card-featured { border: 2px solid var(--ink); box-shadow: 0 24px 60px -20px rgba(26,42,74,0.25); transform: translateY(-8px); background: var(--paper); }
.feat-flag { position: absolute; top: -14px; left: 32px; background: var(--saffron); color: var(--paper); padding: 6px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.price-card .tag { align-self: flex-start; white-space: nowrap; }
.tag-saffron { background: rgba(217,119,6,0.12); color: var(--saffron); border-color: rgba(217,119,6,0.25); }
.price-card .h3 { font-size: 24px; margin: 14px 0 4px; }
.price-amt { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 6px; font-feature-settings: "tnum"; flex-wrap: wrap; }
.price-amt .rs { font-size: 24px; font-weight: 600; color: var(--saffron); }
.price-amt .amt { font-size: 56px; font-weight: 700; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.price-amt .per { font-size: 14px; font-weight: 500; color: var(--muted); }
.price-equiv { font-size: 12px; color: var(--saffron); font-weight: 600; margin-bottom: 18px; min-height: 16px; }
.price-sub { font-size: 13px; color: var(--muted); margin: 0 0 24px; line-height: 1.5; }
.btn-block { width: 100%; justify-content: center; padding: 14px 20px; }
.price-feats { list-style: none; padding: 24px 0 0; margin: 0; border-top: 1px solid var(--ink-14); display: flex; flex-direction: column; gap: 14px; }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; color: var(--ink); }
.price-feats li .check { width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: rgba(217,119,6,0.12); color: var(--saffron); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-feats li::before { content: none; }
.price-feats li strong { font-weight: 700; color: var(--ink); display: inline; white-space: nowrap; }

.pricing-foot { display: flex; align-items: center; gap: 14px; margin-top: 40px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.pricing-foot i { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-26); }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .price-hook { flex-direction: column; align-items: flex-start; gap: 8px; }
}

.save-tag-inline { background: var(--saffron); color: var(--paper); padding: 2px 8px; border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: 0.04em; margin-left: 6px; white-space: nowrap; }

.all-features { margin-top: 40px; padding: 28px 32px; background: var(--paper); border: 1px solid var(--ink-1a); border-radius: 14px; }
.all-features-head { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.01em; }
.all-features-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 24px; }
.all-features-grid li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink); }
.all-features-grid li .check { width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: rgba(217,119,6,0.12); color: var(--saffron); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* ===== TESTIMONIAL ===== */
.testimonial { padding: 0 var(--pad) 120px; max-width: var(--max); margin: 0 auto; }
.testimonial > * { max-width: 760px; margin-left: 80px; }
.testimonial { background: var(--paper); border: 1px solid var(--ink-1a); border-radius: 16px; padding: 72px 64px; position: relative; max-width: calc(var(--max) - 112px); margin: 0 auto 120px; }
.quote-mark { position: absolute; top: 32px; left: 56px; font-size: 120px; line-height: 1; color: var(--saffron); font-family: "Instrument Serif", serif; opacity: 0.4; margin: 0; }
.testimonial blockquote { font-family: "Instrument Serif", serif; font-size: 36px; line-height: 1.25; font-weight: 400; color: var(--ink); margin: 0 0 32px; letter-spacing: -0.02em; }
.testimonial blockquote em { color: var(--saffron); font-style: italic; }
.author { display: flex; align-items: center; gap: 16px; }
.av { width: 48px; height: 48px; border-radius: 50%; background: var(--saffron); color: var(--paper); display: grid; place-items: center; font-weight: 700; font-size: 18px; }
.author strong { font-size: 15px; font-weight: 700; color: var(--ink); display: block; }

/* ===== CTA ===== */
.cta { padding: 0 var(--pad) 120px; max-width: var(--max); margin: 0 auto; }
.cta-inner { background: var(--ink); color: var(--paper); border-radius: 16px; padding: 80px 64px; position: relative; overflow: hidden; }
.cta-blob { position: absolute; top: -40px; right: -40px; width: 240px; height: 240px; border-radius: 50%; background: var(--saffron); opacity: 0.15; }
.cta-inner > * { position: relative; }
.cta-inner .h2 { font-size: 64px; margin-top: 20px; }
.cta-inner .light-p { max-width: 540px; margin-bottom: 36px; }
.cta-foot { margin-top: 24px; }
.link-light { background: transparent; border: none; color: rgba(255,252,245,0.7); font-size: 14px; cursor: pointer; padding: 0; text-decoration: underline; }
.link-light:hover { color: var(--saffron); }

/* ===== FOOTER ===== */
footer { padding: 40px var(--pad) 56px; border-top: 1px solid var(--ink-1a); max-width: var(--max); margin: 0 auto; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.foot-links { display: flex; gap: 28px; font-size: 13px; color: var(--muted); }
.foot-links a { text-decoration: none; }
.foot-links a:hover { color: var(--ink); }
.foot-bottom { font-size: 11px; color: var(--muted); padding-top: 24px; border-top: 1px solid var(--ink-14); display: flex; justify-content: space-between; }

/* ===== WHATSAPP FAB ===== */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  display: inline-flex; align-items: center; gap: 0;
  background: #25D366; color: #fff; border-radius: 999px;
  padding: 14px; text-decoration: none; font-weight: 600; font-size: 14px;
  box-shadow: 0 12px 32px -8px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.15);
  transition: all .18s cubic-bezier(.2,.7,.3,1);
}
.wa-fab span {
  max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0;
  transition: max-width .18s, opacity .18s, margin-left .18s;
}
.wa-fab:hover { padding: 12px 18px 12px 12px; gap: 10px; }
.wa-fab:hover span { max-width: 200px; opacity: 1; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; background: rgba(26,42,74,0.55); z-index: 100; display: grid; place-items: center; padding: 24px; backdrop-filter: blur(4px); }
.modal[hidden] { display: none; }
.modal-card { background: var(--paper); border-radius: 16px; width: 100%; max-width: 720px; max-height: 90vh; overflow: auto; position: relative; box-shadow: 0 30px 80px -10px rgba(0,0,0,0.4); border: 1px solid var(--ink-1a); }
.modal-close { position: absolute; top: 16px; right: 16px; background: transparent; border: none; font-size: 24px; color: var(--muted); cursor: pointer; line-height: 1; }
.modal-body { padding: 40px 48px; }
.modal-body .h3 { font-size: 26px; }

.step-pills { display: flex; gap: 6px; margin: 20px 0; font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.step-pills .active { color: var(--ink); }

.date-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 12px; }
.date-grid button { padding: 12px 4px; border-radius: 8px; border: 1px solid var(--ink-26); background: var(--paper); color: var(--ink); cursor: pointer; text-align: center; }
.date-grid button:hover { border-color: var(--ink); }
.date-grid button.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.date-grid button .dow { font-size: 10px; opacity: 0.7; margin-bottom: 2px; display: block; }
.date-grid button .dom { font-size: 18px; font-weight: 700; line-height: 1; display: block; }
.date-grid button .mon { font-size: 10px; opacity: 0.7; margin-top: 2px; display: block; }

.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.time-grid button { padding: 14px 8px; border-radius: 8px; border: 1px solid var(--ink-26); background: var(--paper); color: var(--ink); cursor: pointer; font-size: 14px; font-weight: 600; }
.time-grid button:hover { border-color: var(--ink); background: var(--cream); }

.link-back { margin-top: 20px; background: transparent; border: none; color: var(--muted); font-size: 13px; cursor: pointer; padding: 0; }
.link-back:hover { color: var(--ink); }

.selected-box { background: var(--cream); padding: 14px; border-radius: 8px; margin: 16px 0 20px; font-size: 13px; color: var(--ink); border: 1px solid var(--ink-1a); }

#booking-form label { display: block; margin-bottom: 14px; }
#booking-form label > span { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 6px; display: block; }
#booking-form input { width: 100%; padding: 10px 12px; border-radius: 6px; border: 1px solid var(--ink-26); font-size: 14px; font-family: inherit; background: var(--paper); color: var(--ink); }
#booking-form input:focus { outline: none; border-color: var(--ink); }
.form-actions { display: flex; gap: 10px; align-items: center; margin-top: 24px; }
.form-actions .btn { padding: 13px 24px; }

#book-done { padding: 24px 0; text-align: center; }
.check-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--saffron); color: var(--paper); display: grid; place-items: center; margin: 0 auto 24px; font-size: 28px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  :root { --pad: 24px; }
  .nav { flex-wrap: wrap; gap: 12px; padding: 16px var(--pad); }
  .wordmark { width: 130px; }
  .nav-links { order: 3; flex-basis: 100%; gap: 18px; font-size: 13px; overflow-x: auto; padding-bottom: 4px; }
  .nav-cta .link { display: none; }
  .hero { padding: 48px var(--pad) 64px; }
  .hero-grid, .big-card, .two-up, .dark-card, .aud-grid, .how-grid, .foot-top, .foot-bottom { grid-template-columns: 1fr; gap: 32px; }
  .display { font-size: 48px; }
  .h2 { font-size: 36px; }
  .h3.light, .cta-inner .h2 { font-size: 32px; }
  .lede { font-size: 16px; }
  .stats { flex-wrap: wrap; gap: 16px; margin-top: 24px; padding-top: 24px; }
  .stat-sep { display: none; }
  .stat-num { font-size: 26px; }
  .receipt-wrap { height: auto; min-height: 460px; }
  .testimonial { padding: 48px 28px; }
  .testimonial > * { margin-left: 0; }
  .quote-mark { left: 24px; top: 12px; font-size: 72px; }
  .testimonial blockquote { font-size: 22px; }
  .modal-body { padding: 32px 24px; }
  .how-line { display: none; }
  .phones { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card-featured { transform: none; order: -1; }
  .price-hook { flex-direction: row; }
  .all-features-grid { grid-template-columns: repeat(2, 1fr); }
  .product, .audience, .pricing, .how, .cta { padding-left: var(--pad); padding-right: var(--pad); padding-bottom: 80px; }
  .how { padding-top: 80px; }
  .big-card { padding: 32px 24px; }
  .dark-card { padding: 36px 28px; }
  .cta-inner { padding: 56px 32px; }
  .badge { white-space: normal; font-size: 12px; }
  .strip-row { gap: 32px; font-size: 12px; }
  footer { padding: 32px var(--pad); }
  .foot-top, .foot-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  :root { --pad: 18px; }
  .display { font-size: 38px; line-height: 1.02; }
  .h2 { font-size: 28px; }
  .h3 { font-size: 20px; }
  .h3.light, .cta-inner .h2 { font-size: 26px; }
  .lede { font-size: 15px; }
  .stat-num { font-size: 22px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-outline { display: none; }
  .nav-cta .btn-primary { padding: 9px 14px; font-size: 13px; }
  .wordmark { width: 110px; }
  .cta-inner { padding: 44px 22px; }
  .modal-body { padding: 22px 16px; }
  .modal-body .h3 { font-size: 22px; }
  .date-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .date-grid button { padding: 10px 2px; }
  .date-grid button .dom { font-size: 16px; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  body::before, body::after { height: 6px; }
  .price-amt .amt { font-size: 44px; }
  .price-card { padding: 24px 22px; }
  .all-features { padding: 22px 20px; }
  .all-features-grid { grid-template-columns: 1fr; gap: 10px; }
  .price-hook { padding: 14px 16px; gap: 14px; flex-direction: column; align-items: flex-start; }
  .price-hook-num { font-size: 34px; }
  .pricing-foot { font-size: 12px; gap: 10px; }
  .pricing-foot i { display: none; }
  .receipt { padding: 20px; }
  .inv-num { font-size: 20px; }
  .totals .total-row strong { font-size: 22px; }
  .upi-badge { left: -12px; bottom: -12px; padding: 10px 12px; }
  .receipt-wrap { min-height: 0; }
  .step h3 { font-size: 20px; }
  .step p { font-size: 13px; }
  .browser-mock { padding: 12px; }
  .bb-fields { grid-template-columns: 1fr; }
  .bb-thead, .bb-row { grid-template-columns: 1.4fr 50px 40px 40px 60px; font-size: 10px; }
  .audience .h2 { max-width: 100%; }
  .aud-tile { padding: 24px; }
  .feat-flag { left: 24px; }
  .price-card-featured { transform: none; }
  .wa-fab { bottom: 16px; right: 16px; padding: 12px; }
  .wa-fab svg { width: 24px; height: 24px; }
  .quote-mark { font-size: 60px; }
  .testimonial blockquote { font-size: 19px; }
  .testimonial { padding: 56px 22px 36px; }
  .stats { gap: 12px; }
  .stats > div:not(.stat-sep) { min-width: 45%; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn, .cta-row .store-btn { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .display { font-size: 32px; }
  .h2 { font-size: 24px; }
  .price-amt .amt { font-size: 38px; }
}
