/* ===================================
   INNER AUTHORITY PROJECT - STYLES
   Brand Colors: Navy, Charcoal, Ivory, 
   Muted Gold, Soft Teal, Sage, Plum
   =================================== */

:root {
  /* Brand Colors */
  --navy: #1a2332;
  --charcoal: #2c3e50;
  --ivory: #f8f6f0;
  --muted-gold: #d4af37;
  --soft-teal: #5f9ea0;
  --sage: #87a96b;
  --plum: #8e7cc3;
  --silver: #c0c4cc;
  
  /* Neutral Shades */
  --white: #ffffff;
  --light-gray: #f5f6f7;
  --medium-gray: #8b9298;
  --dark-gray: #404651;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Breakpoints */
  --mobile: 768px;
  --tablet: 1024px;
  --desktop: 1200px;
  
  /* Effects */
  --shadow-soft: 0 4px 24px rgba(26, 35, 50, 0.1);
  --shadow-medium: 0 8px 32px rgba(26, 35, 50, 0.15);
  --shadow-strong: 0 12px 48px rgba(26, 35, 50, 0.2);
  
  --border-radius: 8px;
  --border-radius-lg: 16px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.text-large {
  font-size: 1.25rem;
}

.text-small {
  font-size: 0.875rem;
}

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

.serif {
  font-family: var(--font-secondary);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
  max-width: var(--desktop);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--muted-gold), var(--soft-teal));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--medium-gray);
  margin-top: var(--space-sm);
}

.highlight {
  color: var(--muted-gold);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), rgba(95, 158, 160, 0.2));
  z-index: -1;
  border-radius: 4px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--charcoal), var(--navy));
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--soft-teal), var(--muted-gold));
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: var(--space-md) var(--space-lg);
  font-size: 1.125rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(248, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 35, 50, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(248, 246, 240, 0.98);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: var(--desktop);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--navy);
}

.logo-symbol svg {
  color: var(--muted-gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-weight: 600;
  font-size: 1.125rem;
}

.logo-sub {
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--muted-gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--charcoal), var(--navy));
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--ivory) 0%, rgba(248, 246, 240, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(95, 158, 160, 0.1), rgba(135, 169, 107, 0.1));
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: var(--desktop);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-soft);
}

.hero-title {
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--medium-gray);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-features {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  font-weight: 500;
  color: var(--navy);
}

