@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --orange:   #E85A1E; --orange-h: #F06B2C;
  --orange-l: rgba(232,90,30,.08); --orange-b: rgba(232,90,30,.18);
  --charcoal: #1A1D22; --mid: #4A5260; --muted: #8A939F;
  --rule:     #E8EAED; --bg: #FFFFFF; --bg-off: #F7F8FA;
  --green:    #10B981;
  --font-h:   'Outfit', sans-serif; --font-b: 'DM Sans', sans-serif;
  --max: 1200px; --pad: clamp(20px, 4vw, 48px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--charcoal); font-family: var(--font-b); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section     { padding: 80px var(--pad); }
.section-alt { padding: 80px var(--pad); background: var(--bg-off); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.two-col     { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }
.two-col-eq  { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

/* ── Typography ─────────────────────────────────────── */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-h); font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); flex-shrink: 0; }
h1 { font-family: var(--font-h); font-size: clamp(34px, 4.2vw, 56px); font-weight: 800; line-height: 1.07; letter-spacing: -.025em; color: var(--charcoal); margin-bottom: 20px; }
h2 { font-family: var(--font-h); font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; color: var(--charcoal); margin-bottom: 14px; }
h3 { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--charcoal); line-height: 1.25; margin-bottom: 10px; }
h4 { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.hl   { color: var(--orange); }
.lead { font-size: 18px; color: var(--mid); font-weight: 300; line-height: 1.7; max-width: 640px; margin-bottom: 36px; }
.lead strong { color: var(--charcoal); font-weight: 500; }
.section-lead { font-size: 16px; color: var(--mid); font-weight: 300; line-height: 1.65; max-width: 560px; margin-bottom: 44px; }

/* ── Prose ──────────────────────────────────────────── */
.prose { font-size: 15.5px; color: var(--mid); line-height: 1.8; }
.prose p  { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--charcoal); font-weight: 600; }
.prose h3 { margin-top: 32px; margin-bottom: 10px; }
.prose ul { padding-left: 20px; margin-bottom: 18px; }
.prose li { margin-bottom: 7px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; font-family: var(--font-b); font-size: 14px; font-weight: 600; border-radius: 2px; cursor: pointer; transition: all .2s; border: 2px solid transparent; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-h); border-color: var(--orange-h); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,90,30,.25); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--rule); }
.btn-outline:hover { border-color: var(--charcoal); }
.btn-white { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── Nav ─────────────────────────────────────────────── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--rule); transition: box-shadow .3s; }
#nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo-fb { display: none; font-family: var(--font-h); font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--charcoal); }
.nav-logo-fb span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { padding: 7px 13px; font-size: 13.5px; font-weight: 500; color: var(--mid); border-radius: 2px; transition: color .2s; }
.nav-links a:hover { color: var(--charcoal); }
.nav-cta { padding: 9px 20px !important; background: var(--orange) !important; color: #fff !important; font-weight: 600 !important; border-radius: 2px; transition: background .2s !important; }
.nav-cta:hover { background: var(--orange-h) !important; color: #fff !important; }

/* ── Breadcrumb ─────────────────────────────────────── */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { margin: 0 7px; opacity: .5; }

/* ── Page hero ──────────────────────────────────────── */
.page-hero { padding: 140px var(--pad) 72px; border-bottom: 1px solid var(--rule); background: var(--bg-off); }

/* ── Checklist ──────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 11px; }
.check-item { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; color: var(--mid); }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(16,185,129,.1); border: 1.5px solid rgba(16,185,129,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 11px; color: var(--green); font-weight: 700; }

/* ── Info box ───────────────────────────────────────── */
.info-box { background: var(--orange-l); border: 1px solid var(--orange-b); padding: 22px 26px; border-radius: 2px; margin: 24px 0; }
.info-box h4 { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.info-box p { font-size: 13.5px; color: var(--mid); line-height: 1.65; }

/* ── Price box ──────────────────────────────────────── */
.price-box { background: var(--bg-off); border: 1px solid var(--rule); padding: 32px; margin-bottom: 20px; }
.price-box .badge { font-size: 10px; font-weight: 700; color: var(--orange); letter-spacing: .13em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.price-num { font-family: var(--font-h); font-size: 46px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--charcoal); }
.price-num span { color: var(--orange); }
.price-num.sm { font-size: 34px; }
.price-unit { font-size: 13px; color: var(--muted); margin-top: 4px; margin-bottom: 16px; }
.price-note { font-size: 12.5px; color: var(--mid); line-height: 1.6; border-top: 1px solid var(--rule); padding-top: 14px; }

/* ── Features grid ──────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 44px; }
.feature { background: #fff; border: 1px solid var(--rule); padding: 28px; transition: box-shadow .2s; }
.feature:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.feat-icon { width: 44px; height: 44px; background: var(--orange-l); border: 1px solid var(--orange-b); border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.75; }
.feature p { font-size: 13.5px; color: var(--mid); line-height: 1.65; margin-top: 7px; }

/* ── Tags ───────────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: 11px; color: var(--muted); padding: 3px 9px; border: 1px solid var(--rule); border-radius: 2px; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 44px; }
details.faq-item { background: #fff; border: 1px solid var(--rule); overflow: hidden; }
details.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; gap: 16px; font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--charcoal); line-height: 1.35; list-style: none; transition: background .2s; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { background: var(--bg-off); }
details.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--orange); flex-shrink: 0; transition: transform .25s; }
details[open].faq-item summary::after { transform: rotate(45deg); }
.faq-a { padding: 16px 24px 20px; font-size: 13.5px; color: var(--mid); line-height: 1.7; border-top: 1px solid var(--rule); }

/* ── Page CTA ───────────────────────────────────────── */
.page-cta { background: var(--charcoal); padding: 80px var(--pad); text-align: center; position: relative; overflow: hidden; }
.page-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(232,90,30,.13) 0%, transparent 60%); pointer-events: none; }
.page-cta h2 { color: #fff; margin-bottom: 14px; position: relative; }
.page-cta p { font-size: 16px; color: rgba(255,255,255,.5); margin-bottom: 32px; font-weight: 300; position: relative; max-width: 500px; margin-left: auto; margin-right: auto; }
.page-cta .btn-row { justify-content: center; position: relative; }

/* ── Footer ─────────────────────────────────────────── */
footer { background: var(--bg-off); border-top: 1px solid var(--rule); }
.footer-partners { border-bottom: 1px solid var(--rule); padding: 22px var(--pad); }
.footer-partners .fp-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.fp-lbl { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.fp-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.fp-logos img { height: 20px; width: auto; opacity: .42; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.fp-logos img:hover { opacity: .85; filter: grayscale(0); }
.footer-bottom { padding: 28px var(--pad); }
.footer-bottom .fi { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 22px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--charcoal); }

/* ── Reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.page-hero .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .two-col, .two-col-eq { grid-template-columns: 1fr; gap: 40px; }
  .features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: flex-start; }
}
