/* ==========================================================================
   Easy Lead Distribution — main.css
   Shared stylesheet for the redesigned site (local-first, WP-conversion ready)
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --blue:        #0053DB;
  --blue-deep:   #004AC6;
  --blue-vivid:  #2563EB;
  --tint:        #DBE1FF;
  --light:       #B4C5FF;
  --page:        #FBF9FA;
  --card:        #FFFFFF;
  --subtle:      #F5F3F4;
  --ink:         #1B1C1D;
  --ink-2:       #46464C;
  --line:        #C7C6CC;
  --line-soft:   #E8E6E7;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow-md: 0 12px 32px -12px rgba(0, 74, 198, .22);
  --shadow-lg: 0 40px 80px -40px rgba(0, 74, 198, .30);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--light); outline-offset: 2px; border-radius: 4px; }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 16px;
}
.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-2); }

h2.h-xl { font-size: clamp(1.9rem, 4vw, 3rem); }
h3.h-lg { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 16px; line-height: 1;
  padding: 15px 26px; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--blue-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--subtle); color: var(--ink); border-color: var(--ink-2); }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn-arrow svg { transition: transform .18s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 250, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand span { font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -0.02em; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.nav a {
  color: var(--ink-2); font-weight: 500; font-size: 15.5px; white-space: nowrap;
  padding: 8px 13px; border-radius: 8px; transition: background .15s, color .15s;
}
.nav a:hover { color: var(--ink); background: var(--subtle); }
.nav a[aria-current="page"] { color: var(--blue); background: var(--tint); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-actions .btn { padding: 11px 20px; font-size: 15px; }
.link-signin {
  color: var(--ink); font-weight: 600; font-size: 15px; padding: 10px 14px; white-space: nowrap;
  border-radius: 8px; display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
}
.link-signin:hover { color: var(--blue); background: var(--subtle); }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line);
  border-radius: 9px; width: 44px; height: 44px; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  border-bottom: 1px solid var(--line-soft);
  background: var(--card);
}
.mobile-nav.open { display: block; }
.mobile-nav .wrap { padding-block: 14px 22px; }
.mobile-nav a:not(.btn) {
  display: block; padding: 13px 6px; font-size: 17px; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .mobile-cta { display: grid; gap: 10px; margin-top: 18px; }
.mobile-nav .mobile-cta .btn { width: 100%; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(180,197,255,.40), transparent 70%),
    radial-gradient(50% 45% at 8% 30%, rgba(219,225,255,.55), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.05; letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--blue); }
.hero-sub { font-size: clamp(17px, 1.6vw, 20px); max-width: 33ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.badge-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
}
.badge-row .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--light); }
.badge-row .badge { display: inline-flex; align-items: center; gap: 8px; }
.badge-row .badge svg { width: 16px; height: 16px; color: var(--blue); }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual img { width: min(100%, 520px); filter: drop-shadow(0 40px 60px rgba(0,74,198,.18)); }

/* ---- Business intro ---- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.intro-points { display: grid; gap: 20px; }
.intro-point { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.intro-point .arrow {
  width: 30px; height: 30px; border-radius: 8px; background: var(--tint); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px;
}
.intro-point .arrow svg { width: 16px; height: 16px; }
.intro-point p { font-size: 16.5px; }

/* ---- How it works band ---- */
.band { background: var(--ink); color: #fff; }
.band h2 { color: #fff; }
.band .eyebrow { color: var(--light); }
.band .lead { color: rgba(255,255,255,.72); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); }
.step .num { font-size: 14px; font-weight: 700; color: var(--light); letter-spacing: .08em; }
.step h3 { color: #fff; font-size: 1.2rem; margin: 14px 0 10px; }
.step p { color: rgba(255,255,255,.68); font-size: 15.5px; }
.step .icn { width: 42px; height: 42px; border-radius: 11px; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.step .icn svg { width: 22px; height: 22px; }

/* ---- Numbered feature rows ---- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
.frow + .frow { margin-top: clamp(64px, 9vw, 116px); }
.frow.rev .frow-media { order: -1; }
.frow-num { font-size: 15px; font-weight: 700; color: var(--blue); letter-spacing: .1em; margin-bottom: 14px; }
.frow h3 { font-size: clamp(1.5rem, 2.9vw, 2.1rem); margin-bottom: 16px; }
.frow p { font-size: 17px; margin-bottom: 24px; max-width: 46ch; }
.checklist { display: grid; gap: 13px; }
.checklist li { display: flex; align-items: center; gap: 11px; font-weight: 500; color: var(--ink); }
.checklist li svg { width: 21px; height: 21px; color: var(--blue); flex-shrink: 0; }
.frow-media { display: flex; justify-content: center; }
.frow-media .phone-wrap {
  position: relative; padding: 26px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--tint), var(--subtle));
}
.frow-media img { width: min(100%, 340px); filter: drop-shadow(0 30px 50px rgba(0,74,198,.20)); }

/* ---- Feature grid (6 tiles) ---- */
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.tile {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--tint); }
.tile .icn {
  width: 46px; height: 46px; border-radius: 12px; background: var(--tint); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.tile .icn svg { width: 23px; height: 23px; }
.tile h3 { font-size: 1.15rem; margin-bottom: 9px; }
.tile p { font-size: 15.5px; }

/* ---- Stats band ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  text-align: center; padding: 34px 18px; background: var(--card);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
}
.stat .val { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--blue); letter-spacing: -0.03em; line-height: 1; }
.stat .lbl { font-size: 14.5px; color: var(--ink-2); font-weight: 500; margin-top: 10px; }

/* ---- Final CTA ---- */
.cta-final { position: relative; overflow: hidden; }
.cta-card {
  position: relative; text-align: center; max-width: 780px; margin-inline: auto;
  padding: clamp(44px, 6vw, 72px) var(--gutter);
  background: linear-gradient(155deg, var(--blue), var(--blue-deep));
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.cta-card h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 20px; }
.cta-card p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 60ch; margin-inline: auto; margin-bottom: 14px; }
.cta-card .btn-primary { background: #fff; color: var(--blue); margin-top: 20px; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.cta-card .btn-primary:hover { background: #fff; color: var(--blue-deep); }

/* ---- Footer ---- */
.site-footer { background: var(--card); border-top: 1px solid var(--line-soft); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(48px, 7vw, 76px);
}
.footer-brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; }
.footer-brand span { font-weight: 700; font-size: 18px; color: var(--ink); }
.footer-col address { font-style: normal; font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.footer-col address a { color: var(--ink-2); }
.footer-col address a:hover { color: var(--blue); }
.footer-col h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col ul a { color: var(--ink-2); font-size: 15.5px; }
.footer-col ul a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom .paddle { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-2); }
.footer-bottom .paddle img { height: 24px; width: auto; }
.footer-bottom .copy { font-size: 13.5px; color: var(--ink-2); }

/* ---- Download modal ---- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(15, 20, 35, .55); backdrop-filter: blur(3px); }
.modal-card {
  position: relative; z-index: 1; background: var(--card); border-radius: var(--radius-lg);
  padding: 38px 30px 32px; max-width: 400px; width: 100%; text-align: center; box-shadow: var(--shadow-lg);
  animation: modalIn .22s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-card .mark { width: 52px; height: 52px; border-radius: 13px; margin: 0 auto 16px; display: block; }
.modal-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.modal-card > p { font-size: 15px; color: var(--ink-2); margin-bottom: 22px; }
.modal-opt {
  display: flex; align-items: center; gap: 13px; text-align: left;
  padding: 14px 16px; border: 1.5px solid var(--line-soft); border-radius: 12px;
  margin-bottom: 11px; color: var(--ink); font-weight: 600; transition: border-color .15s, background .15s;
}
.modal-opt:hover { border-color: var(--blue); background: var(--tint); color: var(--ink); }
.modal-opt svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
.modal-opt small { display: block; font-weight: 500; font-size: 12.5px; color: var(--ink-2); }
.modal-close {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border: none; background: var(--subtle);
  border-radius: 9px; cursor: pointer; color: var(--ink-2); display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--line-soft); color: var(--ink); }
.modal-close svg { width: 18px; height: 18px; }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Interior page hero ---- */
.page-hero { position: relative; overflow: hidden; text-align: center; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 80% at 50% -10%, rgba(180,197,255,.42), transparent 70%);
}
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(56px, 8vw, 96px); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.03em; margin-bottom: 18px; }
.page-hero p { font-size: clamp(17px, 2vw, 20px); max-width: 60ch; margin-inline: auto; }
.page-hero .eyebrow { display: inline-block; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 30px 26px; position: relative; transition: transform .2s, box-shadow .2s;
}
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow-lg); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; white-space: nowrap;
}
.price-name { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.price-amount { font-size: 3rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1; margin-top: 14px; }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0; }
.price-desc { font-size: 14.5px; margin-top: 14px; min-height: 92px; }
.price-card .btn { width: 100%; margin-top: 4px; margin-bottom: 24px; }
.price-features { display: grid; gap: 12px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink); }
.price-features li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.price-features li.head { font-weight: 700; color: var(--ink); }

