/* ==========================================================================
   Veredi — Landing Page
   Sistema jurídico inteligente para escritórios de advocacia
   Paleta: navy (marca) + dourado (marca) + neutros slate
   ========================================================================== */

:root {
  /* Marca */
  --navy-950: #0a1420;
  --navy-900: #0f1e2e;
  --navy-800: #152433;
  --navy-700: #1b3a5b;
  --navy-600: #244a70;

  --gold-600: #b47f22;
  --gold-500: #c8952f;
  --gold-400: #d9a441;
  --gold-300: #e5bd6b;

  /* Neutros */
  --ink: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Semânticos */
  --bg: var(--white);
  --bg-alt: var(--slate-50);
  --text: var(--ink);
  --text-muted: var(--slate-600);
  --border: var(--slate-200);

  /* Efeitos */
  --shadow-sm: 0 1px 2px rgba(15, 30, 46, .06);
  --shadow-md: 0 10px 30px -12px rgba(15, 30, 46, .18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 30, 46, .28);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;

  --maxw: 1180px;
  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* Reset ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; color: var(--ink); }

/* Utilidades -------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); margin-top: 16px; }
.section-head p { margin-top: 18px; color: var(--text-muted); font-size: 1.08rem; }
.text-gold { color: var(--gold-500); }
.bg-alt { background: var(--bg-alt); }

/* Botões ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--navy-800);
  --btn-color: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: .98rem; line-height: 1;
  background: var(--btn-bg); color: var(--btn-color);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  --btn-color: #201404;
  box-shadow: 0 12px 26px -10px rgba(200, 149, 47, .6);
}
.btn-primary:hover { box-shadow: 0 18px 34px -10px rgba(200, 149, 47, .7); }
.btn-dark { --btn-bg: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-ghost {
  --btn-bg: transparent; --btn-color: var(--ink);
  border-color: var(--slate-300);
}
.btn-ghost:hover { border-color: var(--navy-700); }
.btn-outline-light {
  --btn-bg: transparent; --btn-color: #fff; border-color: rgba(255,255,255,.28);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

/* Header — navbar flutuante em cápsula (glass) --------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0;
  transition: padding .3s ease;
}
.site-header .container { padding-inline: 16px; }

.nav {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 64px; padding: 0 10px 0 20px;
  background: rgba(15, 30, 46, .72);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 12px 34px -20px rgba(0,0,0,.55);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled { padding: 10px 0; }
.site-header.scrolled .nav {
  background: rgba(10, 20, 32, .92);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 16px 40px -18px rgba(0,0,0,.7);
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 36px; width: auto; transition: height .3s ease; }

/* Links agrupados e centralizados */
.nav-links {
  display: none; align-items: center; gap: 2px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link {
  position: relative;
  padding: 9px 15px; border-radius: 999px; font-size: .92rem; font-weight: 600;
  color: rgba(255,255,255,.72);
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ""; position: absolute; left: 50%; bottom: 3px; transform: translateX(-50%);
  width: 18px; height: 2.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-actions .btn { padding: 11px 20px; font-size: .92rem; }
.link-login {
  display: none; align-items: center; color: rgba(255,255,255,.82);
  font-weight: 600; font-size: .92rem; padding: 9px 14px; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.link-login:hover { color: #fff; background: rgba(255,255,255,.07); }

/* Botão hambúrguer */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.07);
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 50%; width: 20px; height: 2px; margin-left: -10px;
  background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { transform: translateY(-5px); }
.nav-toggle span:nth-child(3) { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* Backdrop do menu mobile */
.mobile-backdrop {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(6, 12, 20, .5);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }

/* Painel do menu mobile — card arredondado flutuante */
.mobile-menu {
  position: fixed; top: 88px; left: 16px; right: 16px; z-index: 99;
  background: rgba(15, 27, 41, .98);
  border: 1px solid rgba(255,255,255,.1); border-radius: 24px;
  padding: 12px; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
  transform: translateY(-12px) scale(.98); transform-origin: top center;
  opacity: 0; pointer-events: none;
  transition: transform .28s cubic-bezier(.16,1,.3,1), opacity .24s ease;
}
.mobile-menu.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.mobile-nav { display: grid; gap: 2px; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,.86); font-weight: 600; font-size: 1.02rem;
  padding: 15px 16px; border-radius: 14px;
  transition: background .2s ease, color .2s ease;
}
.mobile-nav a::after {
  content: ""; width: 7px; height: 7px; border-right: 2px solid rgba(255,255,255,.3);
  border-bottom: 2px solid rgba(255,255,255,.3); transform: rotate(-45deg);
  transition: border-color .2s ease;
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(255,255,255,.06); color: #fff; }
.mobile-nav a.active { color: var(--gold-300); }
.mobile-nav a.active::after { border-color: var(--gold-400); }
.mobile-cta {
  margin-top: 10px; padding: 14px 8px 8px; display: grid; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-cta .btn { width: 100%; }
.mobile-cta .btn-ghost { --btn-color: #fff; background: transparent; border-color: rgba(255,255,255,.22); }
.mobile-cta .btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

body.menu-open { overflow: hidden; }

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .link-login { display: inline-flex; }
  .nav-toggle, .mobile-menu, .mobile-backdrop { display: none; }
}

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 500px at 82% -8%, rgba(200,149,47,.22), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(36,74,112,.55), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 100%);
  padding: 150px 0 clamp(80px, 10vw, 120px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 85%);
}
.hero-grid { position: relative; z-index: 2; display: grid; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.9);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(217,164,65,.22); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.4vw, 4rem); margin-top: 24px; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { margin-top: 22px; font-size: 1.18rem; color: rgba(255,255,255,.78); max-width: 620px; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 20px 28px; color: rgba(255,255,255,.68); font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold-400); }

/* Hero visual (mockup) */
.hero-visual { position: relative; }
.mockup {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, #16273a, #0d1a28);
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-lg);
}
.mockup-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.07); }
.mockup-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mockup-bar i:nth-child(1){ background:#ff5f57; } .mockup-bar i:nth-child(2){ background:#febc2e; } .mockup-bar i:nth-child(3){ background:#28c840; }
.mockup-bar .url { margin-left: 10px; font-size: .78rem; color: rgba(255,255,255,.5); }
.mockup-body { padding: 20px; display: grid; gap: 14px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 14px; }
.stat-card .k { font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat-card .l { font-size: .74rem; color: rgba(255,255,255,.55); margin-top: 2px; }
.chat-line { display: flex; gap: 10px; align-items: flex-start; }
.chat-line .av { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); display: grid; place-items: center; color: #201404; font-weight: 800; font-size: .82rem; }
.chat-bubble { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px 14px; font-size: .84rem; color: rgba(255,255,255,.82); }
.chat-bubble strong { color: var(--gold-300); }
.float-card {
  position: absolute; background: #fff; color: var(--ink); border-radius: 16px; padding: 14px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-size: .85rem; font-weight: 600;
}
.float-card .ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(200,149,47,.14); color: var(--gold-600); }
.float-card .ico svg { width: 20px; height: 20px; }
.float-1 { bottom: -22px; left: -18px; }
.float-2 { top: 26px; right: -20px; }
.float-card small { display: block; color: var(--slate-500); font-weight: 500; }

@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 40px; }
}
@media (max-width: 620px) {
  .float-card { display: none; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
}

/* Faixa de confiança / integrações --------------------------------------- */
.trust-strip { border-block: 1px solid var(--border); background: var(--bg-alt); }
.trust-strip .container { padding-block: 48px; }
.trust-eyebrow { display: block; text-align: center; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); font-weight: 800; }
.trust-title { text-align: center; margin-top: 10px; font-size: clamp(1.2rem, 2.6vw, 1.6rem); font-weight: 800; color: var(--navy-800); letter-spacing: -.02em; }
.trust-chips { margin: 30px auto 0; max-width: 920px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; box-shadow: var(--shadow-sm);
  font-weight: 700; font-size: .93rem; color: var(--navy-800); white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.trust-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--slate-300); }
