/* ============================================================
   RankFixer — Global Stylesheet
   Premium B2B Managed VA Brand
   ============================================================ */

:root {
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --surface-alt: #F5F4F0;
  --accent: #C8490A;
  --accent-dark: #A53B08;
  --accent-light: rgba(200, 73, 10, 0.07);
  --text: #1A1714;
  --text-muted: #6B6762;
  --text-light: #9B9895;
  --border: #E8E6E3;
  --border-strong: #D4D1CC;
  --success: #1F7A4D;
  --success-bg: rgba(31,122,77,0.07);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --max-width: 1160px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Fraunces', serif; letter-spacing: -1px; line-height: 1.08; }

h1 { font-size: clamp(48px, 5.5vw, 72px); letter-spacing: -2px; }
h2 { font-size: clamp(36px, 3.8vw, 54px); letter-spacing: -1.5px; }
h3 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.5px; }

.section-lead {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 640px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,250,247,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: 25px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--text); background: var(--surface-alt); }

.nav-cta {
  background: var(--accent) !important;
  color: #FFF !important;
  padding: 11px 18px !important;
  border-radius: var(--radius-sm) !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Buttons ── */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 15px 26px;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,73,10,0.25); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  padding: 15px 26px;
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--border-strong); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 12px 20px;
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover { background: var(--accent); color: white; }

/* ── Hero ── */
.hero {
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(200,73,10,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1 { margin-bottom: 26px; max-width: 680px; }
.hero-copy .section-lead { margin-bottom: 36px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* Hero Panel */
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.panel-title { font-size: 13px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.status-badge {
  background: var(--success-bg);
  color: var(--success);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.ops-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background: var(--surface-alt);
  transition: border-color var(--transition);
}
.ops-card:hover { border-color: var(--border-strong); }

.ops-label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
.ops-value { font-size: 17px; font-weight: 700; color: var(--text); }

.ops-note {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ── Stats Strip ── */
.stats-strip {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-value { font-family: 'Fraunces', serif; font-size: 42px; font-weight: 700; letter-spacing: -2px; color: var(--text); line-height: 1; }
.stat-value span { color: var(--accent); }
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 600; }

/* ── Sections ── */
section { padding: 96px 0; }

.section-heading { max-width: 720px; margin-bottom: 56px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 { margin-bottom: 16px; }

/* ── Comparison Table ── */
.comparison-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

table { width: 100%; border-collapse: collapse; }

thead { background: var(--surface-alt); }
th {
  text-align: left;
  padding: 20px 28px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  vertical-align: middle;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,0,0,0.01); }

td:nth-child(2) { color: var(--text-muted); }
td:nth-child(3) { font-weight: 700; color: var(--text); }

.td-check { color: var(--success); font-weight: 700; }
.td-cross { color: #C0392B; }

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.feature-card h3 { font-size: 19px; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }

/* ── Process Grid ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.process-grid::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(200,73,10,0.08); }

.process-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid rgba(200,73,10,0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-card h3 { font-size: 17px; margin-bottom: 10px; }
.process-card p { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; }

/* ── Guide Cards ── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.guide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-strong); }

.guide-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.guide-card h3 { font-size: 20px; line-height: 1.25; color: var(--text); }
.guide-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; flex: 1; }
.guide-read-more { font-size: 13px; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 4px; margin-top: auto; }

/* ── CTA Section ── */
.cta-section { padding-bottom: 120px; }

.cta-box {
  background: var(--text);
  border-radius: 36px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,73,10,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 { color: white; max-width: 680px; margin: 0 auto 18px; }
.cta-box p { color: rgba(255,255,255,0.6); max-width: 580px; margin: 0 auto 36px; font-size: 17px; }

/* ── FAQ Section (for guide pages) ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-strong); }

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--text-muted);
  transition: all var(--transition);
}

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer p { color: var(--text-muted); font-size: 15px; line-height: 1.75; padding-bottom: 22px; }

.faq-item.open .faq-answer { max-height: 600px; }
.faq-item.open .faq-icon { background: var(--accent-light); border-color: rgba(200,73,10,0.2); color: var(--accent); transform: rotate(45deg); }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; font-weight: 600; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { color: var(--border-strong); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 20px; max-width: 760px; }
.page-hero .section-lead { max-width: 680px; }

/* ── Article Content ── */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.article-content { min-width: 0; }

.article-content h2 { font-size: 36px; margin: 56px 0 18px; }
.article-content h3 { font-size: 24px; margin: 36px 0 14px; }
.article-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.article-content ul, .article-content ol {
  padding-left: 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-content li { color: var(--text-muted); font-size: 16px; line-height: 1.7; }
.article-content strong { color: var(--text); }

.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.sidebar-card h4 { font-size: 16px; margin-bottom: 14px; }
.sidebar-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.65; }

.toc-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.toc-list a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: block;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}
.toc-list a:hover { color: var(--accent); background: var(--accent-light); border-left-color: var(--accent); }

/* ── Social Proof ── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.proof-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.proof-quote {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.proof-quote::before { content: '\201C'; font-size: 28px; color: var(--accent); font-style: normal; line-height: 0; vertical-align: -10px; margin-right: 4px; }

.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid rgba(200,73,10,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.proof-name { font-weight: 700; font-size: 14px; }
.proof-role { font-size: 13px; color: var(--text-muted); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 64px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; max-width: 280px; margin-top: 14px; }

.footer-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 18px; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { color: var(--text-muted); font-size: 13px; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { text-decoration: none; color: var(--text-muted); font-size: 13px; font-weight: 600; transition: color var(--transition); }
.footer-legal a:hover { color: var(--text); }

/* ── Pricing Table (for pricing guide page) ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,73,10,0.06);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 10px; }
.pricing-price { font-family: 'Fraunces', serif; font-size: 36px; letter-spacing: -1.5px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pricing-price span { font-size: 16px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: var(--text-muted); }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; color: var(--text); line-height: 1.5; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; margin-top: 2px; }

/* ── Contact Form (Google Forms embed) ── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info { padding-top: 8px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }

.contact-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.contact-point-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.contact-point-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-point-text span { font-size: 13.5px; color: var(--text-muted); }

.gform-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gform-wrap iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 720px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeUp 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .hero-grid, .article-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::after { display: none; }
  .guides-grid, .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-section { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { height: auto; padding: 18px 0; }
  .main-nav { display: none; flex-direction: column; width: 100%; padding: 12px 0; gap: 4px; }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 16px; }
  .nav-toggle { display: flex; }
  h1 { font-size: 42px; letter-spacing: -1.5px; }
  h2 { font-size: 34px; }
  section { padding: 72px 0; }
  .hero { padding: 72px 0 60px; }
  .hero-actions { flex-direction: column; }
  .cta-box { padding: 48px 28px; }
  .feature-grid, .guides-grid, .proof-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  table { display: block; overflow-x: auto; }
  .page-hero h1 { font-size: 38px; }
  .gform-wrap iframe { min-height: 900px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ops-grid { grid-template-columns: 1fr; }
}