/* ---- FAQ ---- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 4px; font-size: 18px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item p { padding: 0 4px 22px; font-size: 16px; }

/* ---- Enterprise band ---- */
.enterprise { text-align: center; }
.enterprise-card {
  max-width: 820px; margin-inline: auto; padding: clamp(40px, 6vw, 64px) var(--gutter);
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.enterprise-card h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 12px 0 16px; }
.enterprise-card p { max-width: 62ch; margin: 0 auto 26px; font-size: 17px; }

/* ---- Plugins ---- */
.plugins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plugin-card {
  display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 32px 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.plugin-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.plugin-card.featured { border-color: var(--blue); box-shadow: var(--shadow-md); }
.plugin-card .plugin-logo {
  height: 84px; display: flex; align-items: center; justify-content: flex-start;
  padding: 14px 18px; background: var(--subtle); border-radius: 12px; margin-bottom: 22px;
}
.plugin-card .plugin-logo img { max-height: 44px; width: auto; }
.plugin-tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--blue); background: var(--tint);
  padding: 5px 11px; border-radius: 100px; margin-bottom: 14px;
}
.plugin-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.plugin-card p { font-size: 15.5px; margin-bottom: 24px; flex-grow: 1; }
.plugin-card .btn { align-self: flex-start; }

/* ---- Prose (legal + blog post) ---- */
.prose { max-width: 760px; margin-inline: auto; }
/* Kill the dead top margin on a prose block's first element (hero-to-content void fix). */
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 44px 0 16px; }
.prose h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; font-size: 17px; line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 24px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 9px; font-size: 17px; line-height: 1.7; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }
.prose blockquote {
  border-left: 3px solid var(--blue); margin: 24px 0; padding: 6px 0 6px 22px; color: var(--ink-2); font-style: italic;
}

