/* ============================================================
   WikiFounders — Premium Design System
   The Founder Authority Company
   Colors derived from logo: Deep Navy · Gold · Silver
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy:           #1B2A4A;
  --navy-deep:      #0D1928;
  --navy-mid:       #243558;
  --navy-light:     #2E4270;
  --navy-surface:   #1A2B47;
  --gold:           #C8922A;
  --gold-bright:    #D4A843;
  --gold-light:     #E8C06A;
  --gold-pale:      #F7EDD5;
  --gold-dark:      #9A6F1E;
  --gold-glow:      rgba(200,146,42,0.18);
  --gold-glow-sm:   rgba(200,146,42,0.10);
  --silver:         #C0C0C0;
  --silver-light:   #E2E2E2;
  --silver-dark:    #8A8A9A;
  --white:          #FFFFFF;
  --off-white:      #FAFAF8;
  --cream:          #F5F3EE;
  --border:         #E8E5DF;
  --border-subtle:  #EEECEA;
  --text-dark:      #0F1928;
  --text-body:      #3A3A4E;
  --text-muted:     #6A6A7E;
  --text-light:     #9A9AB0;
  --font-serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  8rem;
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;
  --shadow-xs:   0 1px 4px rgba(13,25,40,0.06);
  --shadow-sm:   0 2px 10px rgba(13,25,40,0.07);
  --shadow-md:   0 6px 24px rgba(13,25,40,0.10);
  --shadow-lg:   0 12px 48px rgba(13,25,40,0.13);
  --shadow-xl:   0 20px 80px rgba(13,25,40,0.18);
  --shadow-gold: 0 6px 28px rgba(200,146,42,0.25);
  --ease:     cubic-bezier(0.4,0,0.2,1);
  --ease-out: cubic-bezier(0,0,0.2,1);
  --t-fast:   0.15s var(--ease);
  --t-med:    0.3s var(--ease);
  --t-slow:   0.5s var(--ease-out);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Layout ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 2rem; }
.container-xs { max-width: 680px;  margin: 0 auto; padding: 0 2rem; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-serif); color: var(--text-dark); line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-sans); }
p  { color: var(--text-body); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow-sm);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--r-full);
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.section-divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); border-radius: var(--r-full); margin: 1rem auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  padding: 0.8rem 1.75rem;
  transition: var(--t-med);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background-position: 100% 0%; box-shadow: 0 8px 36px rgba(200,146,42,0.38); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }
.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.925rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--t-med);
  padding: 1.25rem 0;
}
.header.scrolled {
  background: rgba(10,18,35,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(200,146,42,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 40px; width: auto; transition: var(--t-med); }
.header.scrolled .header-logo img { height: 34px; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.8); padding: 0.5rem 0.875rem; border-radius: var(--r-sm); transition: var(--t-fast); letter-spacing: 0.01em; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--gold-bright); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--r-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(200,146,42,0.3);
  margin-left: 0.5rem;
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(200,146,42,0.45) !important; transform: translateY(-1px); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t-fast); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; backdrop-filter: blur(4px); }
.nav-overlay.active { display: block; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero-globe-bg {
  position: absolute;
  top: 50%; right: -8%;
  transform: translateY(-50%);
  width: min(680px, 60%);
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(200,146,42,0.05) 0%, transparent 68%);
  border-radius: 50%;
  border: 1px solid rgba(200,146,42,0.09);
  pointer-events: none;
}
.hero-globe-bg::before { content: ''; position: absolute; inset: 15%; border-radius: 50%; border: 1px solid rgba(200,146,42,0.06); }
.hero-globe-bg::after  { content: ''; position: absolute; inset: 30%; border-radius: 50%; border: 1px solid rgba(200,146,42,0.04); }
.hero-particle { position: absolute; border-radius: 50%; pointer-events: none; animation: float 8s ease-in-out infinite; }
.hero-particle:nth-child(1) { width:6px;height:6px;background:var(--gold);opacity:.4;top:20%;left:15%;animation-delay:0s; }
.hero-particle:nth-child(2) { width:4px;height:4px;background:var(--gold-bright);opacity:.3;top:60%;left:8%;animation-delay:2s; }
.hero-particle:nth-child(3) { width:3px;height:3px;background:var(--silver);opacity:.3;top:35%;left:85%;animation-delay:4s; }
.hero-particle:nth-child(4) { width:5px;height:5px;background:var(--gold);opacity:.25;top:75%;left:78%;animation-delay:1s; }
.hero-particle:nth-child(5) { width:4px;height:4px;background:var(--gold-bright);opacity:.35;top:10%;left:60%;animation-delay:3s; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(0deg);}33%{transform:translateY(-18px) rotate(5deg);}66%{transform:translateY(10px) rotate(-3deg);} }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,146,42,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,146,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-layout { display: flex; align-items: center; justify-content: space-between; gap: 4rem; }
.hero-content { flex: 1; min-width: 0; }
.hero-content .section-label { background: rgba(200,146,42,0.1); border-color: rgba(200,146,42,0.25); color: var(--gold-bright); }
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; line-height: 1.15; }
.hero-content h1 .highlight { color: var(--gold-bright); }
.hero-subtitle { font-size: 1.175rem; line-height: 1.8; color: rgba(255,255,255,0.72); margin-bottom: 2.25rem; max-width: 600px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat .num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--gold-bright); line-height: 1; margin-bottom: 0.25rem; }
.hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; text-transform: uppercase; }

/* ═══════════════════════════════════
   TRUST BAR
═══════════════════════════════════ */
.trust-bar { background: var(--navy-deep); border-top: 1px solid rgba(200,146,42,0.12); border-bottom: 1px solid rgba(200,146,42,0.12); padding: 1.5rem 0; overflow: hidden; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 2.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.625rem; color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 500; white-space: nowrap; letter-spacing: 0.02em; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-dot { width: 3px; height: 3px; background: rgba(200,146,42,0.3); border-radius: 50%; }

/* ═══════════════════════════════════
   GENERAL SECTIONS
═══════════════════════════════════ */
section { padding: var(--space-3xl) 0; }
.bg-off-white  { background: var(--off-white); }
.bg-cream      { background: var(--cream); }
.bg-navy       { background: var(--navy); }
.bg-navy-deep  { background: var(--navy-deep); }
.bg-dark       { background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%); }