.feature-item i {
  color: var(--muted-gold);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.hero-note i {
  color: var(--sage);
}

.hero-visual {
  position: relative;
  height: 600px;
}

.hero-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.geometric-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.circle-large {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 200px;
  height: 200px;
  border: 3px solid var(--muted-gold);
  border-radius: 50%;
  opacity: 0.6;
}

.diamond-accent {
  position: absolute;
  top: 60%;
  right: 30%;
  width: 80px;
  height: 80px;
  background: var(--soft-teal);
  transform: rotate(45deg);
  opacity: 0.8;
  border-radius: 8px;
}

.organic-flow {
  position: absolute;
  bottom: 20%;
  left: 40%;
  width: 120px;
  height: 60px;
  background: linear-gradient(45deg, var(--sage), var(--plum));
  border-radius: 50%;
  opacity: 0.7;
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .hero-visual {
    height: 400px;
  }

  .hero-cta {
    justify-content: center;
  }
}

/* ===================================
   SECTIONS
   =================================== */

section {
  padding: var(--space-2xl) 0;
}

section:nth-child(even) {
  background: var(--white);
}

/* ===================================
   FEATURED TESTIMONIAL
   =================================== */

.featured-testimonial {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.featured-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-content {
  background: linear-gradient(135deg, var(--ivory), var(--white));
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.quote-mark {
  color: var(--muted-gold);
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.featured-quote blockquote {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.featured-quote cite {
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 768px) {
  .featured-quote blockquote {
    font-size: 1.25rem;
  }
  
  .quote-content {
    padding: var(--space-lg);
  }
}

/* ===================================
   TRANSFORMATION SECTION
   =================================== */

.transformation {
  background: linear-gradient(135deg, var(--white), var(--light-gray));
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.transformation-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.transformation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--muted-gold), var(--soft-teal));
}

.transformation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--white);
  font-size: 1.5rem;
}

.transformation-card h3 {
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
  background: var(--ivory);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.coach-name {
  color: var(--muted-gold);
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin-bottom: 0;
}

.coach-title {
  color: var(--medium-gray);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.coach-stats {
  display: flex;
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-top: var(--space-xs);
}

.coach-bio {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.coach-quote {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  color: var(--charcoal);
  font-style: italic;
  padding: var(--space-md);
  border-left: 4px solid var(--muted-gold);
  background: rgba(212, 175, 55, 0.1);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  opacity: 0.1;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

.coach-headshot {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 25%;
  box-shadow: var(--shadow-medium);
  border: 4px solid var(--muted-gold);
  transition: var(--transition);
  position: relative;
}

.coach-headshot:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
  border-color: var(--soft-teal);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.2;
  }
}

/* Fallback for image-placeholder if needed */
.image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 6rem;
  box-shadow: var(--shadow-medium);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coach-stats {
    justify-content: center;
  }
  
  .coach-headshot {
    width: 250px;
    height: 250px;
  }
  
  .image-placeholder {
    width: 250px;
    height: 250px;
  }
}

/* ===================================
   PROGRAM TIMELINE
   =================================== */

.program {
  background: var(--white);
}

.program-timeline {
  position: relative;
  margin-top: var(--space-xl);
}

.program-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--muted-gold), var(--soft-teal));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 3;
  text-align: left;
}

.timeline-marker {
  grid-column: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: var(--shadow-medium);
  z-index: 1;
}

.timeline-content {
  background: var(--ivory);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.timeline-content ul {
  margin-top: var(--space-md);
}

.timeline-content li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}

.timeline-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--muted-gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .program-timeline::before {
    left: 40px;
  }

  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
  }

  .timeline-marker {
    grid-column: 1;
    width: 60px;
    height: 60px;
  }

  .timeline-content {
    grid-column: 2;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 2;
  }
}

/* ===================================
   METHODOLOGY SECTION
   =================================== */