.trust-chip svg { width: 19px; height: 19px; color: var(--gold-500); flex: 0 0 19px; }

/* Grid de recursos -------------------------------------------------------- */
.features-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--slate-300); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: var(--gold-300);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.22rem; }
.feature-card p { margin-top: 10px; color: var(--text-muted); font-size: .97rem; }

@media (min-width: 680px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

/* Seção IA (destaque) ----------------------------------------------------- */
.ai-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); }
.ai-grid { display: grid; gap: 48px; align-items: center; }
.ai-copy .eyebrow { color: var(--gold-300); }
.ai-copy h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); margin-top: 16px; }
.ai-copy > p { margin-top: 18px; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.ai-list { margin-top: 28px; display: grid; gap: 18px; }
.ai-list li { display: flex; gap: 14px; }
.ai-list .check { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px; background: rgba(200,149,47,.16); color: var(--gold-300); display: grid; place-items: center; margin-top: 2px; }
.ai-list .check svg { width: 16px; height: 16px; }
.ai-list h4 { color: #fff; font-size: 1.02rem; }
.ai-list p { color: rgba(255,255,255,.7); font-size: .93rem; margin-top: 2px; }
.ai-visual img { display: block; width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08); }

@media (min-width: 900px) { .ai-grid { grid-template-columns: 1fr 1fr; } .ai-grid.reverse .ai-visual { order: -1; } }

/* Como funciona ----------------------------------------------------------- */
.steps { display: grid; gap: 22px; grid-template-columns: 1fr; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; position: relative; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-size: 2.4rem; font-weight: 800; color: var(--gold-500); opacity: .35; line-height: 1;
}
.step h3 { margin-top: 12px; font-size: 1.18rem; }
.step p { margin-top: 8px; color: var(--text-muted); font-size: .96rem; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* Segurança --------------------------------------------------------------- */
.security { display: grid; gap: 40px; align-items: center; }
.sec-badges { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.sec-badge { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow-sm); }
.sec-badge .ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(27,58,91,.08); color: var(--navy-700); margin-bottom: 12px; }
.sec-badge .ico svg { width: 22px; height: 22px; }
.sec-badge h4 { font-size: 1rem; }
.sec-badge p { font-size: .87rem; color: var(--text-muted); margin-top: 4px; }
@media (min-width: 900px) { .security { grid-template-columns: 1fr 1fr; } }

/* Planos (grade de cards) ------------------------------------------------- */
.pricing-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 16px;
}
.plan-card {
  flex: 1 1 210px; min-width: min(210px, 100%); max-width: 252px;
  display: flex; flex-direction: column; position: relative;
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 20px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--slate-300); }
.plan-name { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); font-weight: 800; }
.plan-desc { margin-top: 10px; font-size: .86rem; line-height: 1.5; color: var(--text-muted); min-height: 58px; }
.plan-price { margin-top: 18px; display: flex; align-items: baseline; gap: 0; color: var(--ink); white-space: nowrap; }
.plan-price .cur { font-size: .9rem; font-weight: 700; color: var(--slate-500); align-self: flex-start; margin-top: 5px; margin-right: 2px; }
.plan-price .val { font-size: 2.1rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.plan-price .cents { font-size: .95rem; font-weight: 800; }
.plan-price .per { font-size: .78rem; color: var(--slate-500); font-weight: 600; margin-left: 3px; }
.plan-sub { margin-top: 8px; font-size: .8rem; color: var(--slate-500); font-weight: 600; min-height: 20px; }
.plan-card .btn { margin-top: 20px; width: 100%; }
.plan-feats { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); display: grid; gap: 12px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .89rem; line-height: 1.35; color: var(--slate-700); font-weight: 500; }
.plan-feats svg { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 1px; }
.plan-feats .yes svg { color: var(--gold-500); }
.plan-feats .no { color: var(--slate-400); }
.plan-feats .no svg { color: var(--slate-300); }