/* INTRO */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.intro-visual-inner { position: relative; width: 100%; max-width: 420px; }
.google-mockup { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid var(--border); }
.gm-header { background: #f8f9fa; padding: 0.875rem 1.25rem; border-bottom: 1px solid #e8eaed; display: flex; align-items: center; gap: 0.75rem; }
.gm-dots { display: flex; gap: 5px; }
.gm-dot { width: 10px; height: 10px; border-radius: 50%; }
.gm-dot:nth-child(1){background:#ff5f57;} .gm-dot:nth-child(2){background:#febc2e;} .gm-dot:nth-child(3){background:#28c840;}
.gm-searchbar { flex: 1; background: var(--white); border: 1px solid #dadce0; border-radius: 24px; padding: 0.4rem 1rem; font-size: 0.78rem; color: #5f6368; display: flex; align-items: center; gap: 0.5rem; }
.gm-body { padding: 1.25rem; }
.gm-result { margin-bottom: 1rem; }
.gm-result:last-child { margin-bottom: 0; }
.gm-result-url   { font-size: 0.68rem; color: #5f6368; margin-bottom: 0.2rem; }
.gm-result-title { font-size: 0.9rem; font-weight: 500; color: #1a0dab; margin-bottom: 0.25rem; font-family: var(--font-sans); }
.gm-result-desc  { font-size: 0.72rem; color: #4d5156; line-height: 1.5; font-family: var(--font-sans); }
.gm-wiki-badge { display: inline-flex; align-items: center; gap: 4px; background: #f0f4ff; border: 1px solid #c5d0f5; border-radius: 4px; padding: 2px 6px; font-size: 0.65rem; font-weight: 600; color: #3c5bd1; margin-bottom: 0.3rem; font-family: var(--font-sans); }
.intro-float-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--navy-deep); border: 1px solid rgba(200,146,42,0.3); border-radius: var(--r-md); padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); color: var(--white); }
.intro-float-badge .num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--gold-bright); line-height: 1; margin-bottom: 0.2rem; }
.intro-float-badge .lbl { font-size: 0.7rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.intro-text .section-label { margin-bottom: 1rem; }
.intro-text h2  { margin-bottom: 1.25rem; }
.intro-text p   { font-size: 1.05rem; margin-bottom: 1.25rem; color: var(--text-muted); line-height: 1.8; }
.intro-pillars  { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0 2rem; }
.pillar { display: flex; align-items: flex-start; gap: 0.875rem; padding: 1rem 1.25rem; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-md); transition: var(--t-med); }
.pillar:hover { border-color: rgba(200,146,42,0.25); box-shadow: var(--shadow-sm); }
.pillar-icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--gold-glow-sm); border: 1px solid rgba(200,146,42,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.pillar-text strong { font-size: 0.875rem; color: var(--text-dark); display: block; margin-bottom: 0.15rem; }
.pillar-text span   { font-size: 0.8rem; color: var(--text-muted); }

/* AUDIENCE */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.audience-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.75rem; text-align: center; transition: var(--t-med); position: relative; overflow: hidden; }
.audience-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transform: scaleX(0); transition: var(--t-med); transform-origin: left; }
.audience-card:hover::before { transform: scaleX(1); }
.audience-card:hover { border-color: rgba(200,146,42,0.2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.audience-icon { width: 60px; height: 60px; background: var(--gold-glow-sm); border: 1px solid rgba(200,146,42,0.15); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1.25rem; }
.audience-card h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.audience-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.25rem 2rem; transition: var(--t-med); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold)); transform: scaleX(0); transition: var(--t-med); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: rgba(200,146,42,0.2); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1.5rem; box-shadow: 0 4px 16px rgba(13,25,40,0.15); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--text-dark); }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.service-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; color: var(--gold); background: var(--gold-glow-sm); border: 1px solid rgba(200,146,42,0.2); border-radius: var(--r-full); padding: 0.3rem 0.75rem; }
.service-features { list-style: none; padding: 0; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-features li { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.5rem; }
.service-features li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 0.75rem; margin-top: 0.1rem; flex-shrink: 0; }

