/* ═══════════════════════════════════════════════════════════
   ONLINIQ — Shared Marketing Stylesheet
   Pages: index, features, pricing, privacy-policy, terms
═══════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale }
body { font-family: 'Sora', sans-serif; color: #111; background: #fff; line-height: 1.6; overflow-x: hidden }
a { text-decoration: none; color: inherit }
img, svg { max-width: 100%; display: block }
button { font-family: inherit; cursor: pointer }

/* ── Variables ──────────────────────────────────────────── */
:root {
  --brand:       #C0162A;
  --brand-dark:  #a0111f;
  --brand-light: rgba(192,22,42,.08);
  --brand-mid:   rgba(192,22,42,.15);
  --nav:         #18080A;
  --bg:          #FFFFFF;
  --bg-alt:      #F7F8FA;
  --bg-dark:     #18080A;
  --ink:         #111111;
  --ink-2:       #333333;
  --ink-3:       #666666;
  --ink-4:       #999999;
  --border:      #E8E8EC;
  --radius:      12px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.12);
  --transition:  all .22s cubic-bezier(.4,0,.2,1);
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem }
.section    { padding: 6rem 0 }
.section-alt  { background: var(--bg-alt) }
.section-dark { background: var(--bg-dark) }

/* ── Typography helpers ──────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .75rem;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--brand) }

.section-title {
  font-size: clamp(28px,3.5vw,46px); font-weight: 700;
  line-height: 1.08; letter-spacing: -.5px; color: var(--ink); margin-bottom: 1rem;
}
.section-sub {
  font-size: 15px; color: var(--ink-3); line-height: 1.85; max-width: 560px; font-weight: 300;
}

.section-head { margin-bottom: 3.5rem }
.centered { text-align: center }
.centered .section-label { justify-content: center }
.centered .section-label::before { display: none }
.centered .section-sub { margin: 0 auto }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; padding: 14px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 500; border: none;
  box-shadow: 0 4px 16px rgba(192,22,42,.35); transition: var(--transition);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,22,42,.45) }

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.85);
  padding: 14px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 400;
  border: 1px solid rgba(255,255,255,.15); transition: var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); color: #fff }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--brand);
  padding: 13px 26px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--brand); transition: var(--transition);
}
.btn-outline:hover { background: var(--brand); color: #fff }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand);
  padding: 14px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 600; border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.18); transition: var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22) }

/* ── Logo image (replaces text logo in nav + footer) ────── */
.logo img { height: 36px; width: auto; display: block }
.footer-logo img { height: 44px; width: auto; display: block }
.footer-logo { margin-bottom: .75rem }

/* ── Nav ─────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--nav); border-bottom: 1px solid rgba(255,255,255,.05);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.5) }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo {
  font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.3px;
  display: flex; align-items: center;
}
.logo .iq { color: var(--brand); font-style: italic }
.logo-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand);
  margin-left: 3px; animation: dotPulse 2.4s ease-in-out infinite;
}

.nav-links { display: flex; align-items: center; gap: 2.25rem }
.nav-links a {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,.5); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff }
.nav-links a.active { font-weight: 500 }

.nav-right { display: flex; align-items: center; gap: 1rem }

.btn-nav-login {
  display: inline-flex; align-items: center;
  background: var(--brand); color: #fff;
  padding: 8px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  transition: background .2s, transform .15s;
}
.btn-nav-login:hover { background: var(--brand-dark); transform: translateY(-1px) }

.ham {
  display: none; background: none; border: none; color: rgba(255,255,255,.65);
  font-size: 22px; padding: 4px; line-height: 1;
}
.ham i { display: block }

/* ── Mobile menu ─────────────────────────────────────────── */
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; inset: 0; z-index: 998;
  background: var(--nav); padding: 5rem 2rem 2.5rem;
  gap: .25rem;
}
.mobile-menu.open { display: flex }
.mob-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; font-size: 22px;
  color: rgba(255,255,255,.6); line-height: 1;
}
.mob-close i { display: block }
.mobile-menu a {
  font-size: 17px; font-weight: 400; color: rgba(255,255,255,.55);
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.07); transition: color .2s;
}
.mobile-menu a:hover { color: #fff }
.mobile-menu a:last-of-type { border-bottom: none }
.mobile-login {
  margin-top: 1.5rem; background: var(--brand); color: #fff !important;
  border-radius: 10px; padding: 14px 0 !important; text-align: center;
  font-weight: 500 !important; font-size: 14px !important; border-bottom: none !important;
  justify-content: center;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 1.5rem 5rem;
  background: var(--bg-dark); position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,22,42,.18) 0%, transparent 68%);
  top: 50%; left: 50%; transform: translate(-50%,-60%); pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1; max-width: 820px;
  animation: fadeUp .9s cubic-bezier(.4,0,.2,1) both;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.6);
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,.1);
}
.hero-eyebrow .accent { color: var(--brand) }

