/* EMC Marketing - World-Class Styles */
/* ================================== */

/* CSS Variables - Color Psychology */
:root {
  /* Primary: Coral - Action, Energy, Passion */
  --primary: #FF6B5B;
  --primary-dark: #E55A4A;
  --primary-light: #FF8577;
  --primary-glow: rgba(255, 107, 91, 0.3);
  
  /* Secondary: Navy - Trust, Authority, Stability */
  --navy: #1A2B4A;
  --navy-light: #2D3F5E;
  --navy-dark: #0F1A2E;
  
  /* Accent: Purple - Creativity, Innovation, Premium */
  --purple: #8B5CF6;
  --purple-light: #A78BFA;
  --purple-dark: #7C3AED;
  
  /* Success: Teal - Growth, Prosperity, Balance */
  --success: #10B981;
  --success-light: #34D399;
  
  /* Neutrals */
  --cream: #FAF7F2;
  --cream-dark: #F5F0EA;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  
  /* Typography */
  --font-display: "Clash Display", "Inter", system-ui, sans-serif;
  --font-body: "Satoshi", "Inter", system-ui, sans-serif;
  
  /* Spacing - Golden Ratio */
  --space-xs: 0.382rem;
  --space-sm: 0.618rem;
  --space-md: 1rem;
  --space-lg: 1.618rem;
  --space-xl: 2.618rem;
  --space-2xl: 4.236rem;
  --space-3xl: 6.854rem;
  
  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 150ms var(--ease-out-expo);
  --transition-normal: 300ms var(--ease-out-expo);
  --transition-slow: 500ms var(--ease-out-expo);
  
  /* Shadows - Depth Psychology */
  --shadow-sm: 0 1px 2px rgba(26, 43, 74, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(26, 43, 74, 0.07), 0 2px 4px -1px rgba(26, 43, 74, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(26, 43, 74, 0.08), 0 4px 6px -2px rgba(26, 43, 74, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(26, 43, 74, 0.1), 0 10px 10px -5px rgba(26, 43, 74, 0.04);
  --shadow-glow: 0 0 40px var(--primary-glow);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Scale - Visual Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { font-size: clamp(1rem, 1.5vw, 1.125rem); }

/* Utility Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Visual: Hidden until animated */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ================================== */
/* BUTTONS - Psychological CTAs */
/* ================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

/* Primary CTA - Maximum Attention */
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--primary-glow);
}

/* Pulse animation for urgency */
.btn-pulse {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50% { box-shadow: 0 0 60px var(--primary-glow), 0 0 80px rgba(139, 92, 246, 0.2); }
}

/* Secondary CTA */
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Ghost button */
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: white;
}

/* Size variants */
.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

/* ================================== */
/* NAVIGATION - Sticky + Trust */
/* ================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-slow);
  padding: 0 clamp(1rem, 5vw, 4rem);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-logo-sub {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-cta {
  margin-left: 1rem;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition-fast);
}

@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 2rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
}

/* ================================== */
/* HERO SECTION - Z-Pattern Layout */
/* ================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* 3D Background Elements */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  opacity: 0.08;
  animation: floatShape 20s ease-in-out infinite;
  will-change: transform;
}

.hero-shape:nth-child(1) {
  top: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  bottom: 20%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--purple) 0%, var(--success) 100%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: -7s;
}

.hero-shape:nth-child(3) {
  top: 60%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: var(--primary);
  border-radius: 50%;
  animation-delay: -14s;
}

.hero-shape:nth-child(4) {
  top: 20%;
  left: 20%;
  width: 100px;
  height: 100px;
  background: linear-gradient(180deg, var(--success) 0%, var(--purple) 100%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation-delay: -5s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-30px) rotate(5deg) scale(1.05); }
  50% { transform: translateY(-15px) rotate(-3deg) scale(0.98); }
  75% { transform: translateY(-40px) rotate(3deg) scale(1.02); }
}

/* Scanning line effect */
.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--purple), transparent);
  opacity: 0.3;
  animation: scanLine 8s linear infinite;
}