/* ---- Blog archive ---- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--subtle); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.post-card .meta { font-size: 13px; color: var(--ink-2); font-weight: 500; margin-bottom: 10px; }
.post-card h3 { font-size: 1.15rem; line-height: 1.3; margin-bottom: 10px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--blue); }
.post-card p { font-size: 15px; flex-grow: 1; }
.post-card .more { margin-top: 16px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 7px; }
.post-card .more svg { width: 16px; height: 16px; transition: transform .18s; }
.post-card:hover .more svg { transform: translateX(3px); }

/* ---- Single post ---- */
.post-header { text-align: center; max-width: 780px; margin-inline: auto; }
.post-header .kicker { font-size: 14px; font-weight: 600; color: var(--blue); letter-spacing: .04em; }
.post-header h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin: 14px 0 18px; letter-spacing: -0.03em; }
.post-header .byline { font-size: 15px; color: var(--ink-2); }
.post-hero-img { max-width: 960px; margin: 40px auto 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.post-hero-img img { width: 100%; display: block; }

/* ---- Legal doc meta ---- */
.doc-meta { color: var(--ink-2); font-size: 14.5px; margin-bottom: 8px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col.brand-col { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav, .header-actions .btn, .link-signin { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: left; padding-block: 44px 8px; }
  .hero-sub { max-width: 46ch; }
  .hero-visual { margin-top: 8px; }
  .hero-visual img { width: min(80%, 400px); }
  .intro-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .frow, .frow.rev { grid-template-columns: 1fr; gap: 32px; }
  .frow.rev .frow-media { order: 0; }
  .frow-media { order: -1; }
  .grid-6 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .plugins-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-inner { height: 64px; }
  .grid-6 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .price-desc { min-height: 0; }
}