.hero-h1 {
  font-size: clamp(38px,6vw,72px); font-weight: 700;
  line-height: 1.04; letter-spacing: -2px; color: #fff; margin-bottom: 1.5rem;
}
.hero-h1 .accent { color: var(--brand) }
.hero-h1 .line2 { display: block }

.hero-sub {
  font-size: clamp(14px,2vw,17px); color: rgba(255,255,255,.45); line-height: 1.85;
  max-width: 560px; margin: 0 auto 2.5rem; font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap }

/* ── Ticker ──────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--brand); padding: 14px 0; overflow: hidden; position: relative;
}
.ticker-inner {
  display: flex; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused }
.ticker-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; color: #fff; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap; padding: 0 2rem;
}
.ticker-sep { color: rgba(255,255,255,.4); font-size: 18px; margin: 0 }

/* ── Proof bar ──────────────────────────────────────────── */
.proof-bar { padding: 3.5rem 0; background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,.06) }
.proof-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; text-align: center;
}
.proof-num {
  font-size: clamp(32px,4vw,48px); font-weight: 700; color: #fff;
  letter-spacing: -1.5px; line-height: 1;
}
.proof-num .proof-accent { color: var(--brand) }
.proof-label { font-size: 12px; color: rgba(255,255,255,.35); margin-top: .6rem; line-height: 1.6 }
.proof-divider { width: 1px; background: rgba(255,255,255,.08); display: none }

/* ── Feature cards (homepage) ────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 3rem;
}
.feature-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #d0d0d8 }
.feature-card:hover::after { transform: scaleX(1) }

.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon i { font-size: 20px; color: var(--brand) }
.feature-name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: .5rem }
.feature-desc { font-size: 13px; color: var(--ink-3); line-height: 1.75 }

/* ── Scenario cards ──────────────────────────────────────── */
.scenarios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 3rem }
.scenario-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; transition: var(--transition);
}
.scenario-card:hover { box-shadow: var(--shadow-md); border-color: #d0d0d8 }
.scenario-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1rem;
}
.scenario-tag i { font-size: 14px }
.scenario-brand { font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: .75rem }
.scenario-text { font-size: 13px; color: var(--ink-3); line-height: 1.8; margin-bottom: 1.5rem }
.scenario-cost {
  background: rgba(192,22,42,.05); border: 1px solid rgba(192,22,42,.12);
  border-radius: 8px; padding: .875rem 1rem;
}
.scenario-cost-label {
  display: block; font-size: 10px; font-weight: 600; color: var(--brand);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 3px;
}
.scenario-cost-value { font-size: 13px; font-weight: 600; color: var(--ink-2) }

/* ── Pricing preview (homepage) ──────────────────────────── */
.pricing-preview-wrap { display: flex; flex-direction: column; align-items: center }
.pricing-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; width: 100%; max-width: 720px;
}
.pricing-preview-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; transition: var(--transition);
}
.pricing-preview-card.featured {
  border: 2px solid var(--brand); box-shadow: 0 0 0 5px rgba(192,22,42,.06);
}
.pricing-preview-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px) }
.pricing-preview-card.featured:hover { box-shadow: var(--shadow-md), 0 0 0 5px rgba(192,22,42,.06) }
.pricing-tier-name { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: .25rem }
.featured-badge {
  display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand); background: var(--brand-light);
  padding: 3px 10px; border-radius: 30px; margin-left: 8px; vertical-align: middle;
}
.pricing-amount {
  font-size: 38px; font-weight: 700; color: var(--brand); letter-spacing: -1.5px;
  margin: 1rem 0 .25rem; line-height: 1;
}
.pricing-period { font-size: 12px; color: var(--ink-4); margin-bottom: 1.5rem }
.pricing-mini-list { list-style: none }
.pricing-mini-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--ink-2); padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-mini-list li:last-child { border-bottom: none }
.pricing-mini-list i { font-size: 15px; color: var(--brand); flex-shrink: 0 }
.pricing-preview-cta { margin-top: 2.5rem }

