/* ============================================
   HOME PAGE STYLES
   Editorial Design System with Organic Flow
   ============================================ */

:root {
  /* Brand Color Palette - Orange Primary */
  --primary: #ED6226;
  --primary-dark: #d85520;
  --primary-light: #ff8a50;
  --primary-glow: rgba(237, 98, 38, 0.4);
  
  --secondary: #00A896;
  --secondary-dark: #008c7a;
  --secondary-light: #00d4aa;
  
  --accent-100: #fff5f0;
  --accent-200: #ffd9c4;
  --accent-300: #ffb899;
  
  --earth-900: #1c1917;
  --earth-700: #44403c;
  --earth-500: #78716c;
  --earth-100: #f5f5f4;
  --earth-50: #fafaf9;
  
  /* Typography Scale - Match Brand Fonts */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  
  /* Transitions */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.home-page {
  font-family: var(--font-body);
  color: var(--earth-900);
  background: var(--earth-50);
  overflow-x: hidden;
}

/* Container System */
.home-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.home-container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition-smooth);
}

[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(165deg, var(--accent-100) 0%, #fff8f5 50%, #fff 100%);
}

.home-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(237, 98, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 98, 38, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Organic Background Shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50% 40% 60% 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: morph 20s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(225deg, var(--accent-200), var(--accent-300));
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

.shape-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(315deg, var(--primary-dark), var(--primary));
  top: 50%;
  left: 40%;
  animation-delay: -10s;
}

@keyframes morph {
  0%, 100% { 
    border-radius: 50% 40% 60% 50%;
    transform: rotate(0deg) scale(1);
  }
  25% { 
    border-radius: 60% 50% 50% 40%;
    transform: rotate(5deg) scale(1.1);
  }
  50% { 
    border-radius: 40% 60% 50% 50%;
    transform: rotate(-5deg) scale(0.95);
  }
  75% { 
    border-radius: 50% 50% 40% 60%;
    transform: rotate(3deg) scale(1.05);
  }
}

/* Hero Layout */
.home-hero .home-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero Content */
.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-200);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--earth-900);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(237, 98, 38, 0.08) 25%,
    rgba(255, 138, 80, 0.12) 50%,
    rgba(237, 98, 38, 0.08) 75%,
    transparent 100%
  );
  filter: blur(20px);
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

.title-accent {
  display: block;
  font-size: 0.85em;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  animation: gradient-shift 3s ease-in-out infinite;
  position: relative;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-glow),
    var(--primary),
    var(--primary-glow),
    transparent
  );
  opacity: 0.4;
  filter: blur(4px);
}

@keyframes gradient-shift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(10deg); }
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--earth-700);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

/* Text Highlights and Emphasis */
.text-highlight {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: var(--earth-900);
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(237, 98, 38, 0.2);
  z-index: -1;
  border-radius: 2px;
}

.text-standout {
  font-weight: 700;
  color: var(--primary);
  position: relative;
  padding: 0 4px;
}

.text-standout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(237, 98, 38, 0.08);
  border-radius: 4px;
  z-index: -1;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(237, 98, 38, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 8px 30px rgba(237, 98, 38, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--earth-900);
  border: 2px solid var(--earth-900);
}

.btn-secondary:hover {
  background: var(--earth-900);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--earth-900);
  border: 2px solid var(--earth-700);
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  text-decoration: none;
}

.btn-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237, 98, 38, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-white:hover::before {
  left: 100%;
}

.btn-white:hover {
  background: #f8f8f8;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.btn-magnetic {
  transition: transform 0.2s var(--transition-smooth);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(120, 113, 108, 0.3);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.4rem;
  position: relative;
}

.stat-number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  opacity: 0.3;
}

.stat-number sup {
  font-size: 1.5rem;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--earth-500);
}

/* Hero Award Badge */
.hero-award-badge {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
}

.hero-award-badge a {
  display: inline-block;
  transition: all 0.3s var(--transition-smooth);
}

.hero-award-badge a:hover {
  transform: scale(1.05) translateY(-4px);
  filter: drop-shadow(0 8px 20px rgba(237, 98, 38, 0.3));
}

.hero-award-image {
  max-width: 170px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  height: 580px;
}

.hero-image-frame {
  position: relative;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s var(--transition-smooth);
}

.hero-image-frame:hover .hero-image {
  transform: scale(1);
}

.image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, var(--primary), transparent 60%);
  opacity: 0.2;
  pointer-events: none;
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  animation: float 3s ease-in-out infinite;
}

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

.badge-icon {
  font-size: 2rem;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
}

