/* ============================================================
   AdvEntVIPClub (AEVC) — Shared Design System
   Bold & modern energy · ink-navy + electric amber
   ============================================================ */

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

:root {
  /* Core palette */
  --ink:        #0b1437;   /* deep navy base */
  --ink-2:      #121d4d;   /* lighter navy panel */
  --ink-3:      #1b2a66;   /* hover navy */
  --amber:      #ffb02e;   /* electric amber accent */
  --amber-deep: #f08a1d;   /* amber on hover */
  --coral:      #ff5d52;   /* energy secondary accent */
  --teal:       #19c6a6;   /* success / data accent */
  --violet:     #7b6bff;   /* cool tertiary accent */

  --paper:      #ffffff;
  --mist:       #f5f6fb;   /* light section bg */
  --mist-2:     #eceefb;   /* alt light bg */
  --line:       #e3e6f2;   /* hairline */
  --ink-text:   #0b1437;
  --muted:      #5b6480;
  --muted-2:    #8a91ab;
  --on-dark:    #eef0fb;
  --on-dark-mut:#a7adcf;

  --radius:     14px;
  --radius-lg:  22px;
  --radius-pill:999px;
  --shadow:     0 18px 50px -22px rgba(11,20,55,.35);
  --shadow-sm:  0 8px 24px -14px rgba(11,20,55,.3);
  --maxw:       1180px;
  --ease:       cubic-bezier(.2,.7,.2,1);

  --font-display:'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:   'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Global icon guard: inline SVGs default to a small inline size.
   Specific component rules below (.btn svg, .card .ico svg, etc.) can still override. */
svg { width: 18px; height: 18px; flex: none; vertical-align: middle; }
.foot-soc svg, .float-badge .fi svg { width: 17px; height: 17px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber-deep);
}
.eyebrow::before { content:""; width: 22px; height: 2px; background: var(--amber); display:inline-block; }
.eyebrow.on-dark { color: var(--amber); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: var(--radius-pill);
  cursor: pointer; border: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--amber); color: var(--ink); box-shadow: 0 10px 26px -10px rgba(255,176,46,.7); }
.btn-primary:hover { background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(255,176,46,.8); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--on-dark); border-color: rgba(255,255,255,.22); }
.btn-ghost.on-dark:hover { border-color: var(--amber); color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 1.04rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px -16px rgba(11,20,55,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -.03em; color: var(--ink); }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.brand .mark::after { content:""; position:absolute; inset: 7px; border-radius: 50%; border: 2.5px solid var(--amber); border-right-color: transparent; transform: rotate(-30deg); }
.brand .mark span { color: var(--amber); font-size: .95rem; font-weight: 800; z-index: 1; }
.brand b { color: var(--amber-deep); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a.lnk {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 10px; font-weight: 500; font-size: .96rem; color: #2a3357;
  transition: background .2s, color .2s;
}
.nav-links a.lnk:hover { background: var(--mist); color: var(--ink); }
.nav-links a.lnk.active { color: var(--amber-deep); }
.nav-links a.lnk svg { width: 13px; height: 13px; opacity: .6; }

.dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 248px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s var(--ease); }
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; gap: 11px; align-items: flex-start; padding: 10px 12px; border-radius: 11px; transition: background .18s; }
.dropdown a:hover { background: var(--mist); }
.dropdown .di { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--mist-2); color: var(--amber-deep); }
.dropdown .di svg { width: 17px; height: 17px; }
.dropdown .dt { font-weight: 600; font-size: .93rem; color: var(--ink); }
.dropdown .dd { font-size: .8rem; color: var(--muted); line-height: 1.4; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .login { font-weight: 600; font-size: .96rem; padding: 9px 8px; color: #2a3357; }
.nav-cta .login:hover { color: var(--ink); }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu { display: none; position: fixed; inset: 74px 0 0; z-index: 99; background: #fff; padding: 20px 24px 40px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 4px; font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .mm-sub { font-size: .98rem; font-weight: 500; color: var(--muted); padding-left: 16px; }
.mobile-menu .mm-cta { margin-top: 24px; display: grid; gap: 12px; }
.mobile-menu .mm-cta .btn { justify-content: center; }

/* ---------- Sections ---------- */
section { position: relative; }
.sec { padding: 96px 0; }
.sec-sm { padding: 64px 0; }
.bg-mist { background: var(--mist); }
.bg-ink { background: var(--ink); color: var(--on-dark); }
.bg-ink h1,.bg-ink h2,.bg-ink h3 { color: #fff; }

.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 14px 0 16px; }
.sec-head p { font-size: 1.12rem; color: var(--muted); }
.bg-ink .sec-head p { color: var(--on-dark-mut); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; padding: 76px 0 90px; }
.hero::before { content:""; position:absolute; top:-30%; right:-12%; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,46,.20), transparent 62%); filter: blur(8px); }
.hero::after { content:""; position:absolute; bottom:-40%; left:-15%; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,107,255,.18), transparent 62%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 800; color: #fff; }
.hero h1 .hl { color: var(--amber); position: relative; }
.hero p.lead { font-size: 1.2rem; color: var(--on-dark-mut); margin: 22px 0 30px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 34px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--on-dark-mut); font-size: .92rem; }
.hero-trust .stars { color: var(--amber); letter-spacing: 2px; }