/* ── INR / USD toggle ────────────────────────────────────── */
.price-inr { display: inline }
.price-usd { display: none }
body.intl .price-inr { display: none }
body.intl .price-usd { display: inline }

.currency-toggle {
  display: inline-flex; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 9px; padding: 4px; gap: 3px;
}
.currency-btn {
  padding: 7px 20px; border-radius: 7px; border: none; background: transparent;
  font-size: 13px; font-weight: 500; color: var(--ink-3); font-family: 'Sora',sans-serif;
  transition: var(--transition);
}
.currency-btn.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm) }
.currency-btn:not(.active):hover { color: var(--ink-2) }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 2.5rem auto 0 }
.faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 8px; overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--brand) }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; cursor: pointer; user-select: none;
  font-size: 14px; font-weight: 500; color: var(--ink); transition: color .2s;
}
.faq-q:hover { color: var(--brand) }
.faq-item.open .faq-q { color: var(--brand) }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: transform .3s, background .2s, color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand); color: #fff }
.faq-a {
  font-size: 13px; color: var(--ink-3); line-height: 1.85;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 1.5rem 1.25rem }

/* ── CTA strip ───────────────────────────────────────────── */
.cta-strip {
  background: var(--brand); padding: 5.5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08); top: -260px; left: -120px; pointer-events: none;
}
.cta-strip::after {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06); bottom: -160px; right: -80px; pointer-events: none;
}
.cta-content { position: relative; z-index: 1 }
.cta-h2 {
  font-size: clamp(28px,3.5vw,46px); font-weight: 700; color: #fff;
  letter-spacing: -.5px; margin-bottom: .75rem;
}
.cta-sub { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 2rem; font-weight: 300 }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap }

/* ── Footer ──────────────────────────────────────────────── */
footer { background: var(--bg-dark); padding: 4.5rem 0 2rem }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -.3px; margin-bottom: .75rem;
}
.footer-logo span { color: rgba(240,140,150,1); font-style: italic }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.28); line-height: 1.75; font-weight: 300 }
.footer-social { display: flex; gap: 10px; margin-top: 1.5rem }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.45);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  border: 1px solid rgba(255,255,255,.08); transition: var(--transition);
}
.social-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand) }
.footer-col h4 {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.28);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,.38);
  margin-bottom: .7rem; transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.85) }
.footer-bottom {
  padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.18); flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.18); transition: color .2s }
.footer-bottom a:hover { color: rgba(255,255,255,.5) }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--bg-dark); padding: 9rem 1.5rem 5rem; text-align: center;
}
.page-hero .hero-eyebrow { margin-bottom: 1.5rem }
.page-hero h1 {
  font-size: clamp(32px,4.5vw,58px); font-weight: 700; color: #fff;
  letter-spacing: -1.5px; line-height: 1.06; margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: clamp(14px,1.8vw,17px); color: rgba(255,255,255,.4);
  max-width: 520px; margin: 0 auto; line-height: 1.85; font-weight: 300;
}

/* ── Feature deep-dive (features.html) ───────────────────── */
.feature-deep-section { padding: 5rem 0; border-bottom: 1px solid var(--border) }
.feature-deep-section:last-child { border-bottom: none }
.feature-deep {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.feature-deep.reverse .feature-deep-copy { order: 2 }
.feature-deep.reverse .feature-deep-visual { order: 1 }

.feature-deep-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-deep-icon i { font-size: 26px; color: var(--brand) }
.feature-deep h2 { font-size: clamp(24px,2.5vw,34px); font-weight: 700; margin-bottom: 1rem }
.feature-deep > .feature-deep-copy > p, .feature-deep-copy > p {
  font-size: 15px; color: var(--ink-3); line-height: 1.85; margin-bottom: 1rem;
}
.feature-checklist { list-style: none; margin-top: 1.5rem }
.feature-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-2); padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.feature-checklist li:last-child { border-bottom: none }
.feature-checklist i { font-size: 16px; color: var(--brand); margin-top: 2px; flex-shrink: 0 }