/* AI VISIBILITY */
.ai-section { background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%); position: relative; overflow: hidden; }
.ai-section::before { content: ''; position: absolute; top: -30%; left: -10%; width: 70%; aspect-ratio: 1; background: radial-gradient(circle, rgba(200,146,42,0.06) 0%, transparent 70%); pointer-events: none; }
.ai-section::after  { content: ''; position: absolute; bottom: -20%; right: -5%; width: 50%; aspect-ratio: 1; background: radial-gradient(circle, rgba(200,146,42,0.04) 0%, transparent 70%); pointer-events: none; }
.ai-section .container { position: relative; z-index: 1; }
.ai-section .section-header h2 { color: var(--white); }
.ai-section .section-header p  { color: rgba(255,255,255,0.65); }
.ai-tagline { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; }
.ai-tagline-text { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.ai-tagline-line { flex: 1; max-width: 120px; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,146,42,0.3), transparent); }
.ai-platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-bottom: 3.5rem; }
.ai-platform { display: flex; align-items: center; gap: 0.875rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 1rem 1.5rem; min-width: 200px; transition: var(--t-med); backdrop-filter: blur(8px); }
.ai-platform:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,146,42,0.3); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.ai-platform-logo { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.ai-platform-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.ai-platform-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.ai-platform-desc { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.1rem; }
.ai-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.ai-benefit { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md); padding: 1.5rem; text-align: center; }
.ai-benefit-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.ai-benefit h4 { font-size: 0.9rem; font-family: var(--font-sans); color: var(--white); margin-bottom: 0.4rem; }
.ai-benefit p  { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; margin-top: 3rem; }
.process-steps::before { content: ''; position: absolute; top: 2.5rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem); height: 1px; background: linear-gradient(90deg, transparent, var(--gold-glow), var(--gold), var(--gold-glow), transparent); }
.process-step { text-align: center; position: relative; padding-top: 0.5rem; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--white); font-size: 1rem; font-weight: 700; font-family: var(--font-serif); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(200,146,42,0.3); }
.process-step h4 { font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.process-step p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* PRICING CARDS */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: start; margin-top: 3rem; }
.pricing-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 2.25rem 2rem; position: relative; transition: var(--t-med); }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold), var(--shadow-lg); transform: scale(1.025); }
.pricing-card.featured:hover { transform: scale(1.025) translateY(-4px); }
.featured-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--white); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 1.25rem; border-radius: 0 0 var(--r-sm) var(--r-sm); }
.pricing-tier { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.pricing-card .tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.pricing-price { margin-bottom: 1.75rem; }
.price-setup { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.price-setup span { font-size: 1.2rem; font-weight: 600; vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.price-monthly { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.35rem; }
.price-monthly strong { color: var(--text-dark); }
.pricing-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.pricing-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.85rem; color: var(--text-body); line-height: 1.5; }
.pricing-features li .check { width: 18px; height: 18px; border-radius: 50%; background: rgba(200,146,42,0.1); border: 1px solid rgba(200,146,42,0.2); color: var(--gold); font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.05rem; }
.pricing-features li.dimmed { color: var(--text-light); }
.pricing-features li.dimmed .check { background: var(--cream); border-color: var(--border); color: var(--text-light); }

/* ADD-ONS */
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.addon-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; transition: var(--t-med); }
.addon-card:hover { border-color: rgba(200,146,42,0.25); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.addon-icon { font-size: 1.5rem; }
.addon-card h4 { font-size: 0.95rem; color: var(--text-dark); margin: 0; }
.addon-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin: 0; }
.addon-price { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 700; color: var(--gold); background: var(--gold-glow-sm); border: 1px solid rgba(200,146,42,0.2); border-radius: var(--r-full); padding: 0.3rem 0.75rem; width: fit-content; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.75rem; transition: var(--t-med); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testimonial-stars span { color: var(--gold); font-size: 0.9rem; }
.testimonial-quote { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-quote::before { content: '\201C'; font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold); line-height: 0; vertical-align: -0.6rem; margin-right: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: var(--gold-bright); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; font-family: var(--font-serif); }
.author-name  { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.author-title { font-size: 0.75rem; color: var(--text-muted); }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 3.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; }
.stat-num .gold { color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 3rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: var(--t-med); }
.faq-item.active { border-color: rgba(200,146,42,0.25); box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); cursor: pointer; transition: var(--t-fast); background: none; border: none; font-family: var(--font-sans); }
.faq-question:hover { color: var(--navy); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--t-med); font-size: 1rem; color: var(--gold); font-weight: 700; }
.faq-item.active .faq-icon { background: var(--gold-glow-sm); border-color: rgba(200,146,42,0.2); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease); }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 400px; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%); position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 80%; aspect-ratio: 1; background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2   { color: var(--white); margin-bottom: 1rem; }
.cta-section .sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-section .btn-group { justify-content: center; }
.cta-guarantee { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* PAGE HERO */
.page-hero { background: linear-gradient(160deg, var(--navy-deep), var(--navy)); padding: 10rem 0 5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; background: linear-gradient(to top, var(--white), transparent); pointer-events: none; }
.page-hero .bg-cream-override::before { background: linear-gradient(to top, var(--off-white), transparent); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(200,146,42,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(200,146,42,0.03) 1px, transparent 1px); background-size: 50px 50px; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; line-height: 1.8; }

/* ABOUT VALUES */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.value-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.75rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: var(--t-med); }
.value-card:hover { border-color: rgba(200,146,42,0.2); box-shadow: var(--shadow-sm); }
.value-num { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 800; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 2rem; }
.value-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.value-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* DARK CARDS (about page) */
.dark-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dark-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); padding: 2rem 1.75rem; transition: var(--t-med); text-align: center; }
.dark-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(200,146,42,0.25); }
.dark-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.dark-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; font-family: var(--font-sans); font-weight: 600; }
.dark-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

