/* ============================================================
   VigiRank — Local SEO & Google Ranking Specialists
   Single-page site · Dark charcoal + amber-gold
   ============================================================ */

:root {
  /* Brand palette */
  --charcoal: #1a1a1a;
  --gold: #c99a3d;
  --gold-soft: #dcb867;
  --cream: #f5f1e8;
  --gray: #8a8a8a;

  /* Derived surfaces */
  --bg: #141210;
  --bg-2: #1a1714;
  --surface: #201c18;
  --surface-2: #262119;
  --line: rgba(201, 154, 61, 0.16);
  --line-soft: rgba(245, 241, 232, 0.08);

  /* Text */
  --text: #f5f1e8;
  --text-muted: #b9b2a4;
  --text-dim: #8a8a8a;

  /* Effects */
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 20px 50px -20px rgba(201, 154, 61, 0.45);
  --grad-gold: linear-gradient(135deg, #dcb867 0%, #c99a3d 55%, #a97e2c 100%);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: clamp(72px, 10vw, 132px); position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.15rem); margin-top: 14px; }
.lead { color: var(--text-muted); font-size: clamp(1rem, 1.4vw, 1.12rem); margin-top: 18px; }

.gold-text { color: var(--gold); }
.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 15px 26px; border-radius: 999px;
  min-height: 52px;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-gold); color: #201607; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -18px rgba(201,154,61,0.6); }
.btn-ghost { background: rgba(245,241,232,0.04); color: var(--cream); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(245,241,232,0.09); transform: translateY(-3px); }
.btn-lg { padding: 18px 34px; font-size: 1.02rem; min-height: 58px; }
.btn:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; border-radius: 6px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(20, 18, 16, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .logo-mark { width: 38px; height: 38px; flex: none; }
.brand .wordmark { font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.01em; }
.brand .wordmark .rank { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.94rem; color: var(--text-muted); transition: color 0.2s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); align-items: center; justify-content: center; background: rgba(245,241,232,0.03); }
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .ic-close { display: none; }
.menu-toggle[aria-expanded="true"] .ic-open { display: none; }
.menu-toggle[aria-expanded="true"] .ic-close { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 150px; padding-bottom: 90px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(201,154,61,0.20) 0%, rgba(201,154,61,0.05) 38%, transparent 66%);
  filter: blur(10px);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 32%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 32%, #000 0%, transparent 72%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { text-align: center; max-width: 900px; margin-inline: auto; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(201,154,61,0.10); border: 1px solid var(--line);
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--gold-soft); text-transform: uppercase;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(201,154,61,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,154,61,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(201,154,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,154,61,0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem); font-weight: 800; margin-top: 26px;
  letter-spacing: -0.035em;
}
.hero h1 .grad-text { display: inline-block; }
.hero .lead { margin-inline: auto; max-width: 640px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; margin-top: 34px;
  color: var(--text-dim); font-size: 0.9rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--gold); }

/* ---------- Dashboard mockup ---------- */
.dash-wrap { margin-top: 70px; position: relative; z-index: 1; perspective: 1600px; }
.dash {
  max-width: 940px; margin-inline: auto;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.dash-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line-soft); background: rgba(0,0,0,0.18); }
