/* ======================================================================
 * artisan-rank.fr — CSS partagée
 * Généré à partir de index.html (landing page de référence)
 * Utilisée par toutes les pages du site (index, services, articles, blog)
 * ==================================================================== */

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

:root {
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-deep:   #0B1628;
  --blue-mid:    #1a2f52;
  --blue-glow:   rgba(37,99,235,0.15);
  --green:       #10B981;
  --green-dk:    #059669;
  --green-light: #ECFDF5;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-300:    #CBD5E1;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-900:    #0F172A;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(16,185,129,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.28); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.09); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.35); }
.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: 14px; }

/* NAV */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all 0.3s;
  background: rgba(11,22,40,0.55);
  backdrop-filter: blur(8px);
}
nav#main-nav.scrolled {
  background: rgba(11,22,40,0.96);
  backdrop-filter: blur(14px);
  padding: 13px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.nav-logo span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 8px; }
.nav-burger { display: none; cursor: pointer; background: none; border: none; color: white; padding: 4px; }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--blue-deep); z-index: 99;
  padding: 96px 28px 40px;
  flex-direction: column; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: white; font-size: 22px; font-weight: 700; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: white; cursor: pointer; font-size: 28px; line-height: 1;
}

/* HERO (landing page uniquement) */
.hero {
  background: var(--blue-deep);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(37,99,235,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(16,185,129,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 0.85fr;
  gap: 60px; align-items: center;
}
.hero-text { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green); padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  color: var(--white); letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero h1 .highlight { color: var(--green); }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.68); max-width: 540px;
  margin-bottom: 40px; line-height: 1.75;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 36px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 30px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* HERO IMAGE */
.hero-img-wrap { position: relative; border-radius: 20px; overflow: visible; }
.hero-img-wrap img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  display: block;
}
.hero-img-overlay {
  position: absolute; bottom: -20px; left: -20px;
  background: white; border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 220px;
}
.hio-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.hio-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.hio-label { font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }
.hio-name { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.hio-stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.hio-stars span { font-size: 12px; color: var(--gray-500); margin-left: 4px; font-weight: 500; }

.hero-img-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--blue); color: white;
  border-radius: 50%;
  width: 72px; height: 72px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  text-align: center; line-height: 1.3;
  box-shadow: 0 4px 16px rgba(37,99,235,0.45);
}

/* TRUST STRIP */
.trust-strip { background: var(--blue-mid); padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.trust-items { display: flex; flex-wrap: nowrap; justify-content: flex-start; gap: 28px; align-items: center; overflow: hidden; }
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500; }
.trust-item .ti-dot { color: var(--green); font-size: 18px; line-height: 1; }
.trust-track { display: flex; gap: 32px; align-items: center; animation: trustScroll 20s linear infinite; white-space: nowrap; flex-shrink: 0; }
@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-items:hover .trust-track { animation-play-state: paused; }

/* SECTIONS */
section { padding: 100px 0; }
.section-label { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 64px; }
.section-label h2 { font-size: clamp(28px, 4vw, 46px); letter-spacing: -0.02em; margin-bottom: 16px; }
.section-label p { font-size: 18px; color: var(--gray-500); max-width: 600px; line-height: 1.75; }

/* PROBLEM */
.problem { background: var(--gray-50); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.pain-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: 0 12px 48px rgba(37,99,235,0.12); }
.pain-icon {
  width: 50px; height: 50px; background: #FEF2F2; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.pain-card-img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; display: block; }
.pain-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--gray-900); }
.pain-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* SEO SECTION */
.seo-section { background: var(--white); }
.seo-explainer { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.seo-text h2 { font-size: clamp(26px, 3.5vw, 42px); letter-spacing: -0.02em; margin-bottom: 20px; }
.seo-text p { color: var(--gray-500); font-size: 16px; line-height: 1.8; margin-bottom: 14px; }
.seo-points { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.seo-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--gray-700); }
.check { color: var(--green); flex-shrink: 0; font-weight: 700; margin-top: 1px; }