/* PRICING PAGE EXTRAS */
.pricing-note { background: var(--gold-pale); border: 1px solid rgba(200,146,42,0.25); border-radius: var(--r-md); padding: 1.25rem 1.75rem; display: flex; align-items: flex-start; gap: 1rem; margin-top: 2rem; }
.pricing-note-icon { font-size: 1.25rem; flex-shrink: 0; }
.pricing-note h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 0.3rem; }
.pricing-note p  { font-size: 0.82rem; color: var(--text-body); line-height: 1.65; margin: 0; }
.pricing-compare { overflow-x: auto; margin-top: 3rem; }
.pricing-compare table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 600px; }
.pricing-compare th { background: var(--navy-deep); color: var(--white); padding: 1rem 1.25rem; text-align: left; font-weight: 600; font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.04em; }
.pricing-compare th:first-child { border-radius: var(--r-sm) 0 0 0; }
.pricing-compare th:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.pricing-compare th.highlight-col { background: var(--gold); }
.pricing-compare td { padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--border); color: var(--text-body); vertical-align: middle; }
.pricing-compare tr:nth-child(even) td { background: var(--off-white); }
.pricing-compare td.feature-name { font-weight: 500; color: var(--text-dark); }
.pricing-compare td .tick  { color: var(--gold); font-weight: 700; }
.pricing-compare td .cross { color: var(--text-light); }
.pricing-compare td.highlight-col { background: rgba(200,146,42,0.05); font-weight: 600; color: var(--navy); }
.pricing-compare tr:nth-child(even) td.highlight-col { background: rgba(200,146,42,0.08); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: stretch; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--gold-glow-sm); border: 1px solid rgba(200,146,42,0.2); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail strong { font-size: 0.85rem; color: var(--text-dark); display: block; margin-bottom: 0.1rem; }
.contact-detail span  { font-size: 0.82rem; color: var(--text-muted); }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 3rem 2.5rem; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.825rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-dark); background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 0.875rem 1.125rem; transition: var(--t-fast); outline: none; width: 100%; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px var(--gold-glow-sm); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }
.form-note { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-light); margin-top: 1rem; justify-content: center; }