/* ── App-style visual mockup ──────────────────────────────── */
.app-mock {
  background: #1c0f10; border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.app-mock-bar {
  background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .75rem 1.25rem; display: flex; align-items: center; gap: .5rem;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50% }
.mock-dot.r { background: var(--brand) }
.mock-dot.a { background: #f5a623 }
.mock-dot.g { background: #27c93f }
.app-mock-title { font-size: 12px; color: rgba(255,255,255,.3); margin-left: .5rem }
.app-mock-body { padding: 1.5rem }

.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.mock-row:last-child { border-bottom: none }
.mock-label { font-size: 11px; color: rgba(255,255,255,.3); font-weight: 500 }
.mock-val { font-size: 12px; color: rgba(255,255,255,.65) }
.mock-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 30px;
}
.mock-badge.sent { background: rgba(39,201,63,.15); color: #27c93f }
.mock-badge.queued { background: rgba(245,166,35,.12); color: #f5a623 }
.mock-badge.approved { background: rgba(192,22,42,.15); color: #e87080 }

.mock-msg-bubble {
  background: rgba(255,255,255,.06); border-radius: 10px 10px 10px 2px;
  padding: .875rem 1rem; margin-top: 1rem;
  font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.65;
}
.mock-msg-bubble .msg-meta {
  font-size: 10px; color: rgba(255,255,255,.25); margin-top: .5rem; text-align: right;
}

.mock-contact-list { display: flex; flex-direction: column; gap: 2px }
.mock-contact {
  display: flex; align-items: center; gap: .875rem;
  padding: .75rem .5rem; border-radius: 8px; cursor: default; transition: background .15s;
}
.mock-contact.active { background: rgba(192,22,42,.15) }
.mock-contact:not(.active):hover { background: rgba(255,255,255,.04) }
.mock-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5);
}
.mock-contact-info { flex: 1; min-width: 0 }
.mock-contact-name { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.7); line-height: 1 }
.mock-contact-preview { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.mock-contact-time { font-size: 10px; color: rgba(255,255,255,.25); flex-shrink: 0 }

/* ── Pricing page ────────────────────────────────────────── */
.pricing-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 760px; margin: 0 auto;
}
.pricing-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 2.25rem; position: relative; transition: var(--transition);
}
.pricing-card.featured {
  border: 2px solid var(--brand); box-shadow: 0 0 0 6px rgba(192,22,42,.06);
}
.pricing-card:hover { box-shadow: var(--shadow-md) }
.pricing-card.featured:hover { box-shadow: var(--shadow-md), 0 0 0 6px rgba(192,22,42,.06) }
.plan-label { font-size: 12px; font-weight: 600; color: var(--ink-4); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem }
.plan-name { font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: .25rem }
.plan-desc { font-size: 13px; color: var(--ink-4); margin-bottom: 1.5rem; line-height: 1.6 }
.plan-price { font-size: 46px; font-weight: 700; color: var(--brand); letter-spacing: -2px; line-height: 1 }
.plan-period { font-size: 13px; color: var(--ink-4); margin-bottom: 1.75rem }
.plan-cta { display: block; text-align: center; width: 100%; margin-bottom: 2rem }
.plan-features-label {
  font-size: 11px; font-weight: 600; color: var(--ink-4);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem;
}
.plan-features { list-style: none }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink-2); padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none }
.plan-features i.check { font-size: 15px; color: var(--brand); flex-shrink: 0; margin-top: 1px }