.seo-visual { background: var(--blue-deep); border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden; }
.seo-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,99,235,0.4) 0%, transparent 70%);
}
.search-bar-mock { background: white; border-radius: 9px; padding: 11px 14px; font-size: 13px; color: var(--gray-600); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.search-result { background: rgba(255,255,255,0.06); border-radius: 9px; padding: 13px 14px; margin-bottom: 8px; position: relative; }
.search-result.you { background: rgba(16,185,129,0.17); border: 1px solid rgba(16,185,129,0.4); }
.result-url { font-size: 11px; color: #86efac; margin-bottom: 3px; }
.result-title { font-size: 14px; color: white; font-weight: 600; padding-right: 70px; }
.result-desc { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.result-badge {
  position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
  background: var(--green); color: white; font-size: 10px;
  font-weight: 700; padding: 3px 8px; border-radius: 6px; white-space: nowrap;
}
.seo-footer-note { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }

/* PRICING */
.pricing { background: var(--gray-50); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; border: 2px solid var(--gray-100);
  box-shadow: var(--shadow); position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(37,99,235,0.15); }
.pricing-card.featured { border-color: var(--blue); transform: scale(1.035); background: linear-gradient(155deg, #EFF6FF 0%, var(--white) 60%); box-shadow: 0 8px 32px rgba(37,99,235,0.2); }
.pricing-card.featured:hover { transform: scale(1.035) translateY(-6px); box-shadow: 0 16px 56px rgba(37,99,235,0.3); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white; font-size: 11px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.pricing-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-500); margin-bottom: 10px; }
.pricing-price { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; color: var(--gray-900); line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; font-weight: 600; }
.pricing-price .unit { font-size: 16px; font-weight: 500; color: var(--gray-500); }
.pricing-sub { font-size: 12px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.5; }
.pricing-divider { height: 1px; background: var(--gray-100); margin: 20px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); line-height: 1.5; }
.ci { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-cta { display: block; text-align: center; }

/* FINAL CTA */
.final-cta { background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue-mid) 100%); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(16,185,129,0.11) 0%, transparent 70%);
}
.final-cta h2 { font-size: clamp(30px, 4.5vw, 54px); color: var(--white); letter-spacing: -0.02em; margin-bottom: 16px; position: relative; }
.final-cta > .container > p { color: rgba(255,255,255,0.58); font-size: 18px; margin-bottom: 40px; position: relative; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; }
.trust-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 36px; position: relative; }
.trust-line span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.38); font-size: 13px; }
.trust-line span::before { content: '✓'; color: var(--green); font-weight: 700; }

/* FOOTER */
footer { background: var(--gray-900); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { color: white; font-size: 18px; font-weight: 800; }
.footer-logo span { color: var(--green); }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.32); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ============================================================
 * ARTICLE & LANDING PAGE CONTENT STYLES
 * (typographie long-form pour les articles et pages métiers)
 * ========================================================== */