.methodology {
  background: linear-gradient(135deg, var(--ivory), rgba(135, 169, 107, 0.1));
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.blueprint-features {
  margin-top: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.methodology-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blueprint-diagram {
  position: relative;
  width: 400px;
  height: 400px;
}

.diagram-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  z-index: 2;
}

.diagram-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 3px solid var(--muted-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  font-size: 0.875rem;
  box-shadow: var(--shadow-soft);
  animation: float 6s ease-in-out infinite;
}

.element.identity {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.element.confidence {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

.element.purpose {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 3s;
}

.element.authority {
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  animation-delay: 4.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-50%) translateY(-8px);
  }
}

/* Fix for individual element animations */
.element.identity {
  animation-name: float-identity;
}

.element.confidence {
  animation-name: float-confidence;
}

.element.purpose {
  animation-name: float-purpose;
}

.element.authority {
  animation-name: float-authority;
}

@keyframes float-identity {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes float-confidence {
  0%, 100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(8px);
  }
}

@keyframes float-purpose {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes float-authority {
  0%, 100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(-8px);
  }
}

@media (max-width: 768px) {
  .methodology-content {
    grid-template-columns: 1fr;
  }

  .blueprint-diagram {
    width: 300px;
    height: 300px;
  }

  .element {
    width: 80px;
    height: 80px;
    font-size: 0.75rem;
  }

  .diagram-center {
    width: 100px;
    height: 100px;
  }

  /* Mobile positioning adjustments */
  .element.identity {
    top: -40px;
  }

  .element.confidence {
    right: -40px;
  }

  .element.purpose {
    bottom: -40px;
  }

  .element.authority {
    left: -40px;
  }
}

/* ===================================
   AWARENESS LADDER
   =================================== */

.awareness-ladder {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
  padding: var(--space-2xl) 0;
  position: relative;
}

.ladder-infographic {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.ladder-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

/* Central connecting line */
.ladder-container::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 60px;
  width: 3px;
  background: linear-gradient(180deg, var(--muted-gold), var(--soft-teal), var(--sage), var(--plum), #f4a460, #cd5c5c);
  opacity: 0.3;
  z-index: 0;
  border-radius: 2px;
}

.ladder-step {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px 25px;
  background: rgba(255,255,255,0.9);
  border-radius: 15px;
  border-left: 4px solid;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.ladder-step:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-medium);
}

/* Level Colors - Gradient from survival (red) to self-authority (gold) */
.level-6 { 
  border-left-color: var(--muted-gold); 
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(255,255,255,0.95)); 
}
.level-5 { 
  border-left-color: var(--soft-teal); 
  background: linear-gradient(135deg, rgba(95,158,160,0.1), rgba(255,255,255,0.95)); 
}
.level-4 { 
  border-left-color: var(--sage); 
  background: linear-gradient(135deg, rgba(135,169,107,0.1), rgba(255,255,255,0.95)); 
}
.level-3 { 
  border-left-color: var(--plum); 
  background: linear-gradient(135deg, rgba(142,124,195,0.1), rgba(255,255,255,0.95)); 
}
.level-2 { 
  border-left-color: #f4a460; 
  background: linear-gradient(135deg, rgba(244,164,96,0.1), rgba(255,255,255,0.95)); 
}
.level-1 { 
  border-left-color: #cd5c5c; 
  background: linear-gradient(135deg, rgba(205,92,92,0.1), rgba(255,255,255,0.95)); 
}

