/*
Theme Name: PurposeDNA
Theme URI: https://yourpurposedna.com
Author: YourPurposeDNA
Author URI: https://yourpurposedna.com
Description: A sleek, premium light theme for YourPurposeDNA.com — discover your purpose archetype, take the quiz, and get the plugin.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: purposedna
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Light Theme
   ============================================================ */
:root {
  --color-deep:         #ffffff;
  --color-navy:         #f4f7ff;
  --color-mid:          #eef2ff;
  --color-card:         #ffffff;
  --color-border:       rgba(37,99,235,0.1);
  --color-border-hover: rgba(0,194,184,0.4);

  --color-teal:         #00a89f;
  --color-teal-light:   #00c2b8;
  --color-blue:         #2563eb;
  --color-blue-light:   #3b82f6;
  --color-purple:       #6d28d9;

  --grad-brand:  linear-gradient(135deg, #00c2b8 0%, #2563eb 50%, #7c3aed 100%);
  --grad-subtle: linear-gradient(135deg, rgba(0,194,184,0.07) 0%, rgba(37,99,235,0.07) 100%);
  --grad-card:   linear-gradient(145deg, #ffffff 0%, #f8faff 100%);

  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1200px;
  --radius:      16px;
  --radius-lg:   24px;

  --shadow-card: 0 2px 20px rgba(37,99,235,0.07), 0 0 0 1px rgba(37,99,235,0.06);
  --shadow-glow: 0 8px 40px rgba(0,194,184,0.18), 0 0 80px rgba(37,99,235,0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: #ffffff;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-teal); }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}
p { color: var(--text-secondary); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem,5vw,2.5rem);
}
.section { padding: var(--section-pad) 0; }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(37,99,235,0.2);
  background: rgba(37,99,235,0.06);
  color: var(--color-blue);
  margin-bottom: 1.5rem;
}
.section-label { display: block; text-align: center; margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem,4vw,3rem); text-align: center; margin-bottom: 1rem; }
.section-sub { text-align: center; font-size: 1.1rem; max-width: 600px; margin: 0 auto 3.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,0.25); }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 36px rgba(37,99,235,0.35); color: #fff; }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--color-border); }
.btn-ghost:hover { border-color: var(--color-blue); color: var(--color-blue); background: rgba(37,99,235,0.05); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--color-blue); border: 2px solid var(--color-blue); }
.btn-outline:hover { background: var(--color-blue); color: #fff; transform: translateY(-2px); }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--color-border);
  padding: 0.875rem 0;
  box-shadow: 0 2px 20px rgba(37,99,235,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.logo-text span { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.site-nav { display: flex; align-items: center; gap: 2rem; list-style: none; }
.site-nav a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.site-nav a:hover { color: var(--color-blue); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text-primary); padding: 0.25rem; }

@media (max-width: 768px) {
  .site-nav, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  #site-header.menu-open .site-nav {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(37,99,235,0.1);
    padding: 1.5rem 2rem; gap: 1.25rem; align-items: flex-start;
  }
  #site-header.menu-open .nav-actions {
    display: flex; position: absolute; top: calc(100% + 280px);
    left: 0; right: 0; padding: 1rem 2rem 1.5rem;
    background: #fff; border-bottom: 1px solid var(--color-border);
  }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 6rem;
  background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 45%, #f5f0ff 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(0,194,184,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(37,99,235,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 5%,  rgba(124,58,237,0.07) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1.1rem; border-radius: 100px;
  border: 1px solid rgba(37,99,235,0.2); background: rgba(37,99,235,0.06);
  color: var(--color-blue); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease forwards;
}
.hero-title {
  font-size: clamp(2.8rem,7vw,5.5rem); line-height: 1.05; font-weight: 800;
  margin-bottom: 1.5rem; color: #0f172a;
  animation: fadeInUp 0.6s 0.1s ease forwards; opacity: 0;
}
.hero-sub {
  font-size: clamp(1rem,2vw,1.25rem); color: var(--text-secondary);
  max-width: 580px; margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.2s ease forwards; opacity: 0; line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: fadeInUp 0.6s 0.3s ease forwards; opacity: 0; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--color-border);
  animation: fadeInUp 0.6s 0.4s ease forwards; opacity: 0;
}
.stat-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  background: var(--grad-brand); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; display: block;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ============================================================
   ARCHETYPE STRIP
   ============================================================ */
#archetypes-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-navy); overflow: hidden;
}
.strip-track { display: flex; gap: 3rem; animation: scrollStrip 22s linear infinite; width: max-content; }
.strip-item { display: flex; align-items: center; gap: 0.75rem; white-space: nowrap; color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; }
.strip-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad-brand); }
@keyframes scrollStrip { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works { background: var(--color-navy); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 2rem; }
.step-card {
  background: #ffffff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.3s ease; box-shadow: var(--shadow-card);
}
.step-card:hover { border-color: rgba(0,194,184,0.3); transform: translateY(-4px); box-shadow: var(--shadow-card), var(--shadow-glow); }
.step-number {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 800;
  background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; opacity: 0.2; line-height: 1; margin-bottom: 1rem;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-subtle); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.step-card p  { font-size: 0.95rem; }

/* ============================================================
   ARCHETYPES
   ============================================================ */
#archetypes { background: #ffffff; }
.archetypes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 1.5rem; }
.archetype-card {
  background: var(--grad-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  cursor: pointer; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.archetype-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-subtle); opacity: 0; transition: opacity 0.3s;
}
.archetype-card:hover { border-color: rgba(0,194,184,0.3); transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-card), var(--shadow-glow); }
.archetype-card:hover::before { opacity: 1; }
.archetype-emoji { font-size: 2.5rem; margin-bottom: 1rem; position: relative; display: block; }
.archetype-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; position: relative; }
.archetype-card p  { font-size: 0.875rem; position: relative; }