.badge-subtitle {
  font-size: 0.875rem;
  color: var(--earth-700);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--earth-700);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.7;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--earth-700));
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%, 100% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: var(--space-2xl) 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(237, 98, 38, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(237, 98, 38, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, white 0%, #fffaf7 100%);
  position: relative;
  overflow: hidden;
}

.services-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237, 98, 38, 0.1), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 138, 80, 0.08), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--earth-700);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 1;
}

.service-card {
  padding: var(--space-lg);
  background: var(--earth-50);
  border: 2px solid var(--earth-100);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 12px 40px var(--primary-glow);
}

.service-card-featured {
  background: linear-gradient(135deg, var(--accent-100), white);
  border-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.service-card-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(237, 98, 38, 0.1), transparent 60%);
  animation: pulse-glow 4s ease-in-out infinite;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: var(--primary);
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: all 0.4s var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.service-card-featured .service-icon {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 30px var(--primary-glow);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--earth-900);
}

.service-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--earth-700);
  margin: 0;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
  padding: var(--space-2xl) 0;
  background: 
    linear-gradient(135deg, rgba(237, 98, 38, 0.03) 0%, transparent 30%, rgba(255, 138, 80, 0.05) 70%, transparent 100%),
    linear-gradient(180deg, var(--earth-50) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(237, 98, 38, 0.02) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(237, 98, 38, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.benefits-section::after {
  content: '⚡';
  position: absolute;
  bottom: 15%;
  left: 8%;
  font-size: 6rem;
  opacity: 0.04;
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.benefit-card {
  position: relative;
  padding: var(--space-lg);
  background: white;
  border: 2px solid var(--earth-100);
  border-radius: 20px;
  transition: all 0.4s var(--transition-smooth);
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transition: height 0.4s var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(237, 98, 38, 0.15);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--earth-100);
  line-height: 1;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--earth-900);
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--earth-700);
  margin: 0;
}

/* ============================================
   EDUCATIONAL VIDEOS SECTION
   ============================================ */

.educational-section {
  padding: var(--space-2xl) 0;
  background: 
    linear-gradient(135deg, rgba(237, 98, 38, 0.04) 0%, transparent 50%, rgba(0, 168, 150, 0.03) 100%),
    linear-gradient(180deg, var(--earth-50) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.educational-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 168, 150, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 98, 38, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: 0;
  animation: grid-drift 20s ease-in-out infinite;
}

@keyframes grid-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, 10px); }
}

.educational-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.educational-video-card {
  background: white;
  border: 2px solid var(--earth-100);
  border-radius: 20px;
  padding: 0.75rem;
  transition: all 0.4s var(--transition-smooth);
  overflow: hidden;
}

.educational-video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px var(--primary-glow);
  border-color: var(--primary);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--earth-100) 0%, var(--accent-100) 100%);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1200px) {
  .educational-videos-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

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

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

.about-section {
  padding: var(--space-2xl) 0;
  background: 
    radial-gradient(ellipse at top left, rgba(237, 98, 38, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255, 138, 80, 0.04) 0%, transparent 50%),
    white;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(30deg, rgba(237, 98, 38, 0.015) 1px, transparent 1px),
    linear-gradient(-30deg, rgba(237, 98, 38, 0.015) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
  opacity: 0.6;
}

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

.about-content {
  max-width: 650px;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--earth-700);
  margin-bottom: var(--space-md);
}

.about-text strong {
  color: var(--earth-900);
  font-weight: 700;
}

.about-image {
  position: relative;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
}

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

/* ============================================
   FINANCING SECTION
   ============================================ */

.financing-section {
  padding: var(--space-2xl) 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(237, 98, 38, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(255, 138, 80, 0.06) 0%, transparent 40%),
    linear-gradient(135deg, var(--earth-50) 0%, #fffaf7 100%);
  position: relative;
  overflow: hidden;
}

.financing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(237, 98, 38, 0.04) 2px, transparent 2px),
    linear-gradient(90deg, rgba(237, 98, 38, 0.04) 2px, transparent 2px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.financing-section::after {
  content: '$';
  position: absolute;
  bottom: 5%;
  left: 5%;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(237, 98, 38, 0.02);
  font-family: var(--font-display);
  z-index: 1;
}

.financing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.financing-card {
  position: relative;
  padding: var(--space-lg);
  background: white;
  border: 2px solid var(--earth-100);
  border-radius: 24px;
  transition: all 0.4s var(--transition-smooth);
}

.financing-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 60px var(--primary-glow);
}

.financing-card-featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: var(--primary);
  box-shadow: 0 8px 32px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.financing-card-featured::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 50%);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 20px) rotate(45deg); }
}