@keyframes scanLine {
  0% { top: -5%; opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { top: 105%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero-tagline-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Scarcity indicator */
.hero-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-full);
}

.hero-scarcity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-scarcity-text {
  font-size: 0.875rem;
  color: var(--navy);
}

.hero-scarcity-text strong {
  color: var(--success);
}

/* ================================== */
/* SOCIAL PROOF TICKER - Bandwagon */
/* ================================== */

.ticker {
  overflow: hidden;
  background: var(--navy);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker-track {
  display: flex;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 3rem;
  color: rgba(250, 247, 242, 0.9);
  font-size: 0.875rem;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease infinite;
}

.ticker-highlight {
  color: var(--primary);
  font-weight: 600;
}

.ticker-date {
  color: rgba(250, 247, 242, 0.4);
  font-size: 0.75rem;
}

/* ================================== */
/* PROBLEM SECTION - Pain Agitation */
/* ================================== */

.problem {
  background: var(--cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 968px) {
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.problem-intro {
  position: sticky;
  top: 120px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.problem-headline {
  margin-bottom: 1.5rem;
}

.problem-text {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.problem-text strong {
  color: var(--navy);
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-card {
  padding: 1.75rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--transition-normal);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform var(--transition-normal);
}

.problem-card:hover {
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.problem-card:hover::before {
  transform: scaleY(1);
}

.problem-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
  min-width: 50px;
}

.problem-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.problem-card-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ================================== */
/* SERVICES SECTION - Value Ladder */
/* ================================== */

.services {
  background: var(--cream-dark);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  color: white;
}

.service-badge.popular { background: var(--primary); }
.service-badge.roi { background: var(--purple); }
.service-badge.authority { background: var(--success); }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* ================================== */
/* COMPARISON TABLE - Authority */
/* ================================== */

.comparison {
  background: var(--cream);
}

.comparison-header {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table thead {
  background: var(--navy);
}

.comparison-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: white;
}

.comparison-table th:nth-child(2) {
  color: var(--primary);
  text-align: center;
}

.comparison-table th:nth-child(3) {
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.comparison-table tr:nth-child(even) {
  background: var(--cream-dark);
}

.comparison-table tr:nth-child(odd) {
  background: white;
}

.comparison-table td:nth-child(2) {
  text-align: center;
  color: var(--success);
  font-weight: 500;
}

.comparison-table td:nth-child(3) {
  text-align: center;
  color: var(--gray-500);
}

/* ================================== */
/* TESTIMONIALS - Social Proof */
/* ================================== */

.testimonials {
  background: var(--cream);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card.dark {
  background: var(--navy);
  color: rgba(250, 247, 242, 0.9);
}

.testimonial-card.light {
  background: white;
  border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.testimonial-card.dark .testimonial-result {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.testimonial-card.light .testimonial-result {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.testimonial-result-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  padding-top: 1rem;
  border-top: 1px solid;
}

.testimonial-card.dark .testimonial-author {
  border-top-color: rgba(255,255,255,0.1);
}

.testimonial-card.light .testimonial-author {
  border-top-color: var(--gray-200);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-card.dark .testimonial-name { color: rgba(250, 247, 242, 0.9); }
.testimonial-card.light .testimonial-name { color: var(--navy); }

.testimonial-role {
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* ================================== */
/* QUIZ SECTION - Lead Magnet */
/* ================================== */

.quiz-section {
  background: linear-gradient(135deg, #FFF5F3 0%, var(--cream) 100%);
}

.quiz-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 968px) {
  .quiz-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.quiz-intro h2 {
  margin-bottom: 1rem;
}

.quiz-intro p {
  color: var(--gray-600);
  line-height: 1.8;
}

.quiz-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.quiz-progress {
  height: 4px;
  background: var(--cream-dark);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  border-radius: var(--radius-full);
  transition: width 0.4s var(--ease-out-expo);
}

.quiz-step-indicator {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.quiz-question {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--cream-dark);
  border: 2px solid var(--gray-200);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.quiz-option:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 91, 0.05);
}

.quiz-option.selected {
  border-color: var(--primary);
  background: rgba(255, 107, 91, 0.1);
  color: var(--primary);
}

.quiz-results {
  text-align: center;
  padding: 2rem 0;
}

.quiz-results-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.quiz-results-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.quiz-results-text {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Email capture form */
.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: white;
  transition: all var(--transition-fast);
}

.quiz-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

/* ================================== */
/* FOUNDER SECTION - Authority/Unity */
/* ================================== */

.founder {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 968px) {
  .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.founder-content {
  max-width: 560px;
}

.founder-content .section-label {
  color: var(--purple-light);
}

.founder-content h2 {
  color: rgba(250, 247, 242, 0.95);
  margin-bottom: 1.5rem;
}

.founder-content p {
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.founder-content p strong {
  color: rgba(250, 247, 242, 0.95);
}

.founder-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: rgba(250, 247, 242, 0.95);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: 0.875rem;
  color: var(--primary);
}

.founder-image {
  position: relative;
}

.founder-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-dark) 100%);
}

.founder-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ================================== */
/* FINAL CTA - Urgency/Action */
/* ================================== */

.final-cta {
  background: var(--navy);
  text-align: center;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  color: rgba(250, 247, 242, 0.95);
  margin-bottom: 1.5rem;
}

.final-cta p {
  color: rgba(250, 247, 242, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.final-cta .btn-secondary {
  border-color: rgba(250, 247, 242, 0.3);
  color: rgba(250, 247, 242, 0.9);
}

.final-cta .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.final-cta-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-full);
  color: rgba(250, 247, 242, 0.9);
  font-size: 0.875rem;
}

.final-cta-scarcity strong {
  color: var(--success);
}

/* ================================== */
/* FOOTER */
/* ================================== */

.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: rgba(250, 247, 242, 0.95);
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.5);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(250, 247, 242, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.footer-column-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(250, 247, 242, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-phone {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-contact-email {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.6);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  word-break: break-all;
}

.footer-contact-email:hover {
  color: var(--primary);
}

.footer-contact-location {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.4);
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.4);
}

.footer-credit a {
  color: var(--primary);
  text-decoration: none;
}

/* ================================== */
/* ADDITIONAL PAGES */
/* ================================== */

.page-header {
  padding: 10rem 0 4rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Stats counter */
.stats {
  background: var(--cream-dark);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Marquee - Brand repetition */
.marquee {
  overflow: hidden;
  background: #FFF5F3;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--navy);
  letter-spacing: 0.15em;
  padding: 0 3rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: white;
  padding: 1rem;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ====================================
   ENHANCED 3D EFFECTS & ARCHITECTURE
   ==================================== */

/* Hero Section 3D Enhancement */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 91, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 8px 32px rgba(26, 43, 74, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
  75% { transform: translateY(-15px) rotate(0.5deg); }
}

.float-element {
  animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(2) { animation-delay: -1s; }
.float-element:nth-child(3) { animation-delay: -2s; }
.float-element:nth-child(4) { animation-delay: -3s; }

/* Glow Effects */
.glow-coral {
  box-shadow: 0 0 30px rgba(255, 107, 91, 0.4), 0 0 60px rgba(255, 107, 91, 0.2);
}

.glow-purple {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4), 0 0 60px rgba(139, 92, 246, 0.2);
}

/* Text Gradient Animation */
.gradient-text-animated {
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--purple) 25%,
    var(--primary) 50%,
    var(--purple) 75%,
    var(--primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradient 4s linear infinite;
}

@keyframes textGradient {
  to { background-position: 200% center; }
}

/* 3D Tilt Cards */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.3s ease;
}

.tilt-card:hover {
  transform: rotateY(5deg) rotateX(5deg) translateZ(10px);
}

/* Service Card 3D Effect */
.service-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

/* Stats Counter Glow */
.stat-number {
  text-shadow: 0 0 40px currentColor;
}

/* CTA Section Enhancement */
.cta-section {
  position: relative;
  overflow: hidden;
}

/* Hover Underline Effect */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
  margin: var(--space-3xl) 0;
}