/* FOOTER */
footer { background: var(--navy-deep); color: var(--white); padding: 5rem 0 2rem; border-top: 1px solid rgba(200,146,42,0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 34px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 300px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--t-fast); }
.footer-social:hover { background: rgba(200,146,42,0.15); border-color: rgba(200,146,42,0.3); color: var(--gold-bright); }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--t-fast); }
.footer-col ul li a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--t-fast); }
.footer-bottom-links a:hover { color: var(--gold-bright); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-grid { gap: 1.25rem; }
  .hero-layout { gap: 2rem; }
}
@media (max-width: 900px) {
  :root { --space-3xl: 5rem; --space-2xl: 4rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  .nav-links { position: fixed; top: 0; right: -100%; width: min(320px,85vw); height: 100vh; background: var(--navy-deep); border-left: 1px solid rgba(200,146,42,0.15); flex-direction: column; align-items: flex-start; padding: 5rem 2rem 2rem; gap: 0.25rem; transition: right 0.35s var(--ease); z-index: 999; overflow-y: auto; }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 0.875rem 1rem; font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; width: 100%; justify-content: center; }
  .menu-toggle { display: flex; }
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero-layout { flex-direction: column; gap: 2.5rem; text-align: center; }
  .hero-content { max-width: 600px; margin: 0 auto; }
  .hero-subtitle { max-width: 100%; }
  .btn-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .intro-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .intro-visual     { display: none; }
  .audience-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid    { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .ai-platforms     { gap: 0.875rem; }
  .ai-platform      { min-width: 160px; }
  .ai-benefits      { grid-template-columns: 1fr; }
  .stats-row        { grid-template-columns: repeat(2, 1fr); }
  .addons-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .dark-card-grid   { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.65rem; }
  .hero { padding: 6rem 0 3rem; }
  .hero-layout { gap: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
  .audience-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .addons-grid   { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .btn-group     { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form-card { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.mt-sm{margin-top:var(--space-sm);} .mt-md{margin-top:var(--space-md);} .mt-lg{margin-top:var(--space-lg);} .mt-xl{margin-top:var(--space-xl);}
.mb-sm{margin-bottom:var(--space-sm);} .mb-md{margin-bottom:var(--space-md);} .mb-lg{margin-bottom:var(--space-lg);} .mb-xl{margin-bottom:var(--space-xl);}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1{transition-delay:0.1s;} .fade-in-delay-2{transition-delay:0.2s;} .fade-in-delay-3{transition-delay:0.3s;} .fade-in-delay-4{transition-delay:0.4s;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* ═══════════════════════════════════
   LUCIDE ICON SYSTEM
═══════════════════════════════════ */
/* Base icon sizing via data attribute */
[data-lucide] { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-xs [data-lucide], [data-lucide].icon-xs { width: 14px; height: 14px; }
.icon-sm [data-lucide], [data-lucide].icon-sm { width: 16px; height: 16px; }
[data-lucide].icon-md,  .icon-md [data-lucide] { width: 20px; height: 20px; }
[data-lucide].icon-lg,  .icon-lg [data-lucide] { width: 24px; height: 24px; }
[data-lucide].icon-xl,  .icon-xl [data-lucide] { width: 32px; height: 32px; }

/* Container icon sizing */
.pillar-icon [data-lucide]    { width: 18px; height: 18px; color: var(--gold); stroke-width: 2; }
.audience-icon [data-lucide]  { width: 28px; height: 28px; color: var(--gold); stroke-width: 1.75; }
.service-icon [data-lucide]   { width: 26px; height: 26px; color: var(--gold-bright); stroke-width: 1.75; }
.dark-card-icon [data-lucide] { width: 30px; height: 30px; color: var(--gold-bright); stroke-width: 1.75; }
.addon-icon [data-lucide]     { width: 26px; height: 26px; color: var(--gold); stroke-width: 1.75; }
.ai-benefit-icon [data-lucide]{ width: 28px; height: 28px; color: var(--gold-bright); stroke-width: 1.75; }
.contact-detail-icon [data-lucide] { width: 20px; height: 20px; color: var(--gold); stroke-width: 2; }
.audience-icon [data-lucide]  { width: 28px; height: 28px; }
.value-icon [data-lucide]     { width: 20px; height: 20px; color: var(--gold); stroke-width: 2; }
.trust-item [data-lucide]     { width: 14px; height: 14px; color: var(--gold); stroke-width: 2.5; flex-shrink: 0; }
.pricing-note-icon [data-lucide] { width: 22px; height: 22px; color: var(--gold-dark); stroke-width: 2; }

/* Ensure icon containers remain display:flex after lucide replaces <i> */
.pillar-icon, .audience-icon, .service-icon, .dark-card-icon,
.addon-icon, .ai-benefit-icon, .contact-detail-icon { display: flex; align-items: center; justify-content: center; }

/* ═══════════════════════════════════
   HERO ECOSYSTEM — WIKIPEDIA ORBIT (PENTAGON)
═══════════════════════════════════ */
.hero-ecosystem {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 2;
  margin-right: -3rem;
}

/* Orbit rings — clean glowing circles, no spin */
.eco-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
}
.eco-ring-outer {
  width: 360px; height: 360px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(200,146,42,0.22);
  box-shadow:
    0 0 0 1px rgba(200,146,42,0.06),
    0 0 32px rgba(200,146,42,0.08),
    inset 0 0 32px rgba(200,146,42,0.04);
  animation: ringBreath 5s ease-in-out infinite;
}
.eco-ring-inner {
  width: 210px; height: 210px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 20px rgba(200,146,42,0.06);
}
@keyframes ringBreath {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 0 1px rgba(200,146,42,0.06), 0 0 28px rgba(200,146,42,0.07), inset 0 0 28px rgba(200,146,42,0.03); }
  50%       { opacity: 1;   box-shadow: 0 0 0 1px rgba(200,146,42,0.10), 0 0 48px rgba(200,146,42,0.13), inset 0 0 40px rgba(200,146,42,0.06); }
}

/* Wikipedia hub — clean, no ring or background */
.eco-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.eco-hub img {
  width: 118px; height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 4px 22px rgba(0,0,0,0.7));
}
.eco-hub-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-top: 4px;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
}
.eco-hub-sub {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
}

/* Slot wrapper — positions node center on pentagon coordinate */
.eco-slot {
  position: absolute;
  transform: translate(-50%, -50%);
}
/* Pentagon: container 420×420, center (210,210), r=170px */
/* Angles: 0° top, 72° upper-right, 144° lower-right, 216° lower-left, 288° upper-left */
.eco-s-1 { top:  40px; left: 210px; } /* ChatGPT    — top           */
.eco-s-2 { top: 157px; left: 372px; } /* Gemini     — upper-right   */
.eco-s-3 { top: 348px; left: 310px; } /* Grok       — lower-right   */
.eco-s-4 { top: 348px; left: 110px; } /* Perplexity — lower-left    */
.eco-s-5 { top: 157px; left:  48px; } /* Claude     — upper-left    */

/* LLM node card */
.eco-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  pointer-events: auto;
}
.eco-node-img {
  width: 56px; height: 56px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.eco-node-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
}
.eco-node:hover .eco-node-img {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(200,146,42,0.32);
  border-color: rgba(200,146,42,0.5);
}
.eco-node-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
}

/* Floating animations applied to inner .eco-node (slot handles position) */
.eco-s-1 .eco-node { animation: floatV1  8s   ease-in-out infinite; }
.eco-s-2 .eco-node { animation: floatV2  9s   ease-in-out infinite 0.8s; }
.eco-s-3 .eco-node { animation: floatV1  7.5s ease-in-out infinite 1.6s; }
.eco-s-4 .eco-node { animation: floatV2  8.5s ease-in-out infinite 0.4s; }
.eco-s-5 .eco-node { animation: floatV1  9.2s ease-in-out infinite 1.2s; }

@keyframes floatV1 {
  0%,100% { transform: translateY(0); }
  40%     { transform: translateY(-8px); }
  70%     { transform: translateY(4px); }
}
@keyframes floatV2 {
  0%,100% { transform: translateY(0); }
  40%     { transform: translateY(6px); }
  70%     { transform: translateY(-7px); }
}
/* Hide on smaller screens */
@media (max-width: 1100px) {
  .hero-ecosystem { display: none; }
}

/* ═══════════════════════════════════
   FOOTER SOCIAL ICONS (SVG)
═══════════════════════════════════ */
.footer-social svg { width: 16px; height: 16px; display: block; }

/* ═══════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.875rem;
  color: var(--text-dark);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.legal-content p  { margin-bottom: 1rem; line-height: 1.85; color: var(--text-body); font-size: 0.95rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; }
.legal-content ul li { margin-bottom: 0.5rem; line-height: 1.75; color: var(--text-body); font-size: 0.95rem; list-style-type: disc; }
.legal-content ul li::marker { color: var(--gold); }
.legal-content strong { color: var(--text-dark); }
.legal-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 1rem 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 2.5rem;
}
.legal-meta span { display: flex; align-items: center; gap: 0.4rem; }

/* ═══════════════════════════════════
   FORM SUCCESS STATE
═══════════════════════════════════ */
.form-success-icon [data-lucide] { width: 52px; height: 52px; color: var(--gold); stroke-width: 1.5; }