.page-head {
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 160px 0 80px;
  color: var(--white);
  position: relative; overflow: hidden;
}
.page-head::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; max-width: 820px; }
.page-head .breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.page-head .breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.page-head .breadcrumb a:hover { color: var(--green); }
.page-head h1 {
  font-size: clamp(30px, 4.2vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--white);
}
.page-head .page-lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}
.page-head .page-meta {
  margin-top: 28px;
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.page-head .page-meta span::before { content: '·'; margin-right: 20px; color: rgba(255,255,255,0.25); }
.page-head .page-meta span:first-child::before { content: ''; margin-right: 0; }

.page-body {
  padding: 72px 0 40px;
  background: var(--white);
}
.page-body .container { max-width: 780px; }

.article-content { font-size: 17px; color: var(--gray-700); line-height: 1.8; }
.article-content h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  color: var(--gray-900);
  letter-spacing: -0.01em;
  margin: 48px 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.article-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.article-content h3 {
  font-size: clamp(19px, 1.8vw, 22px);
  color: var(--gray-900);
  margin: 32px 0 14px;
}
.article-content p { margin-bottom: 18px; }
.article-content p > em:only-child { font-size: 19px; color: var(--gray-600); font-style: normal; display: block; padding: 18px 22px; border-left: 3px solid var(--green); background: var(--gray-50); border-radius: 0 8px 8px 0; margin-bottom: 28px; line-height: 1.7; }
.article-content strong { color: var(--gray-900); font-weight: 700; }
.article-content a { color: var(--blue); font-weight: 600; border-bottom: 1px solid rgba(37,99,235,0.3); transition: border-color 0.2s; }
.article-content a:hover { border-color: var(--blue); }
.article-content ul, .article-content ol { margin: 0 0 22px 24px; }
.article-content li { margin-bottom: 10px; }
.article-content figure { margin: 32px 0; }
.article-content figure img { width: 100%; border-radius: 14px; box-shadow: var(--shadow); }
.article-content figcaption { text-align: center; font-size: 13px; color: var(--gray-500); margin-top: 10px; font-style: italic; }
.article-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  font-style: italic;
  color: var(--gray-700);
  background: linear-gradient(90deg, var(--gray-50) 0%, transparent 100%);
  border-radius: 0 8px 8px 0;
}
.article-content table {
  width: 100%; border-collapse: collapse; margin: 28px 0;
  font-size: 15px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow);
}
.article-content table th, .article-content table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--gray-100);
}
.article-content table th { background: var(--gray-50); color: var(--gray-900); font-weight: 700; }
.article-content table tr:last-child td { border-bottom: none; }

/* CTA card in article */
.article-cta {
  background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin: 48px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.article-cta::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
}
.article-cta h3 { font-size: 24px; color: var(--white); margin-bottom: 12px; position: relative; }
.article-cta p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 22px; position: relative; }
.article-cta .btn { position: relative; }

/* BLOG INDEX */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px; margin-top: 40px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 180px; object-fit: cover; width: 100%; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--green); text-transform: uppercase;
}
.blog-card-title {
  font-size: 18px; font-weight: 700; color: var(--gray-900);
  line-height: 1.35; margin: 0;
}
.blog-card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; flex: 1; }
.blog-card-link {
  font-size: 14px; font-weight: 600; color: var(--blue);
  margin-top: 12px; display: inline-flex; align-items: center; gap: 4px;
}
.blog-card-link:hover { gap: 8px; transition: gap 0.2s; }

/* SERVICE LANDING — hero spécifique */
.service-hero {
  background: var(--blue-deep);
  padding: 140px 0 80px;
  color: white;
  position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; bottom: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
}
.service-hero .container { position: relative; z-index: 1; }
.service-hero .hero-badge { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: var(--green); }
.service-hero h1 { font-size: clamp(32px, 4.5vw, 52px); max-width: 860px; color: white; letter-spacing: -0.025em; margin-bottom: 20px; }
.service-hero .service-lede { font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,0.75); max-width: 720px; line-height: 1.7; margin-bottom: 36px; }
.service-hero .hero-ctas { margin-bottom: 0; }

/* ============================================================
 * ANIMATIONS
 * ========================================================== */

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(36px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.reveal-stagger > *.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .seo-explainer { grid-template-columns: 1fr; }
  .seo-visual { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .page-head { padding: 130px 0 60px; }
  .page-body { padding: 56px 0 32px; }
  .article-content { font-size: 16px; }
  .article-cta { padding: 32px 24px; }
}
@media (max-width: 600px) {
  section { padding: 72px 0; }
  .hero { padding: 130px 0 80px; }
  .hero-stats { gap: 28px; }
  .trust-items { gap: 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .page-head { padding: 120px 0 48px; }
  .page-head h1 { font-size: 28px; }
}
