/* ICON Learn — Shared Page Styles (Campaign + SEO) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-bg: #ffffff;
  --color-dark: #0a0e1a;
  --color-text: #1d1d1f;
  --color-text-secondary: #424245;
  --color-text-muted: #86868b;
  --color-gold: #c8a44e;
  --color-gold-hover: #b8943e;
  --color-gold-bg: #faf8f2;
  --color-border: #d2d2d7;
  --color-surface: #f5f5f7;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ── Minimal Nav (Campaign pages) ──────────────────────── */
.nav-minimal {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 56px; display: flex; align-items: center; padding: 0 24px;
}
.nav-minimal .wordmark {
  font-size: 17px; font-weight: 700; color: var(--color-text);
  text-decoration: none; letter-spacing: -0.02em;
}
.nav-minimal .wordmark .dot { color: var(--color-gold); font-weight: 300; margin: 0 4px; }
.nav-minimal .wordmark .sub { font-weight: 300; font-size: 14px; letter-spacing: 0.08em; }

/* ── Full Nav (SEO pages) ──────────────────────────────── */
.nav-full {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 56px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; max-width: 1200px; margin: 0 auto;
}
.nav-full-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-full-inner {
  max-width: 1200px; margin: 0 auto; height: 56px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 24px;
}
.nav-full .nav-links { display: flex; gap: 24px; align-items: center; }
.nav-full .nav-links a, .nav-full-inner .nav-links a {
  font-size: 14px; color: var(--color-text-secondary); text-decoration: none;
  font-weight: 500; transition: color 0.2s;
}
.nav-full .nav-links a:hover, .nav-full-inner .nav-links a:hover { color: var(--color-text); }

/* ── Hero ──────────────────────────────────────────────── */
.hero-campaign {
  min-height: 85vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 24px 80px; background: var(--color-dark); position: relative;
}
.hero-seo {
  padding: 140px 24px 80px; max-width: 860px; margin: 0 auto;
}
.hero-campaign h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800;
  color: #ffffff; line-height: 1.08; letter-spacing: -0.03em;
  max-width: 780px; margin-bottom: 28px;
}
.hero-campaign .hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.6);
  font-weight: 300; max-width: 640px; line-height: 1.7; margin-bottom: 40px;
}
.hero-seo h1 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  color: var(--color-text); line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-seo .hero-sub {
  font-size: 18px; color: var(--color-text-muted); font-weight: 300;
  line-height: 1.7; max-width: 640px;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-gold); color: var(--color-dark);
  font-size: 16px; font-weight: 700; padding: 16px 36px;
  border-radius: 100px; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; letter-spacing: -0.01em;
}
.btn-gold:hover { background: var(--color-gold-hover); box-shadow: 0 0 40px rgba(200,164,78,0.3); transform: translateY(-1px); }
.btn-gold-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-text); color: #fff;
  font-size: 16px; font-weight: 700; padding: 16px 36px;
  border-radius: 100px; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-gold-dark:hover { background: #000; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--color-text);
  font-size: 14px; font-weight: 600; padding: 12px 28px;
  border-radius: 100px; text-decoration: none;
  border: 1px solid var(--color-border); cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--color-text); }
.btn-small-text { display: block; font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* ── Sections ──────────────────────────────────────────── */
.section { padding: 80px 24px; max-width: 860px; margin: 0 auto; }
.section-dark { background: var(--color-dark); color: #fff; padding: 80px 24px; }
.section-dark .section-inner { max-width: 860px; margin: 0 auto; }
.section-surface { background: var(--color-surface); padding: 80px 24px; }
.section-surface .section-inner { max-width: 860px; margin: 0 auto; }
.section-border { border-top: 1px solid rgba(0,0,0,0.06); }

.section-label {
  font-size: 13px; font-weight: 700; color: var(--color-gold);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px;
}
.section-label-white {
  font-size: 13px; font-weight: 700; color: var(--color-gold);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px;
}
h3 { font-size: 22px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.body-text { font-size: 17px; color: var(--color-text-secondary); line-height: 1.75; font-weight: 300; }
.body-text-white { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; font-weight: 300; }

/* ── Practitioner Cards ────────────────────────────────── */
.practitioner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 32px; }
.practitioner-card {
  background: var(--color-surface); border: 1px solid rgba(0,0,0,0.04);
  border-radius: 20px; padding: 32px; transition: all 0.3s;
}
.practitioner-card:hover { border-color: rgba(0,0,0,0.08); }
.practitioner-card .name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.practitioner-card .credential-id { font-size: 12px; font-family: 'SF Mono', monospace; color: var(--color-gold); margin-bottom: 8px; }
.practitioner-card .desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.5; }
.practitioner-card .verify-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--color-gold); font-weight: 600;
  text-decoration: none; margin-top: 12px;
}
.practitioner-card .verify-link:hover { color: var(--color-gold-hover); }