/* dashboard mock */
.hero-visual { position: relative; }
.mock {
  background: linear-gradient(160deg, #fff, #f3f4fc); border-radius: 20px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.55);
  padding: 18px; transform: perspective(1400px) rotateY(-9deg) rotateX(3deg); transition: transform .5s var(--ease);
}
.hero-visual:hover .mock { transform: perspective(1400px) rotateY(-4deg) rotateX(1deg); }
.mock-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #d6d9ea; }
.mock-bar i:first-child { background: var(--coral); } .mock-bar i:nth-child(2){ background: var(--amber); } .mock-bar i:nth-child(3){ background: var(--teal); }
.mock-row { display: flex; gap: 12px; margin-bottom: 12px; }
.mc { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 14px 16px; flex: 1; }
.mc .lbl { font-size: .72rem; color: var(--muted-2); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.mc .val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-top: 3px; }
.mc .val.up { color: var(--teal); }
.mc .val small { font-size: .82rem; color: var(--teal); font-weight: 600; }
.mock-chart { background:#fff; border:1px solid var(--line); border-radius: 13px; padding: 16px; }
.mock-chart .ct { font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.bars { display: flex; align-items: flex-end; gap: 9px; height: 96px; }
.bars span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(var(--violet), #a99bff); opacity: .85; animation: grow 1.1s var(--ease) backwards; }
.bars span:nth-child(odd){ background: linear-gradient(var(--amber), #ffd27a); }
@keyframes grow { from { height: 4px; opacity: 0; } }
.float-badge { position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 12px 15px; display: flex; gap: 10px; align-items: center; z-index: 3; }
.float-badge .fi { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float-badge .ft { font-size: .72rem; color: var(--muted); } .float-badge .fv { font-weight: 700; font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; }
.fb-1 { top: -22px; left: -28px; animation: floaty 4s ease-in-out infinite; }
.fb-2 { bottom: -20px; right: -22px; animation: floaty 4.6s ease-in-out infinite .8s; }
@keyframes floaty { 50% { transform: translateY(-9px); } }

/* ---------- Marquee logos ---------- */
.logos { padding: 40px 0; border-bottom: 1px solid var(--line); }
.logos p { text-align: center; color: var(--muted-2); font-size: .86rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 26px; }
.logo-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.logo-row .lg { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; color: #aeb4cc; letter-spacing: -.02em; display: flex; align-items: center; gap: 7px; transition: color .25s; }
.logo-row .lg:hover { color: var(--ink); }
.logo-row .lg svg { width: 22px; height: 22px; }

/* ---------- Cards / pillars ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; }
.card .ico svg { width: 25px; height: 25px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card .more { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; color: var(--amber-deep); font-weight: 600; font-size: .92rem; }
.card .more svg { width: 15px; height: 15px; transition: transform .25s; }
.card:hover .more svg { transform: translateX(4px); }

.ic-amber { background: #fff3dd; color: var(--amber-deep); }
.ic-coral { background: #ffe6e3; color: var(--coral); }
.ic-teal  { background: #d6f7ef; color: #0f9b80; }
.ic-violet{ background: #eae7ff; color: var(--violet); }
.ic-ink   { background: var(--mist-2); color: var(--ink); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 800; color: var(--amber); line-height: 1; }
.stat .lbl { margin-top: 10px; color: var(--on-dark-mut); font-size: .98rem; }

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.split h3 { font-size: clamp(1.7rem,3vw,2.3rem); margin: 14px 0 16px; }
.split p { color: var(--muted); font-size: 1.06rem; }
.feat-list { list-style: none; margin-top: 22px; display: grid; gap: 13px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.feat-list .ck { width: 24px; height: 24px; border-radius: 50%; background: #d6f7ef; color: #0f9b80; display: grid; place-items: center; flex: none; margin-top: 1px; }
.feat-list .ck svg { width: 14px; height: 14px; }
.split-media .panel { background: linear-gradient(160deg, var(--ink), var(--ink-2)); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.split-media .panel::before { content:""; position:absolute; top:-40%; right:-20%; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(255,176,46,.22), transparent 65%); }

/* generic mini panel pieces */
.pchip { display:inline-flex; align-items:center; gap:7px; background: rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); color: var(--on-dark); padding: 8px 13px; border-radius: 10px; font-size:.86rem; font-weight:500; }
.pchip svg { width:15px; height:15px; color: var(--amber); }
.prow { display:flex; gap:10px; flex-wrap:wrap; }
.pbar { background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 16px; color: var(--on-dark); position:relative; z-index:1; }
.pbar .pt { font-size:.78rem; color: var(--on-dark-mut); } .pbar .pv { font-family: var(--font-display); font-weight:700; font-size:1.3rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: s; }
.step { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; }
.step::before { counter-increment: s; content: "0" counter(s); position:absolute; top: 24px; right: 28px; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--mist-2); }
.step .si { width: 50px; height: 50px; border-radius: 14px; background: var(--ink); color: var(--amber); display: grid; place-items: center; margin-bottom: 18px; }
.step .si svg { width: 24px; height: 24px; }
.step h3 { font-size: 1.24rem; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: .97rem; }

/* ---------- Audience fork ---------- */
.fork { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fork-card { border-radius: var(--radius-lg); padding: 38px; border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.fork-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.fork-card .tag { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.fork-card h3 { font-size: 1.7rem; margin: 12px 0 12px; }
.fork-card p { color: var(--muted); }
.fork-card ul { list-style: none; margin: 20px 0 24px; display: grid; gap: 11px; }
.fork-card ul li { display: flex; gap: 10px; align-items: center; font-size: .98rem; }
.fork-card ul .ck { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.fork-card ul .ck svg { width: 13px; height: 13px; }
.fork-a { background: linear-gradient(160deg,#fff,#fff8ec); } .fork-a .tag { color: var(--amber-deep);} .fork-a .ck { background:#fff3dd; color: var(--amber-deep);} 
.fork-b { background: linear-gradient(160deg,#fff,#f1efff);} .fork-b .tag { color: var(--violet);} .fork-b .ck { background:#eae7ff; color: var(--violet);} 

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; display:flex; flex-direction:column; }
.quote .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 1.02rem; color: #2a3357; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; flex: none; }
.quote .nm { font-weight: 600; font-size: .96rem; } .quote .rl { font-size: .84rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--ink) 0%, #1a2a6b 100%); border-radius: var(--radius-lg); padding: 64px 56px; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; top:-50%; right:-5%; width: 460px; height: 460px; border-radius:50%; background: radial-gradient(circle, rgba(255,176,46,.22), transparent 62%); }
.cta-band .inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem,3.6vw,2.7rem); }
.cta-band p { color: var(--on-dark-mut); font-size: 1.1rem; margin-top: 12px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; color: #2a3357; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; font-family: var(--font-body); font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(255,176,46,.16); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: #d6f7ef; border: 1px solid #9fe3d3; color: #0c6b58; padding: 14px 16px; border-radius: 12px; font-weight: 500; margin-bottom: 16px; }
.form-success.show { display: block; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), box-shadow .3s; }
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price.feat { border: 2px solid var(--amber); box-shadow: 0 24px 60px -28px rgba(255,176,46,.6); }
.price .pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--amber); color: var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.price .pname { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.price .pdesc { color: var(--muted); font-size: .92rem; margin: 6px 0 18px; min-height: 40px; }
.price .amt { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--ink); line-height: 1; }
.price .amt small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price .per { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.price ul { list-style: none; margin: 24px 0; display: grid; gap: 12px; flex: 1; }
.price ul li { display: flex; gap: 10px; font-size: .95rem; color: #2a3357; }
.price ul .ck { width: 21px; height: 21px; border-radius: 50%; background: #d6f7ef; color: #0f9b80; display: grid; place-items: center; flex: none; }
.price ul .ck svg { width: 12px; height: 12px; }
.price ul li.off { color: var(--muted-2); } .price ul li.off .ck { background: var(--mist-2); color: var(--muted-2); }
.price .btn { justify-content: center; width: 100%; }

/* toggle */
.bill-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 44px; }
.bill-toggle span { font-weight: 600; color: var(--muted); }
.bill-toggle span.on { color: var(--ink); }
.switch { width: 54px; height: 30px; border-radius: 999px; background: var(--ink); position: relative; cursor: pointer; border: none; }
.switch::after { content:""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: var(--amber); transition: transform .3s var(--ease); }
.switch.year::after { transform: translateX(24px); }
.save-tag { background: #d6f7ef; color: #0c6b58; font-size: .76rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--ink); color: var(--on-dark); padding: 72px 0 64px; position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content:""; position:absolute; top:-40%; left:50%; transform:translateX(-50%); width: 760px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(255,176,46,.16), transparent 64%); }
.page-hero .inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.3rem,5vw,3.6rem); color: #fff; }
.page-hero p { font-size: 1.18rem; color: var(--on-dark-mut); margin-top: 18px; }
.crumbs { display:flex; gap:8px; justify-content:center; font-size:.86rem; color: var(--on-dark-mut); margin-bottom: 20px; }
.crumbs a:hover { color: var(--amber); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq-q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--mist); display: grid; place-items: center; flex: none; transition: .3s; }
.faq-q .pm svg { width: 16px; height: 16px; transition: transform .3s; }
.faq-item.open .pm { background: var(--amber); }
.faq-item.open .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 0 22px; color: var(--muted); font-size: 1.02rem; }

/* ---------- Blog / resource cards ---------- */
.post { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; display:flex; flex-direction:column; }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post .thumb { height: 170px; position: relative; overflow: hidden; display:grid; place-items:center; }
.post .thumb > svg { width: 46px; height: 46px; }
.post .thumb .tg { position:absolute; top:14px; left:14px; background: rgba(255,255,255,.9); color: var(--ink); font-size:.74rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:5px 11px; border-radius:999px; }
.post .pbody { padding: 24px; display:flex; flex-direction:column; flex:1; }
.post h3 { font-size: 1.18rem; margin-bottom: 10px; }
.post p { color: var(--muted); font-size: .95rem; flex:1; }
.post .meta { margin-top: 16px; font-size: .84rem; color: var(--muted-2); display:flex; gap: 12px; }

/* ---------- Tables (feature compare) ---------- */
.compare { width: 100%; border-collapse: collapse; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
.compare th { font-family: var(--font-display); background: var(--mist); font-weight: 700; }
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: #0f9b80; } .compare .no { color: var(--muted-2); }
.compare .yes svg, .compare .no svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-mut); padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand .brand { color: #fff; margin-bottom: 16px; }
.foot-brand p { font-size: .96rem; max-width: 280px; margin-bottom: 18px; }
.foot-soc { display: flex; gap: 10px; }
.foot-soc a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; transition: .25s; }
.foot-soc a:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.foot-soc svg { width: 17px; height: 17px; }
.foot-col h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .96rem; margin-bottom: 16px; }
.foot-col a { display: block; padding: 6px 0; font-size: .93rem; transition: color .2s; }
.foot-col a:hover { color: var(--amber); }
.foot-bottom { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: .87rem; }
.foot-bottom .fl { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-bottom .fl a:hover { color: var(--amber); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .cta-band .inner { grid-template-columns: 1fr; gap: 38px; }
  .split.rev .split-media { order: 0; }
  .grid-3, .grid-4, .quotes, .steps, .price-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-links, .nav-cta .login, .nav-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .sec { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .quotes, .steps, .price-grid, .fork, .field-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 26px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}