.step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.level-6 .step-number { background: linear-gradient(135deg, var(--muted-gold), #b8941f); }
.level-5 .step-number { background: linear-gradient(135deg, var(--soft-teal), #4a7c7e); }
.level-4 .step-number { background: linear-gradient(135deg, var(--sage), #6b8e6b); }
.level-3 .step-number { background: linear-gradient(135deg, var(--plum), #7a6ba3); }
.level-2 .step-number { background: linear-gradient(135deg, #f4a460, #cc7a33); }
.level-1 .step-number { background: linear-gradient(135deg, #cd5c5c, #a64444); }

.step-content {
  flex: 1;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
}

.step-subtitle {
  font-size: 12px;
  color: var(--medium-gray);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-arrow {
  margin-left: 15px;
  color: var(--medium-gray);
  opacity: 0.5;
  transition: var(--transition);
}

.ladder-step:hover .step-arrow {
  opacity: 1;
  color: var(--muted-gold);
  transform: translateX(5px);
}

.ladder-cta {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255,255,255,0.8);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2);
}

.ladder-description {
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

/* Remove arrow from last step */
.level-1 .step-arrow {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .ladder-infographic {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .ladder-container {
    max-width: none;
  }
  
  .ladder-container::before {
    left: 30px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin-right: 15px;
  }
  
  .step-title {
    font-size: 16px;
  }
  
  .step-subtitle {
    font-size: 11px;
  }
  
  .ladder-step {
    padding: 15px 20px;
    margin-bottom: 15px;
  }
  
  .ladder-cta {
    padding: var(--space-md);
  }
}

/* ===================================
   COMPARISON TABLE (WHAT MAKES DIFFERENT)
   =================================== */

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
}

.comparison-col {
  padding: var(--space-md);
  text-align: center;
}

.comparison-col h4 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.comparison-col.highlight {
  background: linear-gradient(135deg, var(--muted-gold), #b8941f);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--light-gray);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-item {
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.comparison-item.highlight {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), var(--white));
}

.comparison-item .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.comparison-item .icon.negative {
  color: #e74c3c;
}

.comparison-item .icon.positive {
  color: #27ae60;
}

.comparison-item span {
  font-size: 0.95rem;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-col,
  .comparison-item {
    padding: var(--space-sm);
  }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
  background: var(--light-gray);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  padding: var(--space-md);
  cursor: pointer;
  display: flex;
  justify-content: between;
  align-items: center;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--ivory);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.faq-question .fas {
  color: var(--muted-gold);
  transition: transform 0.3s ease;
  margin-left: var(--space-sm);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
  background: var(--white);
}

.faq-answer p {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question .fas {
  transform: rotate(180deg);
}

/* ===================================
   CORE VALUES SECTION
   =================================== */

.values {
  background: linear-gradient(135deg, var(--ivory), var(--white));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.value-item {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border-top: 4px solid var(--muted-gold);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-top-color: var(--soft-teal);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.value-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--space-sm);
}

.value-item p {
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   APPLICATION SECTION
   =================================== */

.apply {
  background: var(--white);
}

.application-options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  align-items: center;
}

@media (max-width: 768px) {
  .application-options {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .option-divider {
    order: -1;
  }
}

.option-card {
  background: linear-gradient(135deg, var(--ivory), var(--white));
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 2px solid transparent;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--muted-gold);
}

.option-header {
  margin-bottom: var(--space-md);
}

.option-header i {
  font-size: 2.5rem;
  color: var(--muted-gold);
  margin-bottom: var(--space-sm);
}

.option-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.option-card p {
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.option-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.option-divider span {
  background: var(--muted-gold);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.875rem;
}

.application-process {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.application-process h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.step-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--space-xs);
}

.step-content p {
  color: var(--charcoal);
  margin: 0;
  line-height: 1.5;
}

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

.scriptural-foundation {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.2);
}

.scriptural-foundation h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-gold);
  margin: 0 0 var(--space-md);
}

.scripture-verse {
  margin-bottom: var(--space-sm);
}

.scripture-verse p {
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin: 0 0 var(--space-xs);
}

.scripture-verse cite {
  color: var(--muted-gold);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-column {
  margin-bottom: var(--space-lg);
}

.footer-column h4 {
  color: var(--muted-gold);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 var(--space-md);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: var(--space-xs);
}

.footer-column a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--muted-gold);
}

/* ===================================
   BONUS TOOLS
   =================================== */

.bonus-tools {
  background: var(--white);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.tool-card {
  background: linear-gradient(135deg, var(--ivory), var(--white));
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--muted-gold), var(--soft-teal));
  transition: var(--transition);
}

.tool-card:hover::before {
  left: 0;
}

.tool-card:hover {
  transform: translateY(-8px);
  border-color: var(--muted-gold);
  box-shadow: var(--shadow-medium);
}

.tool-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sage), var(--plum));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--white);
  font-size: 1.5rem;
}

.tool-card h3 {
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

/* ===================================
   RESULTS & ROI
   =================================== */

.results {
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  color: var(--white);
  position: relative;
}

.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.95), rgba(44, 62, 80, 0.95));
  z-index: 0;
}

.results .container {
  position: relative;
  z-index: 1;
}

.results .section-title,
.results .section-subtitle {
  color: var(--white);
}

.results .section-title::after {
  background: linear-gradient(90deg, var(--muted-gold), var(--soft-teal));
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.roi-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roi-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
}

.roi-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--white);
  font-size: 1.5rem;
}

.roi-card h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.roi-card p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.results-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

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

.results-stats .stat-number {
  color: var(--muted-gold);
  font-size: 3rem;
}

.results-stats .stat-label {
  color: var(--white);
  font-size: 1rem;
}

/* ===================================
   WHAT MAKES THIS DIFFERENT
   =================================== */

.different {
  background: linear-gradient(135deg, var(--sage), var(--plum));
  color: var(--white);
}

.different .section-title,
.different .section-subtitle {
  color: var(--white);
}

.different .section-title::after {
  background: linear-gradient(90deg, var(--muted-gold), var(--white));
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.different-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.different-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}