.dash-top .t-left { display: flex; align-items: center; gap: 12px; }
.dash-top .t-left .logo-mark { width: 26px; height: 26px; }
.dash-top .t-title { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; }
.dash-top .t-sub { font-size: 0.74rem; color: var(--text-dim); }
.live { display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem; font-weight: 600; color: #7ee0a0; background: rgba(126,224,160,0.1); padding: 6px 12px; border-radius: 999px; font-family: var(--font-head); }
.live .dot { width: 7px; height: 7px; border-radius: 50%; background: #7ee0a0; animation: pulse-g 2s infinite; }
@keyframes pulse-g { 0%,100%{opacity:1;} 50%{opacity:0.35;} }

.dash-body { padding: 22px; display: grid; gap: 18px; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric { background: rgba(255,255,255,0.02); border: 1px solid var(--line-soft); border-radius: 14px; padding: 16px; }
.metric .m-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.metric .m-value { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; margin-top: 6px; font-variant-numeric: tabular-nums; }
.metric .m-delta { font-size: 0.75rem; margin-top: 4px; color: #7ee0a0; font-weight: 600; }
.metric .m-value.gold { color: var(--gold); }

.dash-cols { display: grid; grid-template-columns: 1.15fr 1fr; gap: 16px; }
.panel { background: rgba(255,255,255,0.02); border: 1px solid var(--line-soft); border-radius: 14px; padding: 16px 18px; }
.panel h4 { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.rank-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.rank-row:last-child { border-bottom: none; }
.rank-row .pos { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; background: rgba(255,255,255,0.05); color: var(--text-dim); flex: none; }
.rank-row .name { font-size: 0.9rem; color: var(--text-muted); flex: 1; }
.rank-row.you { background: rgba(201,154,61,0.08); margin-inline: -18px; padding-inline: 18px; border-radius: 10px; border-bottom-color: transparent; }
.rank-row.you .pos { background: var(--grad-gold); color: #201607; }
.rank-row.you .name { color: var(--cream); font-weight: 600; }
.rank-row .trend { font-size: 0.74rem; color: #7ee0a0; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

.bars { display: flex; align-items: flex-end; gap: 10px; height: 118px; padding-top: 8px; }
.bars .bar { flex: 1; border-radius: 6px 6px 0 0; background: rgba(255,255,255,0.06); position: relative; }
.bars .bar span { position: absolute; inset: auto 0 0 0; border-radius: 6px 6px 0 0; background: var(--grad-gold); animation: grow 1.2s var(--ease) forwards; transform-origin: bottom; }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bars .b-label { }
.bars-labels { display: flex; gap: 10px; margin-top: 8px; }
.bars-labels span { flex: 1; text-align: center; font-size: 0.68rem; color: var(--text-dim); }

/* ---------- Marquee / trust strip ---------- */
.strip { border-block: 1px solid var(--line-soft); background: var(--bg-2); }
.strip .container { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; padding-block: 26px; }
.strip .item { display: inline-flex; align-items: center; gap: 10px; color: var(--text-dim); font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; }
.strip .item svg { width: 20px; height: 20px; color: var(--gold); }

/* ---------- Services ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(201,154,61,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(201,154,61,0.12); border: 1px solid var(--line); color: var(--gold); margin-bottom: 20px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.94rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.step { position: relative; padding: 30px 26px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.step .num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: transparent; -webkit-text-stroke: 1.4px var(--gold); line-height: 1; margin-bottom: 14px; opacity: 0.9; }
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.93rem; }

/* ---------- Pricing / Offer ---------- */
.offer { position: relative; }
.offer-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(201,154,61,0.14), transparent 60%); }
.offer .container { position: relative; z-index: 1; }
.price-card {
  max-width: 720px; margin-inline: auto; margin-top: 8px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.price-head { padding: 40px 40px 30px; text-align: center; border-bottom: 1px solid var(--line-soft); position: relative; }
.price-head .ribbon { display: inline-block; font-family: var(--font-head); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(201,154,61,0.12); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.price-head .name { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; }
.price-head .amount { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-top: 16px; }
.price-head .amount .val { font-family: var(--font-head); font-weight: 800; font-size: clamp(3.2rem, 8vw, 4.4rem); line-height: 1; letter-spacing: -0.03em; }
.price-head .amount .cur { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; margin-top: 8px; color: var(--gold); }
.price-head .per { color: var(--text-dim); font-size: 0.95rem; margin-top: 10px; }
.price-head .per strong { color: var(--text-muted); font-weight: 600; }

.price-body { padding: 34px 40px 40px; }
.feat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--text-muted); }
.feat-list li .chk { width: 22px; height: 22px; border-radius: 50%; background: rgba(201,154,61,0.15); color: var(--gold); display: grid; place-items: center; flex: none; margin-top: 1px; }
.feat-list li .chk svg { width: 13px; height: 13px; }
.feat-list li strong { color: var(--cream); font-weight: 600; }
.price-cta { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.price-cta .btn { width: 100%; max-width: 380px; }
.price-note { font-size: 0.84rem; color: var(--text-dim); }

/* ---------- Results / testimonials ---------- */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.result:hover { transform: translateY(-5px); border-color: var(--line); }
.result .verified { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.result .verified svg { width: 15px; height: 15px; }
.result .kpi { background: rgba(201,154,61,0.08); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 16px; }
.result .kpi .k-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); }
.result .kpi .k-val { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--gold); margin-top: 3px; }
.result p { color: var(--text-muted); font-size: 0.92rem; }
.result .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.result .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-gold); color: #201607; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; flex: none; }
.result .who .n { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; }
.result .who .r { font-size: 0.78rem; color: var(--text-dim); }
.results-disclaimer { text-align: center; margin-top: 26px; font-size: 0.82rem; color: var(--text-dim); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .s-val { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--gold); letter-spacing: -0.02em; }
.stat .s-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; }
.faq-q .ic { width: 26px; height: 26px; flex: none; display: grid; place-items: center; color: var(--gold); transition: transform 0.35s var(--ease); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Final CTA ---------- */
.cta-final .container { position: relative; z-index: 1; }
.cta-box {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(150deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 70px);
  box-shadow: var(--shadow);
}
.cta-box::before { content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 620px; height: 620px; background: radial-gradient(circle, rgba(201,154,61,0.18), transparent 62%); pointer-events: none; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { max-width: 640px; margin-inline: auto; }
.cta-box .lead { margin-inline: auto; max-width: 520px; }
.cta-box .btn { margin-top: 34px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding-block: 64px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer .f-about { color: var(--text-dim); font-size: 0.92rem; max-width: 320px; }
.footer h5 { font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer .f-links { display: grid; gap: 11px; }
.footer .f-links a, .footer .f-contact li { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s; }
.footer .f-links a:hover { color: var(--cream); }
.footer .f-contact { display: grid; gap: 12px; }
.footer .f-contact li { display: flex; align-items: center; gap: 11px; }
.footer .f-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--text-dim); font-size: 0.85rem; }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: var(--cream); }

/* ---------- Why-now intro + 3-col cards ---------- */
.why-intro { max-width: 640px; margin: -18px auto 46px; text-align: center; color: var(--text-muted); font-size: 1.02rem; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare th, .compare td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 0.94rem; }
.compare thead th { font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); background: rgba(0,0,0,0.15); }
.compare thead th.vg { color: var(--gold); }
.compare tbody td:first-child { color: var(--text-muted); font-weight: 500; }
.compare .col-trad { color: var(--text-dim); }
.compare td.col-vg { color: var(--cream); font-weight: 500; background: rgba(201,154,61,0.06); }
.compare tr:last-child td { border-bottom: none; }
.compare .cell { display: inline-flex; align-items: center; gap: 8px; }
.compare .cell svg { width: 16px; height: 16px; flex: none; }
.compare .cell.no { color: var(--text-dim); }
.compare .cell.no svg { color: #b98a8a; }
.compare .cell.yes svg { color: var(--gold); }

/* ---------- Guarantee ---------- */
.guarantee .container { position: relative; z-index: 1; }
.guarantee-box {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(150deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 76px) clamp(24px, 5vw, 68px); box-shadow: var(--shadow);
}
.guarantee-box::before { content: ""; position: absolute; top: -45%; left: 50%; transform: translateX(-50%); width: 640px; height: 640px; background: radial-gradient(circle, rgba(201,154,61,0.16), transparent 62%); pointer-events: none; }
.guarantee-box > * { position: relative; z-index: 1; }
.guarantee-seal { width: 78px; height: 78px; border-radius: 50%; background: rgba(201,154,61,0.12); border: 1px solid var(--line); display: grid; place-items: center; margin: 0 auto 22px; color: var(--gold); }
.guarantee-seal svg { width: 38px; height: 38px; }
.guarantee-box h2 { max-width: 660px; margin-inline: auto; }
.guarantee-box p { color: var(--text-muted); max-width: 640px; margin: 18px auto 0; }
.guarantee-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.guarantee-badges span { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,241,232,0.04); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 0.86rem; font-family: var(--font-head); font-weight: 500; color: var(--cream); }
.guarantee-badges svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.exclusive-note { text-align: center; margin-top: 24px; color: var(--gold-soft); font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; }

/* Price hint (agencies charge…) */
.price-hint { text-align: center; max-width: 560px; margin: 0 auto 8px; color: var(--text-dim); font-size: 0.92rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Mobile menu panel ---------- */
.mobile-menu { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer .f-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .menu-toggle { display: inline-flex; }
  .steps { grid-template-columns: 1fr; }
  .dash-cols { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }

  /* Mobile menu overlay — drawer feel */
  .mobile-menu {
    display: flex; flex-direction: column; position: fixed; inset: 0; z-index: 99;
    background: rgba(16, 14, 12, 0.99); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: calc(env(safe-area-inset-top, 0px) + 84px) 22px calc(env(safe-area-inset-bottom, 0px) + 30px);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform 0.38s var(--ease), opacity 0.3s, visibility 0.3s;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .mm-links { display: flex; flex-direction: column; }
  .mobile-menu a:not(.btn) {
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em;
    padding: 17px 4px; border-bottom: 1px solid var(--line-soft); color: var(--cream);
  }
  .mobile-menu a:not(.btn)::after {
    content: ""; width: 8px; height: 8px; margin-right: 4px;
    border-right: 2px solid var(--gold); border-top: 2px solid var(--gold);
    transform: rotate(45deg); opacity: 0.75;
  }
  .mobile-menu .btn { margin-top: 26px; width: 100%; }
  .mm-contact { margin-top: 20px; text-align: center; color: var(--text-dim); font-size: 0.82rem; }
}

/* ============================================================
   Phone — designed-for-mobile refinements (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  .container { padding-inline: 20px; }
  .section { padding-block: 58px; }
  .section-head { margin-bottom: 32px; }
  .section-head.center { text-align: center; }

  h2 { font-size: 1.82rem; margin-top: 12px; letter-spacing: -0.025em; }
  .lead { font-size: 0.98rem; margin-top: 14px; line-height: 1.6; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.14em; }
  .eyebrow::before { width: 16px; }

  /* Buttons — smaller, refined */
  .btn { padding: 12px 18px; font-size: 0.9rem; min-height: 48px; gap: 8px; }
  .btn svg { width: 16px; height: 16px; }
  .btn-lg { padding: 14px 22px; font-size: 0.94rem; min-height: 52px; }

  /* Header — logo + hamburger only, no crowding */
  .nav { height: 60px; }
  .brand .logo-mark { width: 30px; height: 30px; }
  .brand .wordmark { font-size: 1.12rem; }
  .nav-cta .btn-primary { display: none; }
  .nav-cta { gap: 0; }

  /* Hero */
  .hero { padding-top: 88px; padding-bottom: 48px; }
  .hero-glow { width: 560px; height: 560px; top: -8%; }
  .hero-grid { background-size: 46px 46px; }
  .badge { font-size: 0.62rem; padding: 6px 12px; margin-top: 4px; }
  .hero h1 { font-size: 2rem; line-height: 1.15; letter-spacing: -0.02em; margin-top: 18px; }
  .hero h1 br { display: none; }
  .hero .lead { font-size: 0.98rem; max-width: 34ch; margin-top: 14px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-top: 24px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; align-items: center; gap: 9px; margin-top: 22px; font-size: 0.82rem; }

  /* Dashboard mockup */
  .dash-wrap { margin-top: 40px; }
  .dash { border-radius: 18px; }
  .dash-top { padding: 13px 15px; }
  .dash-top .logo-mark { width: 22px; height: 22px; }
  .dash-top .t-title { font-size: 0.86rem; }
  .dash-top .t-sub { font-size: 0.68rem; }
  .live { font-size: 0.68rem; padding: 5px 10px; }
  .dash-body { padding: 14px; gap: 12px; }
  .metrics { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .metric { padding: 13px; border-radius: 12px; }
  .metric .m-label { font-size: 0.64rem; }
  .metric .m-value { font-size: 1.3rem; margin-top: 4px; }
  .metric .m-delta { font-size: 0.7rem; }
  .panel { padding: 14px 15px; }
  .panel h4 { font-size: 0.72rem; margin-bottom: 10px; }
  .rank-row { padding: 8px 0; }
  .rank-row.you { margin-inline: -15px; padding-inline: 15px; }
  .rank-row .name { font-size: 0.85rem; }
  .bars { height: 96px; }

  /* Trust strip */
  .strip .container { gap: 14px 22px; padding-block: 20px; }
  .strip .item { font-size: 0.82rem; }
  .strip .item svg { width: 17px; height: 17px; }

  /* Services / steps */
  .cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 24px 22px; border-radius: 16px; }
  .card .ico { width: 46px; height: 46px; margin-bottom: 16px; }
  .card .ico svg { width: 23px; height: 23px; }
  .card h3 { font-size: 1.08rem; }
  .card p { font-size: 0.92rem; }
  .steps { gap: 14px; }
  .step { padding: 24px 22px; }
  .step .num { font-size: 2rem; margin-bottom: 10px; }
  .step h3 { font-size: 1.08rem; }

  /* Pricing */
  .price-card { border-radius: 20px; }
  .price-head { padding: 30px 22px 24px; }
  .price-head .ribbon { font-size: 0.68rem; margin-bottom: 14px; }
  .price-head .name { font-size: 1.12rem; }
  .price-head .amount .val { font-size: 3.2rem; }
  .price-head .amount .cur { font-size: 1.3rem; }
  .price-head .per { font-size: 0.88rem; }
  .price-body { padding: 24px 22px 30px; }
  .feat-list { grid-template-columns: 1fr; gap: 13px; }
  .feat-list li { font-size: 0.92rem; }
  .price-cta { margin-top: 26px; }
  .price-cta .btn { max-width: none; }

  /* Results */
  .results-grid { grid-template-columns: 1fr; gap: 14px; }
  .result { padding: 22px; }
  .results-disclaimer { margin-top: 20px; font-size: 0.78rem; }

  /* Stats */
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat .s-val { font-size: 2.1rem; }
  .stat .s-label { font-size: 0.82rem; }

  /* FAQ */
  .faq-q { padding: 16px 18px; font-size: 0.95rem; gap: 12px; }
  .faq-q .ic { width: 22px; height: 22px; }
  .faq-a p { padding: 0 18px 18px; font-size: 0.9rem; }

  /* Final CTA */
  .cta-box { padding: 42px 22px; border-radius: 20px; }
  .cta-box .btn { margin-top: 26px; width: 100%; }

  /* Footer */
  .footer { padding-block: 48px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer .f-about { font-size: 0.88rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 36px; }

  /* New content blocks */
  .why-intro { font-size: 0.96rem; margin-bottom: 34px; }
  .cards-grid.cols-3 { grid-template-columns: 1fr; }

  /* Comparison → stacked criterion cards (both sides visible, VigiRank highlighted) */
  .table-wrap { overflow: visible; border: none; background: none; border-radius: 0; }
  .compare { min-width: 0; display: block; }
  .compare thead { display: none; }
  .compare tbody, .compare tr, .compare td { display: block; }
  .compare tr { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; margin-bottom: 12px; padding: 6px 0 10px; }
  .compare td { border: none; padding: 8px 16px; font-size: 0.9rem; }
  .compare tbody td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--cream); font-size: 0.98rem; padding: 14px 16px 6px; }
  .compare td.col-trad::before,
  .compare td.col-vg::before { content: attr(data-label); display: block; font-family: var(--font-head); font-size: 0.64rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
  .compare td.col-trad::before { color: var(--text-dim); }
  .compare td.col-vg { background: rgba(201,154,61,0.07); border-radius: 12px; margin: 6px 12px 4px; padding: 12px 14px; }
  .compare td.col-vg::before { color: var(--gold); }
  .guarantee-seal { width: 66px; height: 66px; }
  .guarantee-seal svg { width: 32px; height: 32px; }
  .guarantee-badges { gap: 9px; margin-top: 24px; }
  .guarantee-badges span { font-size: 0.8rem; padding: 8px 13px; }
}