/* Card em destaque (Ouro) */
.plan-card.featured {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border-color: var(--gold-500); box-shadow: 0 26px 52px -22px rgba(15,30,46,.55);
}
.plan-card.featured:hover { border-color: var(--gold-400); }
.plan-card.featured .plan-desc,
.plan-card.featured .plan-price .cur,
.plan-card.featured .plan-price .per { color: rgba(255,255,255,.7); }
.plan-card.featured .plan-price,
.plan-card.featured .plan-price .val,
.plan-card.featured .plan-price .cents { color: #fff; }
.plan-card.featured .plan-sub { color: var(--gold-300); }
.plan-card.featured .plan-feats { border-top-color: rgba(255,255,255,.12); }
.plan-card.featured .plan-feats li { color: rgba(255,255,255,.86); }
.plan-card.featured .plan-feats .yes svg { color: var(--gold-300); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--navy-950);
  font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 15px; border-radius: 999px; box-shadow: var(--shadow-md); white-space: nowrap;
}
.pricing-foot { margin: 34px auto 0; max-width: 620px; text-align: center; font-size: .9rem; color: var(--text-muted); }
.pricing-foot strong { color: var(--navy-700); }

/* FAQ --------------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; transition: box-shadow .2s ease, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--slate-300); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: 0 0 22px; width: 22px; height: 22px; color: var(--gold-500); transition: transform .25s ease; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .answer { padding: 0 24px 22px; color: var(--text-muted); font-size: .98rem; }

/* CTA final --------------------------------------------------------------- */
.cta-final { position: relative; overflow: hidden; color: #fff; text-align: center; background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); }
.cta-final::before, .cta-final::after { content: ""; position: absolute; border-radius: 50%; filter: blur(10px); }
.cta-final::before { width: 360px; height: 360px; background: radial-gradient(circle, rgba(200,149,47,.25), transparent 60%); top: -140px; left: -80px; }
.cta-final::after { width: 300px; height: 300px; background: radial-gradient(circle, rgba(36,74,112,.5), transparent 60%); bottom: -120px; right: -60px; }
.cta-final .inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-final h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3rem); }
.cta-final p { margin-top: 18px; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.cta-final .hero-cta { justify-content: center; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.footer-brand img { height: 42px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .93rem; max-width: 320px; color: rgba(255,255,255,.62); }
.footer-social { margin-top: 18px; display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .94rem; color: rgba(255,255,255,.68); transition: color .2s; }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: .84rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: rgba(255,255,255,.85); }
.footer-legal { margin-top: 16px; text-align: center; font-size: .74rem; line-height: 1.5; color: rgba(255,255,255,.34); }
.footer-legal a { color: rgba(255,255,255,.5); font-weight: 600; }
.footer-legal a:hover { color: var(--gold-300); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* Reveal on scroll -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Skip link (a11y) -------------------------------------------------------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--gold-500); color: var(--navy-950); padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 700; }
.skip-link:focus { left: 0; }