.pricing-compare { margin-top: 4rem }
.compare-title { font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 2rem }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border) }
.compare-table th {
  background: var(--bg-alt); padding: 1.25rem 1.5rem;
  font-size: 13px; font-weight: 600; color: var(--ink-3); border-bottom: 1px solid var(--border);
}
.compare-table th.col-feature { text-align: left }
.compare-table th.col-tier { text-align: center; font-size: 15px; color: var(--ink); font-weight: 700 }
.compare-table td {
  padding: 1rem 1.5rem; font-size: 13px; color: var(--ink-2);
  border-bottom: 1px solid var(--border);
}
.compare-table td.col-tier-val { text-align: center }
.compare-table tr:last-child td { border-bottom: none }
.compare-table tr:hover td { background: var(--bg-alt) }
.ico-check { font-size: 18px; color: var(--brand) }
.ico-minus { font-size: 18px; color: var(--ink-4) }

.markup-box {
  background: var(--bg-dark); border-radius: 20px; padding: 2.5rem; margin-top: 4rem; color: #fff;
}
.markup-box h3 { font-size: 22px; font-weight: 700; margin-bottom: .75rem }
.markup-box p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.85; margin-bottom: 1rem }
.markup-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 1.5rem }
.markup-side {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 1.25rem;
}
.markup-side.theirs { border-color: rgba(192,22,42,.25) }
.markup-side-label {
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.markup-side.theirs .markup-side-label { color: rgba(220,80,90,.8) }
.markup-side.ours .markup-side-label { color: rgba(255,255,255,.4) }
.markup-line { display: flex; justify-content: space-between; align-items: center; font-size: 12px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05) }
.markup-line:last-child { border-bottom: none; font-weight: 600; font-size: 13px }
.markup-line .k { color: rgba(255,255,255,.45) }
.markup-line .v { color: rgba(255,255,255,.8) }

/* ── Legal pages ─────────────────────────────────────────── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 4.5rem 1.5rem 6rem }
.legal-wrap h1 { font-size: 34px; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.5px }
.legal-updated { font-size: 13px; color: var(--ink-4); margin-bottom: 3rem }
.legal-wrap h2 { font-size: 20px; font-weight: 700; margin: 2.5rem 0 .875rem; color: var(--ink) }
.legal-wrap h3 { font-size: 16px; font-weight: 600; margin: 1.75rem 0 .75rem; color: var(--ink-2) }
.legal-wrap p { font-size: 14px; color: var(--ink-2); line-height: 1.9; margin-bottom: 1rem }
.legal-wrap ul, .legal-wrap ol { padding-left: 1.5rem; margin-bottom: 1rem }
.legal-wrap li { font-size: 14px; color: var(--ink-2); line-height: 1.9; margin-bottom: .4rem }
.legal-wrap a { color: var(--brand); text-decoration: underline }
.legal-wrap a:hover { color: var(--brand-dark) }
.legal-divider { height: 1px; background: var(--border); margin: 3rem 0 }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none }

.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: none }

.reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: none }

.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.15s }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.25s }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.35s }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.45s }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.55s }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(32px) } to { opacity:1; transform:none } }
@keyframes ticker { from { transform:translateX(0) } to { transform:translateX(-50%) } }
@keyframes dotPulse { 0%,100% { transform:scale(1); opacity:1 } 50% { transform:scale(1.4); opacity:.7 } }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none }
  .ham { display: block }
  .features-grid { grid-template-columns: 1fr 1fr }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 2rem }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem }
  .feature-deep { grid-template-columns: 1fr; gap: 3rem }
  .feature-deep.reverse .feature-deep-copy { order: 1 }
  .feature-deep.reverse .feature-deep-visual { order: 2 }
  .pricing-cards { max-width: 100% }
  .markup-split { grid-template-columns: 1fr }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr }
  .scenarios-grid { grid-template-columns: 1fr }
  .pricing-preview-grid { grid-template-columns: 1fr; max-width: 420px }
  .pricing-cards { grid-template-columns: 1fr }
  .footer-inner { grid-template-columns: 1fr }
  .hero-h1 { letter-spacing: -1px }
  .section { padding: 4rem 0 }
  .proof-grid { grid-template-columns: 1fr 1fr }
  .cta-strip { padding: 4rem 0 }
  .compare-table { font-size: 12px }
  .compare-table th, .compare-table td { padding: .875rem 1rem }
}
