/* Shared styles for ReviewPilot SEO subpages — same design system as index.html
   (kept as a separate file here only; index.html itself stays inline/untouched) */
:root {
  --ink: #10121a;
  --ink-soft: #4a4d5a;
  --muted: #8a8d9a;
  --surface: #ffffff;
  --surface-2: #f6f5f2;
  --line: #e9e8e3;
  --accent: #ffb020;
  --accent-ink: #1a1300;
  --blob-1: #ffe1a8;
  --blob-2: #ffd0e0;
  --blob-3: #cfe8ff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }

/* Nav */
nav.topnav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topnav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-weight: 800; font-size: 23px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.logo span { color: var(--accent); }
.nav-cta {
  background: var(--ink); color: #fff; font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 999px; text-decoration: none;
}

/* Simple hero (no animated mockup, used on SEO subpages) */
.hero { position: relative; padding: 72px 0 56px; overflow: hidden; text-align: center; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; z-index: 0; }
.blob-1 { width: 420px; height: 420px; background: var(--blob-1); top: -140px; left: -100px; }
.blob-2 { width: 380px; height: 380px; background: var(--blob-2); top: -80px; right: -120px; }
.hero .wrap { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 24px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.12;
  max-width: 780px; margin: 0 auto 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #ffb020, #ff7a45);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub { font-size: 18px; color: var(--ink-soft); max-width: 640px; margin: 0 auto; }
.hero .hero-cta { margin-top: 32px; }
.hero .hero-cta a.cta-btn {
  display: inline-block; background: var(--ink); color: #fff; font-weight: 700;
  padding: 15px 28px; border-radius: 12px; text-decoration: none; font-size: 15px;
}

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--surface-2); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head .kicker { color: var(--accent-ink); background: var(--accent); display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.section-head h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }

.prose { max-width: 720px; margin: 0 auto; }
.prose p { color: var(--ink-soft); font-size: 16px; margin-bottom: 18px; line-height: 1.7; }
.prose h3 { font-size: 20px; font-weight: 800; margin: 32px 0 12px; letter-spacing: -0.01em; }
.prose ul { margin: 0 0 18px 20px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.prose li { margin-bottom: 8px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.feature-card .icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card h3 a { color: inherit; text-decoration: none; }
.feature-card h3 a:hover { color: var(--accent-ink); text-decoration: underline; }
.feature-card p { color: var(--ink-soft); font-size: 14px; }

/* Comparison table (competitor-alternative pages) */
.compare-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.compare-table th { background: var(--surface-2); font-weight: 700; color: var(--ink); }
.compare-table td { color: var(--ink-soft); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.yes { color: #1e6b2f; font-weight: 700; }
.compare-table strong { color: var(--ink); }

.price-card {
  max-width: 440px; margin: 0 auto; text-align: center;
  background: var(--ink); color: #fff; border-radius: 24px; padding: 48px 40px;
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255,176,32,0.25), transparent 60%);
}
.price-card * { position: relative; }
.price-card .badge {
  display: inline-block; background: rgba(255,176,32,0.18); color: var(--accent);
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.price-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.price-card p.note { color: #b8bac2; font-size: 14px; margin-bottom: 28px; line-height: 1.6; }
.price-card a.cta {
  display: inline-block; background: var(--accent); color: var(--accent-ink);
  font-weight: 700; padding: 14px 28px; border-radius: 12px; text-decoration: none; font-size: 15px;
}

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 4px 24px; }
.faq-item summary {
  cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 16px; color: var(--ink);
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--muted); flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { color: var(--ink-soft); font-size: 14px; line-height: 1.65; padding: 0 0 20px; }

footer { padding: 40px 0; text-align: center; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
.footer-contact { margin-top: 8px; }
.footer-contact a { color: var(--ink-soft); font-weight: 600; }
footer a.footer-back { color: var(--ink-soft); font-weight: 600; }

/* --- Serious-mode components (v2 subpages) --- */

/* Toned-down hero: single, faint glow instead of two candy-colored blobs */
.hero-serious { padding: 64px 0 52px; }
.hero-serious .blob { opacity: 0.35; }
.hero-serious h1 { font-size: clamp(30px, 4.6vw, 44px); }

/* Numbered spec list, replaces the emoji feature-card grid on serious pages */
.spec-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.spec-item { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.spec-item:last-child { border-bottom: none; }
.spec-num {
  flex: none; width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px;
}
.spec-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.spec-body p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* Realistic email-preview mockup (browser-chrome card, reused pattern from index.html) */
.email-mockup {
  max-width: 520px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 20px 50px -20px rgba(16,18,26,0.18); overflow: hidden;
}
.email-mockup .em-header { background: #0f1117; padding: 16px 24px; }
.email-mockup .em-header .em-bizname { color: #fff; font-weight: 800; font-size: 17px; }
.email-mockup .em-header .em-brand-small { color: #8a8d9a; font-size: 11px; font-weight: 600; margin-top: 4px; letter-spacing: 0.02em; }
.email-mockup .em-body { padding: 28px; }
.em-greet { font-size: 15px; color: var(--ink); margin: 0 0 12px; }
.em-meta2 { font-size: 12.5px; color: var(--muted); margin: 0 0 18px; line-height: 1.6; }
.em-meta2 strong { color: var(--ink-soft); }
.em-body p.em-line { font-size: 15px; color: var(--ink); margin-bottom: 22px; line-height: 1.5; }
.em-stars-row { text-align: center; margin-bottom: 6px; }
.em-stars { color: var(--accent); font-size: 26px; letter-spacing: 6px; }
.em-btn-row { text-align: center; }
.em-btn {
  display: inline-block; background: var(--accent); color: var(--accent-ink); font-weight: 700;
  font-size: 14px; padding: 12px 24px; border-radius: 8px; margin-top: 8px;
}
.email-mockup .em-footer {
  padding: 14px 28px; background: var(--surface-2); border-top: 1px solid var(--line);
  font-size: 11px; color: var(--muted);
}

/* Honesty callout, replaces the plain-paragraph "we don't promise 5 stars" line */
.callout {
  max-width: 680px; margin: 32px auto 0; background: var(--surface-2); border-left: 3px solid var(--ink);
  border-radius: 4px 12px 12px 4px; padding: 18px 22px; font-size: 15px; color: var(--ink-soft); line-height: 1.6;
}
.callout strong { color: var(--ink); }

/* Small trust strip: three short, already-true facts, no invented numbers */
.trust-strip { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 8px; }
.trust-strip-item { text-align: center; }
.trust-strip-item b { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.trust-strip-item span { font-size: 12px; color: var(--muted); }

.mockup-caption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }

@media (max-width: 720px) {
  .grid-3 { grid-template-columns: 1fr; }
  .compare-table { display: block; overflow-x: auto; }
  .spec-item { gap: 14px; }
}