.financing-card-featured:hover {
  box-shadow: 0 20px 60px var(--primary-glow);
  transform: translateY(-12px) scale(1.05);
}

.financing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--earth-100);
  color: var(--earth-900);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.financing-badge.featured {
  background: white;
  color: var(--primary);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.financing-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
}

.financing-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--earth-900);
}

.financing-card-featured h3 {
  color: white;
}

.financing-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--earth-700);
  margin-bottom: var(--space-md);
}

.financing-card-featured p {
  color: rgba(255, 255, 255, 0.95);
}

.financing-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.financing-benefits li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--earth-700);
  border-top: 1px solid var(--earth-100);
}

.financing-card-featured .financing-benefits li {
  color: rgba(255, 255, 255, 0.9);
  border-top-color: rgba(255, 255, 255, 0.2);
}

.financing-benefits li:first-child {
  border-top: none;
}

.financing-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */

.philosophy-section {
  padding: var(--space-2xl) 0;
  background: white;
}

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

.philosophy-image {
  position: relative;
  height: 650px;
  border-radius: 24px;
  overflow: hidden;
}

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--forest-900) 0%, transparent 60%);
  opacity: 0.3;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.label-line {
  width: 40px;
  height: 2px;
  background: var(--primary);
  animation: line-grow 2s ease-in-out infinite;
}

@keyframes line-grow {
  0%, 100% { width: 40px; }
  50% { width: 60px; }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--earth-900);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

.philosophy-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--earth-700);
  margin-bottom: var(--space-md);
}

.text-emphasis {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  font-style: italic;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--transition-smooth);
}

.text-link:hover::after {
  width: 100%;
}

.text-link:hover {
  gap: 0.5rem;
}

/* ============================================
   IMPACT SECTION
   ============================================ */

.impact-section {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.impact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.impact-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(237, 98, 38, 0.95) 0%,
    rgba(216, 85, 32, 0.92) 50%,
    rgba(237, 98, 38, 0.95) 100%
  );
}

.impact-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.impact-content {
  position: relative;
  z-index: 1;
  color: white;
}

.impact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: var(--space-xl);
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.impact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.impact-card {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.4s var(--transition-smooth);
}

.impact-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: white;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.impact-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: white;
}

.impact-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.impact-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.testimonial-section {
  padding: var(--space-2xl) 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(237, 98, 38, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--accent-100) 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(237, 98, 38, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 98, 38, 0.02) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.testimonial-section::after {
  content: '"';
  position: absolute;
  bottom: 5%;
  right: 3%;
  font-size: 20rem;
  font-family: var(--font-display);
  color: rgba(237, 98, 38, 0.03);
  line-height: 1;
  pointer-events: none;
  transform: rotate(180deg);
  z-index: 1;
}

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

.section-title-center {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--earth-900);
  position: relative;
  display: inline-block;
}

.section-title-center::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  padding: var(--space-lg);
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  padding: var(--space-xl);
}

.testimonial-quote-large {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--primary-light);
  opacity: 0.3;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: inherit;
}

.testimonial-featured .testimonial-text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
}

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

.author-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-featured .author-image {
  border-color: rgba(255, 255, 255, 0.5);
}

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

.author-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.875rem;
  opacity: 0.7;
}

.testimonial-savings {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  background: var(--primary);
  border-radius: 50px;
  color: white;
}

.savings-number {
  font-weight: 900;
  font-size: 1.25rem;
}

