/* ============================================================
   SEO Me — Design System
   Light editorial aesthetic: warm paper, serif display,
   single restrained accent. Single shared stylesheet.
   ============================================================ */

:root {
  --bg: #fdfcfa;
  --bg-2: #f5f3ee;
  --card: #ffffff;
  --border: #e8e4dc;
  --text: #1a1d27;
  --muted: #636b78;
  --accent: #2547d0;
  --accent-soft: #eef1fd;
  --green: #1c7c54;
  --ink: #161a23;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(26, 29, 39, 0.07);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: #1a36a8; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.01em; }
h1, h2 { font-family: var(--serif); font-weight: 600; }
h3, h4 { font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-2); }

.section-head { max-width: 680px; margin: 0 0 56px; text-align: left; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin-right: 12px;
}

/* Accent words inside serif headings */
.grad-text {
  color: var(--accent);
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  font-family: var(--font);
}
.btn-primary {
  background: var(--ink);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid #c9c4b9;
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--text); }
.logo-mark {
  width: 33px;
  height: 33px;
  border-radius: 8px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.94rem;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.25s;
}

/* ---------- Hero ---------- */
.hero {
  padding: 110px 0 96px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.hero h1 { max-width: 17ch; }
.hero p.lead {
  max-width: 560px;
  margin: 26px 0 40px;
  color: var(--muted);
  font-size: 1.2rem;
}
.hero-actions { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: 0.88rem; }

/* Inner page hero */
.page-hero {
  padding: 88px 0 72px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { max-width: 18ch; }
.page-hero p { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 1.12rem; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
.stat { border-top: 2px solid var(--ink); padding-top: 18px; }
.stat .num {
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat .label { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

/* ---------- Cards & grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: #c9c4b9;
  box-shadow: var(--shadow);
}
.card h3 { margin: 18px 0 10px; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 1.15rem;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.85;
}
.card .more { display: inline-block; margin-top: 16px; font-weight: 600; font-size: 0.9rem; }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step {
  border-top: 1px solid #c9c4b9;
  padding: 22px 0 0;
}
.step .n {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.step h3 { margin: 12px 0 8px; font-size: 1.08rem; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Feature / split rows ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split h2 { margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 14px; }
.checklist { list-style: none; margin-top: 20px; }
.checklist li {
  padding: 9px 0 9px 34px;
  position: relative;
  color: var(--text);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e7f2ec;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text);
}
.testimonial .who { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--text);
}
.testimonial .who strong { display: block; font-size: 0.96rem; }
.testimonial .who span { color: var(--muted); font-size: 0.86rem; }
.stars { color: #c98a06; letter-spacing: 3px; font-size: 0.82rem; margin-bottom: 14px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 1.5px solid var(--ink);
  position: relative;
}
.plan .tag {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.plan h3 { font-size: 1.25rem; }
.plan .price {
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 600;
  margin: 14px 0 2px;
  letter-spacing: -0.02em;
}
.plan .price span { font-family: var(--font); font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan .desc { color: var(--muted); font-size: 0.94rem; margin-bottom: 22px; }
.plan ul { list-style: none; margin-bottom: 28px; flex: 1; }
.plan ul li { padding: 7px 0 7px 26px; position: relative; font-size: 0.94rem; color: var(--text); }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.plan .btn { justify-content: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 19px 24px;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.35rem; color: var(--accent); flex-shrink: 0; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 24px 22px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 88px 0;
}
.cta-band h2 { color: #fff; }
.cta-band .grad-text { color: #aebcf5; }
.cta-band p { max-width: 560px; margin: 18px auto 36px; color: rgba(255, 255, 255, 0.68); font-size: 1.1rem; }
.cta-band .btn-primary { background: #fff; color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--accent); color: #fff; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: #fff;
  border: 1px solid #d4cfc5;
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.96rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #a9aeb8; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-status { display: none; margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: 0.92rem; font-weight: 500; }
.form-status.ok { display: block; background: #e7f2ec; color: var(--green); border: 1px solid #cfe5da; }
.form-status.err { display: block; background: #fbeaea; color: #b3261e; border: 1px solid #f1d2d0; }

/* ---------- Contact info ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.info-item .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 1.05rem;
  filter: grayscale(1);
  opacity: 0.85;
}
.info-item strong { display: block; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--muted); font-size: 0.95rem; }
.info-item a:hover { color: var(--accent); }

/* ---------- Case studies ---------- */
.case {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
}
.case .industry {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.case h3 { font-family: var(--serif); font-weight: 600; margin: 12px 0 14px; font-size: 1.45rem; }
.case p { color: var(--muted); font-size: 0.97rem; }
.case-metrics { display: flex; gap: 40px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.case-metrics .m strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green);
  display: block;
  letter-spacing: -0.01em;
}
.case-metrics .m span { color: var(--muted); font-size: 0.85rem; }

/* ---------- Blog ---------- */
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.post-card:hover { border-color: #c9c4b9; box-shadow: var(--shadow); }
.post-card .thumb {
  height: 150px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  filter: grayscale(1);
  opacity: 0.85;
}
.post-card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.post-card .meta { color: var(--muted); font-size: 0.82rem; margin-bottom: 10px; }
.post-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.22rem; line-height: 1.35; margin-bottom: 10px; }
.post-card h3 a { color: var(--text); }
.post-card h3 a:hover { color: var(--accent); }
.post-card p { color: var(--muted); font-size: 0.93rem; flex: 1; }

.article { max-width: 720px; margin: 0 auto; }
.article h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-bottom: 18px; }
.article .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article h2 { font-size: 1.65rem; margin: 46px 0 16px; }
.article h3 { font-size: 1.18rem; margin: 32px 0 12px; }
.article p { color: #3a4150; margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 18px 24px; color: #3a4150; }
.article li { margin-bottom: 8px; }
.article blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  color: var(--text);
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
table.cmp { width: 100%; border-collapse: collapse; font-size: 0.95rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
table.cmp th, table.cmp td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
table.cmp th { color: var(--text); font-weight: 700; background: var(--bg-2); }
table.cmp td { color: var(--muted); }
table.cmp tr:last-child td { border-bottom: none; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 32px;
}
.footer .logo { color: #fff; }
.footer .logo-mark { background: #fff; color: var(--ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer .blurb { color: rgba(255, 255, 255, 0.55); font-size: 0.93rem; margin-top: 16px; max-width: 300px; }
.footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: rgba(255, 255, 255, 0.65); font-size: 0.93rem; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.65); margin-left: 20px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Signature touches — what makes this site this site
   ============================================================ */

::selection { background: var(--accent); color: #fff; }

/* Hand-drawn underline on accent words (instead of gradient text) */
.grad-text {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 6 C 30 1.5, 70 7.5, 118 3' fill='none' stroke='%232547d0' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: 0 96%;
  padding-bottom: 0.1em;
}
.cta-band .grad-text {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 6 C 30 1.5, 70 7.5, 118 3' fill='none' stroke='%23aebcf5' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Editorial numbering 01–06 on card grids (replaces icon chips) */
.grid-3 { counter-reset: card; }
.grid-3 > * { counter-increment: card; }
.grid-3 .card .icon {
  width: auto;
  height: auto;
  background: none;
  border: none;
  filter: none;
  opacity: 1;
  font-size: 0;
  display: block;
  place-items: unset;
}
.grid-3 .card .icon::before {
  content: counter(card, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--accent);
}
.grid-3 .card .icon::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--border);
  margin-top: 10px;
}
/* Blog thumbs: big ghost numerals instead of emoji */
.post-card .thumb { font-size: 0; filter: none; opacity: 1; }
.post-card .thumb::before {
  content: counter(card, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 3rem;
  color: #cfc9bd;
}

/* Hero: split layout with SERP mockup */
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
}

.serp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(26, 29, 39, 0.1);
  padding: 22px;
  transform: rotate(-1.4deg);
}
.serp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d4cfc5;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.serp-glass { font-size: 1.1rem; line-height: 1; color: var(--text); }
.serp-result { padding: 13px 14px; border-radius: 10px; }
.serp-result .url { font-size: 0.72rem; color: var(--muted); }
.serp-result .title { font-weight: 600; font-size: 0.95rem; color: var(--text); margin: 2px 0; }
.serp-result .desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.serp-result.win {
  background: var(--accent-soft);
  border: 1px solid #d9e0fa;
  position: relative;
  margin-bottom: 6px;
}
.serp-result.win .title { color: var(--accent); }
.serp-result.win .pos {
  position: absolute;
  top: -11px;
  right: 14px;
  background: var(--green);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 11px;
  border-radius: 999px;
}
.serp-result:not(.win) { opacity: 0.62; }

/* Keyword ticker */
.ticker {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-track span::after {
  content: "·";
  color: #c9c4b9;
  margin: 0 26px;
}
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .serp-card { transform: none; max-width: 460px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .grid-2, .grid-3, .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 18px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 10px; }
}