/* ── Process Steps ─────────────────────────────────────── */
.steps { counter-reset: step; margin-top: 32px; }
.step {
  counter-increment: step; padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; gap: 20px;
}
.step::before {
  content: counter(step); font-size: 32px; font-weight: 800;
  color: var(--color-gold); min-width: 40px;
}
.step-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--color-text-muted); }

/* ── Credential Card ───────────────────────────────────── */
.credential-card {
  background: var(--color-dark); color: #fff; border-radius: 24px;
  padding: 48px; margin-top: 32px;
}
.credential-card .badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-gold); background: rgba(200,164,78,0.15);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.credential-card h3 { color: #fff; font-size: 28px; margin-bottom: 12px; }
.credential-card p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; }
.credential-card .meta { margin-top: 24px; display: flex; gap: 32px; flex-wrap: wrap; }
.credential-card .meta-item span { display: block; }
.credential-card .meta-item .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.credential-card .meta-item .value { font-size: 16px; font-weight: 600; color: #fff; }

/* ── Objection Block ───────────────────────────────────── */
.objection-block { background: var(--color-gold-bg); border-radius: 20px; padding: 40px; margin-top: 32px; }
.objection-block .question { font-size: 18px; font-weight: 700; font-style: italic; margin-bottom: 16px; color: var(--color-text); }
.objection-block .answer { font-size: 15px; color: var(--color-text-secondary); line-height: 1.75; }

/* ── Final CTA ─────────────────────────────────────────── */
.final-cta {
  background: var(--color-dark); color: #fff;
  padding: 100px 24px; text-align: center;
}
.final-cta h2 { color: #fff; max-width: 680px; margin: 0 auto 32px; }
.final-cta .process-note { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Legal Row (Campaign) ──────────────────────────────── */
.legal-row {
  padding: 20px 24px; text-align: center; font-size: 12px;
  color: var(--color-text-muted); border-top: 1px solid rgba(0,0,0,0.06);
}
.legal-row a { color: var(--color-text-muted); text-decoration: none; }
.legal-row a:hover { color: var(--color-text); }

/* ── Footer (SEO pages) ───────────────────────────────── */
.footer-full {
  background: var(--color-surface); border-top: 1px solid var(--color-border);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.footer-full .footer-brand .wordmark { font-size: 15px; font-weight: 600; color: var(--color-text); }
.footer-full .footer-brand .sub { font-size: 12px; color: var(--color-text-muted); margin-top: 4px; }
.footer-full .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-full .footer-links a { font-size: 12px; color: var(--color-text-secondary); text-decoration: none; }
.footer-full .footer-links a:hover { color: var(--color-text); }
.footer-legal { font-size: 11px; color: var(--color-text-muted); margin-top: 24px; width: 100%; padding-top: 24px; border-top: 1px solid var(--color-border); }

/* ── SEO Content ───────────────────────────────────────── */
.seo-content { max-width: 860px; margin: 0 auto; padding: 0 24px 80px; }
.seo-content h2 { font-size: 28px; margin-top: 48px; margin-bottom: 16px; }
.seo-content h3 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
.seo-content p { font-size: 17px; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.seo-content ul { margin: 16px 0 16px 24px; }
.seo-content li { font-size: 16px; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: 8px; }

/* ── Related Links ─────────────────────────────────────── */
.related-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 16px; margin-top: 32px; }
.related-link {
  display: block; padding: 24px; border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px; text-decoration: none; transition: all 0.3s;
}
.related-link:hover { border-color: rgba(0,0,0,0.12); background: var(--color-surface); }
.related-link .rl-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-gold); font-weight: 700; margin-bottom: 8px; }
.related-link .rl-title { font-size: 16px; font-weight: 700; color: var(--color-text); }

/* ── CTA Section (SEO) ────────────────────────────────── */
.cta-section { background: var(--color-surface); border-radius: 24px; padding: 48px; margin-top: 48px; text-align: center; }
.cta-section h3 { margin-bottom: 8px; }
.cta-section p { font-size: 15px; color: var(--color-text-muted); margin-bottom: 24px; }
.cta-section .cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-campaign { min-height: 75vh; padding: 100px 20px 60px; }
  .section { padding: 60px 20px; }
  .credential-card { padding: 32px 24px; }
  .credential-card .meta { gap: 20px; }
  .nav-full-inner .nav-links { display: none; }
  .practitioner-grid { grid-template-columns: 1fr; }
}