.savings-label {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
  position: relative;
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  color: white;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.cta-decorative-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 60%);
  border-radius: 50% 40% 60% 50%;
  animation: float-shape 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 50px); }
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.final-cta-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.final-cta-features {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.feature-item svg {
  color: white;
  opacity: 0.9;
}

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

@media (max-width: 1200px) {
  .home-hero .home-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-image-wrapper {
    height: 500px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 500px;
  }

  .financing-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-image {
    height: 500px;
  }

  .impact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    text-align: center;
  }

  .stat {
    text-align: center;
  }

  .stat-divider {
    display: none;
  }

  .hero-award-badge {
    margin-top: var(--space-md);
    width: 100%;
    text-align: center;
  }

  .hero-award-badge a {
    display: inline-block;
  }

  .hero-award-image {
    max-width: 150px;
    margin: 0 auto;
  }

  .hero-image-wrapper {
    height: 400px;
  }

  .floating-badge {
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.25rem;
  }

  .services-grid {
    gap: var(--space-sm);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .about-grid {
    gap: var(--space-lg);
  }

  .about-image {
    height: 400px;
  }

  .financing-grid {
    gap: var(--space-sm);
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .testimonial-featured {
    grid-column: span 1;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

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

.video-testimonials-section {
  margin-top: 0;
  padding-top: 0;
}

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

.video-testimonial-card {
  background: white;
  border: 1px solid var(--earth-100);
  border-radius: 20px;
  padding: 0.75rem;
  transition: all 0.4s var(--transition-smooth);
  overflow: hidden;
  position: relative;
}

.video-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237, 98, 38, 0.03) 0%, rgba(0, 168, 150, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.video-testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px var(--primary-glow);
  border-color: var(--primary);
}

.video-testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  background: linear-gradient(135deg, var(--earth-100) 0%, var(--accent-100) 100%);
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.testimonial-video:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

@media (max-width: 640px) {
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .video-testimonials-section {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
  }
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
  /* Spacing adjustments */
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  .home-container,
  .home-container-wide {
    padding: 0 var(--space-sm);
  }

  /* Hero Section */
  .home-hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }

  .hero-image-wrapper {
    margin-top: var(--space-lg);
    max-width: 100%;
  }

  .floating-badge {
    bottom: -10px;
    right: -10px;
    transform: scale(0.85);
  }

  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  /* Benefits Section */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1.125rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }

  .benefit-number {
    font-size: 2.5rem;
  }

  /* Educational Videos */
  .educational-videos-grid {
    gap: 1rem;
  }

  .educational-video-card {
    padding: 0.5rem;
  }

  /* About Section */
  .about-section {
    padding: var(--space-lg) 0;
  }

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

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
    height: 400px;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Impact Section */
  .impact-section {
    padding: var(--space-xl) 0;
  }

  .impact-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .impact-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .impact-card {
    padding: 1.5rem;
  }

  .impact-card h3 {
    font-size: 1.125rem;
  }

  .impact-card p {
    font-size: 0.95rem;
  }

  .impact-cta {
    margin-top: 2rem;
  }

  /* Financing Section */
  .financing-section {
    padding: var(--space-lg) 0;
  }

  .financing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .financing-card {
    padding: 1.5rem;
  }

  .financing-card h3 {
    font-size: 1.25rem;
  }

  .financing-card p {
    font-size: 0.95rem;
  }

  .financing-benefits li {
    font-size: 0.9rem;
  }

  /* Final CTA Section */
  .final-cta-section {
    padding: var(--space-xl) 0;
  }

  .final-cta-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .final-cta-text {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .final-cta-text br {
    display: none;
  }

  .final-cta-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .btn-white,
  .btn-outline-white {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .final-cta-features {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    align-items: center;
  }

  .feature-item {
    font-size: 0.9rem;
    justify-content: center;
  }

  /* Section Headers */
  .section-header-center {
    margin-bottom: var(--space-md);
  }

  .section-title-center {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-label {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile adjustments */
  :root {
    --space-lg: 3rem;
    --space-xl: 3.5rem;
    --space-2xl: 4rem;
  }

  .home-container,
  .home-container-wide {
    padding: 0 1rem;
  }

  /* Hero */
  .home-hero {
    padding: 5rem 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .hero-stats {
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  /* Services */
  .service-card {
    padding: 1.25rem;
  }

  .service-icon svg {
    width: 36px;
    height: 36px;
  }

  .service-card h3 {
    font-size: 1.125rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  /* Benefits */
  .benefit-card {
    padding: 1.25rem;
  }

  .benefit-number {
    font-size: 2rem;
  }

  .benefit-icon {
    font-size: 2rem;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.875rem;
  }

  /* About */
  .about-image {
    height: 300px;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  /* Impact */
  .impact-title {
    font-size: 1.875rem;
    line-height: 1.15;
  }

  .impact-card {
    padding: 1.25rem;
  }

  .impact-card h3 {
    font-size: 1rem;
  }

  .impact-card p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .card-number {
    font-size: 2rem;
  }

  /* Financing */
  .financing-card {
    padding: 1.25rem;
  }

  .financing-icon {
    font-size: 2rem;
  }

  .financing-card h3 {
    font-size: 1.125rem;
  }

  .financing-card p {
    font-size: 0.9rem;
  }

  .financing-benefits li {
    font-size: 0.85rem;
  }

  /* Final CTA */
  .final-cta-title {
    font-size: 1.875rem;
    line-height: 1.15;
  }

  .final-cta-text {
    font-size: 0.95rem;
  }

  .btn-white,
  .btn-outline-white,
  .btn-large {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .feature-item {
    font-size: 0.85rem;
    justify-content: center;
  }

  .feature-item svg {
    width: 16px;
    height: 16px;
  }

  /* Section Titles */
  .section-title-center {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* Video testimonials */
  .video-testimonial-card {
    padding: 0.5rem;
  }
}