.different-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  color: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.different-card h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.different-card p {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

/* ===================================
   TESTIMONIALS
   =================================== */

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.testimonial-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

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

.testimonial-content {
  margin-bottom: var(--space-lg);
}

.quote-icon {
  color: var(--muted-gold);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.testimonial-card blockquote {
  font-family: var(--font-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--charcoal);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-gray);
}

.author-info h4 {
  color: var(--navy);
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.author-info p {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin: 0;
}

/* ===================================
   VALUES SECTION
   =================================== */

.values {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.value-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: var(--ivory);
}

.value-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sage), var(--plum));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--white);
  font-size: 1.25rem;
}

.value-item h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.value-item p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  line-height: 1.5;
  margin: 0;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
  background: var(--ivory);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  margin-top: var(--space-xl);
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.125rem;
}

.faq-question i {
  color: var(--muted-gold);
  transition: var(--transition);
  font-size: 1rem;
}

.faq-answer {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  padding: var(--space-md);
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer p {
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   DISCOVERY CALL CTA
   =================================== */

.discovery-call {
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  color: var(--white);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.cta-benefits {
  space-y: var(--space-sm);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.95);
}

.benefit-item i {
  color: var(--white);
  font-size: 1.125rem;
}

.cta-form {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.form-header h3 {
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.form-header p {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin: 0;
}

.discovery-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--muted-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-note {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--medium-gray);
  font-size: 0.875rem;
  text-align: center;
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .cta-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ===================================
   APPLICATION SECTION
   =================================== */

.apply {
  background: var(--white);
}

.application-options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0 var(--space-2xl);
  align-items: center;
}

.option-card {
  background: var(--ivory);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.option-card:hover {
  border-color: var(--muted-gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.option-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.option-header i {
  font-size: 2.5rem;
  color: var(--muted-gold);
}

.option-header h3 {
  color: var(--navy);
  margin: 0;
}

.option-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--muted-gold);
  color: var(--white);
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.125rem;
}

.application-process {
  background: var(--ivory);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.application-process h3 {
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.step-content h4 {
  color: var(--navy);
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.step-content p {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 768px) {
  .application-options {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .option-divider {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

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

.footer {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo .logo-symbol svg {
  color: var(--muted-gold);
}

.footer-logo .logo-main {
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-tagline {
  font-family: var(--font-secondary);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.scriptural-foundation h4 {
  color: var(--muted-gold);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.scripture-verse {
  margin-bottom: var(--space-md);
}

.scripture-verse p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xs);
  font-style: italic;
}

.scripture-verse cite {
  color: var(--muted-gold);
  font-size: 0.875rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-column h4 {
  color: var(--muted-gold);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  font-size: 0.875rem;
}

.footer-column a:hover {
  color: var(--muted-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-md);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--muted-gold);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================================
   MODAL STYLES
   =================================== */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 50, 0.8);
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal-content {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
}

.modal-header h2 {
  color: var(--navy);
  margin: 0;
}

.close {
  font-size: 2rem;
  color: var(--medium-gray);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.close:hover {
  color: var(--navy);
}

.full-application-form {
  padding: var(--space-lg);
}

.form-section {
  margin-bottom: var(--space-2xl);
}

.form-section h3 {
  color: var(--navy);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--light-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--light-gray);
}

.form-disclaimer {
  color: var(--medium-gray);
  font-size: 0.875rem;
  margin-top: var(--space-md);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: var(--space-sm);
    max-height: 95vh;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in {
  animation: slideIn 0.6s ease-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.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;
}

.text-gradient {
  background: linear-gradient(135deg, var(--muted-gold), var(--soft-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-pattern {
  position: relative;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(95, 158, 160, 0.1) 0%, transparent 50%);
  z-index: -1;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 480px) {
  :root {
    --space-xs: 0.25rem;
    --space-sm: 0.75rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .transformation-grid,
  .tools-grid,
  .roi-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@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;
  }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--muted-gold);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-strong: 0 12px 48px rgba(0, 0, 0, 0.5);
  }
}