/* ============================================================
   QUIZ CTA
   ============================================================ */
#quiz-cta { background: var(--color-navy); position: relative; overflow: hidden; }
.quiz-cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,194,184,0.06) 0%, transparent 70%); }
.quiz-cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .quiz-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.quiz-cta-content h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: 1rem; }
.quiz-cta-content p  { font-size: 1.05rem; margin-bottom: 2rem; }
.quiz-preview {
  background: #ffffff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-card);
}
.quiz-preview-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border);
}
.quiz-preview-header .dot { width: 10px; height: 10px; border-radius: 50%; }
.quiz-preview-q { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1rem; }
.quiz-option {
  padding: 0.75rem 1rem; border-radius: 10px; border: 1px solid var(--color-border);
  margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s; background: #fafbff;
}
.quiz-option:hover, .quiz-option.active { border-color: var(--color-teal-light); background: rgba(0,194,184,0.06); color: var(--color-teal); }

/* ============================================================
   PLUGIN SECTION
   ============================================================ */
#plugin { background: var(--color-navy); }
.plugin-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .plugin-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.plugin-mockup {
  background: #ffffff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card), var(--shadow-glow);
}
.mockup-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.25rem; background: var(--color-mid); border-bottom: 1px solid var(--color-border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28ca41; }
.mockup-content { padding: 1.5rem; }
.mockup-title { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.archetype-result {
  display: flex; align-items: center; gap: 1rem; padding: 1rem;
  background: rgba(0,194,184,0.06); border: 1px solid rgba(0,194,184,0.2); border-radius: 12px; margin-bottom: 1rem;
}
.archetype-result-icon { font-size: 2rem; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(0,194,184,0.1); border-radius: 12px; flex-shrink: 0; }
.archetype-result-text h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-teal); margin-bottom: 0.25rem; }
.archetype-result-text p { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.score-bars { margin-top: 1rem; }
.score-bar-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.score-bar-label { font-size: 0.8rem; color: var(--text-secondary); width: 70px; flex-shrink: 0; }
.score-bar-track { flex: 1; height: 6px; background: var(--color-mid); border-radius: 100px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 100px; background: var(--grad-brand); }
.score-bar-pct { font-size: 0.75rem; color: var(--text-muted); width: 30px; text-align: right; }
.plugin-features { list-style: none; }
.plugin-features li { display: flex; align-items: flex-start; gap: 0.875rem; padding: 0.875rem 0; border-bottom: 1px solid var(--color-border); color: var(--text-secondary); font-size: 0.95rem; }
.plugin-features li:last-child { border-bottom: none; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(0,194,184,0.1); border: 1px solid rgba(0,194,184,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--color-teal); font-size: 0.65rem; }

/* ============================================================
   PRICING
   ============================================================ */
#pricing { background: #ffffff; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.pricing-card {
  background: #ffffff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  position: relative; box-shadow: var(--shadow-card); transition: transform 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: rgba(0,194,184,0.35);
  background: linear-gradient(145deg, #ffffff 0%, #f0fbfa 100%);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: white; padding: 0.3rem 1.25rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.pricing-name { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--text-primary); line-height: 1; margin-bottom: 0.35rem; }
.pricing-price span { font-size: 1.2rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.pricing-desc { font-size: 0.9rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--color-border); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-secondary); }
.pricing-features .tick { color: var(--color-teal); font-size: 0.8rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--color-navy); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.testimonial-card {
  background: #ffffff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-card); transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(0,194,184,0.25); transform: translateY(-3px); box-shadow: var(--shadow-card), var(--shadow-glow); }
.stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.author-title { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--color-mid); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%; background: none; border: none; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; font-family: var(--font-body); font-size: 1rem;
  font-weight: 600; color: var(--text-primary); text-align: left; transition: color 0.2s;
}
.faq-question:hover { color: var(--color-blue); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; font-size: 1rem; color: var(--text-muted);
}
.faq-item.open .faq-icon { background: rgba(0,194,184,0.1); border-color: var(--color-teal); color: var(--color-teal); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding-bottom: 1.5rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   CTA BAND
   ============================================================ */
#cta-band {
  padding: clamp(4rem,8vw,7rem) 0;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #eff6ff 0%, #f5f0ff 100%);
}
.cta-band-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,194,184,0.08) 0%, transparent 70%); }
.cta-band-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-band-inner h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.cta-band-inner p  { font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   FOOTER — keep dark for contrast
   ============================================================ */
#site-footer {
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}
#site-footer .logo-text { color: #f1f5f9; }
#site-footer .logo-text span { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; margin-bottom: 1.5rem; max-width: 280px; color: #94a3b8; }
.footer-heading { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #f1f5f9; margin-bottom: 1.25rem; font-family: var(--font-body); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { color: #64748b; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--color-teal-light); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.82rem; color: #475569; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .hero-actions { flex-direction: column; }
  .btn-large { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
}
