/*
Theme Name: Extraordinary Inspirations
Theme URI: https://extraordinaryinspirations.com
Author: Extraordinary Inspirations
Author URI: https://extraordinaryinspirations.com
Description: A modern, accessible custom WordPress theme for Extraordinary Inspirations — helping families navigate special education with confidence.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: extraordinary
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, accessibility-ready
*/

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Colors */
  --color-primary-purple: #6B5CE7;
  --color-primary-purple-dark: #5A4BD6;
  --color-primary-purple-light: #8B7FF0;
  --color-primary-teal: #4ECDC4;
  --color-primary-teal-dark: #3DBDB5;
  --color-primary-teal-light: #7EDDD6;
  --color-accent-pink: #FF6B9D;
  --color-accent-orange: #FF8C42;
  --color-accent-coral: #FF6B6B;
  --color-lavender-bg: #F5F3FF;
  --color-lavender-light: #FAF9FF;
  --color-white: #FFFFFF;
  --color-off-white: #F8F9FA;
  --color-light-gray: #F1F3F5;
  --color-mid-gray: #ADB5BD;
  --color-dark-navy: #1B2438;
  --color-text-primary: #2D3142;
  --color-text-secondary: #4F5D75;
  --color-text-muted: #8891A5;
  --color-border-light: #E8ECF1;
  --color-success: #51CF66;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 30%, #E0F2FE 70%, #F0FDFA 100%);
  --gradient-purple: linear-gradient(135deg, #6B5CE7, #8B7FF0);
  --gradient-teal: linear-gradient(135deg, #4ECDC4, #7EDDD6);
  --gradient-cta: linear-gradient(135deg, #4ECDC4 0%, #6B5CE7 100%);
  --gradient-card-purple: linear-gradient(135deg, #F5F3FF, #EDE9FE);
  --gradient-card-teal: linear-gradient(135deg, #F0FDFA, #CCFBF1);
  --gradient-card-coral: linear-gradient(135deg, #FFF1F2, #FFE4E6);
  --gradient-card-orange: linear-gradient(135deg, #FFF7ED, #FFEDD5);
  --gradient-navy: linear-gradient(135deg, #1B2438 0%, #2D3A54 100%);

  /* Typography */
  --font-primary: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Font Sizes (fluid) */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --fs-base: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  --fs-md: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --fs-2xl: clamp(1.875rem, 1.4rem + 2vw, 2.75rem);
  --fs-3xl: clamp(2.25rem, 1.6rem + 2.8vw, 3.5rem);
  --fs-4xl: clamp(2.75rem, 1.8rem + 3.5vw, 4.5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --section-padding: clamp(4rem, 3rem + 4vw, 8rem);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(27, 36, 56, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 36, 56, 0.08);
  --shadow-lg: 0 8px 32px rgba(27, 36, 56, 0.1);
  --shadow-xl: 0 16px 48px rgba(27, 36, 56, 0.12);
  --shadow-glow-purple: 0 8px 32px rgba(107, 92, 231, 0.2);
  --shadow-glow-teal: 0 8px 32px rgba(78, 205, 196, 0.2);

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 900px;
  --header-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--font-weight-regular);
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--color-primary-purple);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-purple-dark);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid var(--color-primary-purple);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes floatSlowReverse {
  0% { transform: translateY(0); }
  50% { transform: translateY(15px); }
  100% { transform: translateY(0); }
}

.fade-up, .fade-left, .fade-right {
  opacity: 0;
}

.fade-up.visible {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-left.visible {
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-right.visible {
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Add stagger delays for children of fade-up containers if they want sequential fading */
.fade-up.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.fade-up.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.fade-up.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.fade-up.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.fade-up.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.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;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-dark-navy);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.section-subtitle {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-cta);
  border-radius: var(--radius-full);
  margin: var(--space-md) auto 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  transform: scale(0);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-fast);
}

.btn:active::after {
  transform: scale(2.5);
  opacity: 1;
  transition: 0s;
}

.btn--primary {
  background: var(--gradient-purple);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-purple);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(107, 92, 231, 0.35);
  color: var(--color-white);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary-purple);
  border: 2px solid var(--color-primary-purple);
}

.btn--secondary:hover {
  background: var(--color-primary-purple);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary-purple);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-primary-purple);
}

.btn--teal {
  background: var(--color-primary-teal);
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--teal:hover {
  background: var(--color-white);
  color: var(--color-primary-teal);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--fs-xs);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--fs-md);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-base);
  background: transparent;
}

/* Fix for WordPress Admin Bar */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 70px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.site-logo img {
  max-height: 50px;
  width: auto;
  transition: max-height var(--transition-base);
}

.scrolled .site-logo img {
  max-height: 42px;
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo .logo-text .logo-extraordinary {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-navy);
}

.site-logo .logo-text .logo-inspirations {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-primary-teal);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-list a {
  font-size: var(--fs-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cta);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-list a:hover::after,
.nav-list .current-menu-item > a::after,
.nav-list a.active::after {
  width: 100%;
}

.header-cta .btn {
  padding: 12px 28px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--section-padding);
  background: linear-gradient(135deg, #F8F7FF 0%, #F0F4FF 50%, #E8F8F7 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 92, 231, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 750px;
}

/* Colored tagline: SUPPORT • ADVOCACY • CLARITY */
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-lg);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-tagline-word--pink { color: #FF6B9D; }
.hero-tagline-word--purple { color: var(--color-primary-purple); }
.hero-tagline-dot { color: #CBD5E1; font-size: 10px; }

.hero-title {
  font-size: var(--fs-4xl);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.hero-title-line { display: block; }
.hero-title-line--navy { color: var(--color-dark-navy); font-weight: var(--font-weight-semibold); font-size: 0.75em; }
.hero-title-line--teal { color: var(--color-primary-teal); font-weight: var(--font-weight-extrabold); }
.hero-title-line--pink { color: #FF6B9D; font-weight: var(--font-weight-extrabold); }

.hero-description {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  line-height: 1.7;
}

/* Icon highlights with vertical separators */
.hero-highlights {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-highlight-icon { width: 22px; height: 22px; flex-shrink: 0; }
.hero-highlight-icon--purple { color: var(--color-primary-purple); }
.hero-highlight-icon--teal { color: var(--color-primary-teal); }
.hero-highlight-icon--pink { color: #FF6B9D; }

.hero-highlight-label { font-size: 15px; font-weight: var(--font-weight-semibold); }
.hero-highlight-label--purple { color: var(--color-primary-purple); }
.hero-highlight-label--teal { color: var(--color-primary-teal); }
.hero-highlight-label--pink { color: #FF6B9D; }

.hero-highlight-sep { color: #D1D5DB; font-weight: 300; font-size: 18px; user-select: none; }

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero image: circular frame with decorations */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-circle {
  position: relative;
  z-index: 2;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(107, 92, 231, 0.15);
  background: linear-gradient(135deg, #EDE9FE, #CCFBF1);
  transform: translateY(-40px);
  opacity: 0;
  animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-circle svg {
  width: 100%;
  height: 100%;
}

/* Puzzle piece decorations around the circle */
.hero-puzzle-deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hero-puzzle-deco--1 {
  top: -10px;
  left: 20px;
  width: 60px;
  height: 60px;
  color: #FF6B9D;
  opacity: 0.3;
  animation: floatSlow 4s ease-in-out infinite;
}

.hero-puzzle-deco--2 {
  bottom: 40px;
  right: -10px;
  width: 80px;
  height: 80px;
  color: var(--color-primary-purple);
  opacity: 0.3;
  animation: floatSlowReverse 5s ease-in-out infinite;
}

.hero-puzzle-deco--3 {
  top: 50%;
  left: -30px;
  width: 50px;
  height: 50px;
  color: var(--color-primary-teal);
  opacity: 0.3;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

/* Heart decoration */
.hero-heart-deco {
  position: absolute;
  bottom: 10px;
  left: -20px;
  width: 40px;
  height: 40px;
  color: var(--color-primary-purple);
  opacity: 0.5;
  z-index: 3;
}

/* Puzzle piece background decoration */
.puzzle-bg {
  position: absolute;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============================================
   FEATURE BAR (Dark Navy)
   ============================================ */
.feature-bar {
  background: var(--color-dark-navy);
  padding: 120px 0 var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
  margin-top: -90px;
  z-index: 10;
  
  /* CSS Masking for top wave */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C200,10 450,10 700,60 C950,110 1200,110 1440,20 L1440,120 L0,120 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(black, black);
  -webkit-mask-size: 100% 120px, 100% calc(100% - 119px);
  -webkit-mask-position: top center, bottom center;
  -webkit-mask-repeat: no-repeat, no-repeat;
  
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C200,10 450,10 700,60 C950,110 1200,110 1440,20 L1440,120 L0,120 Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(black, black);
  mask-size: 100% 120px, 100% calc(100% - 119px);
  mask-position: top center, bottom center;
  mask-repeat: no-repeat, no-repeat;
}

.feature-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.feature-item {
  text-align: center;
  padding: 0 var(--space-lg);
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: transparent;
  border: 2px solid;
}

.feature-icon--purple { border-color: #A78BFA; color: #A78BFA; }
.feature-icon--teal { border-color: #4ECDC4; color: #4ECDC4; }
.feature-icon--pink { border-color: #FF6B9D; color: #FF6B9D; }
.feature-icon--orange { border-color: #FBBF24; color: #FBBF24; }

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
}

.feature-title {
  font-size: var(--fs-md);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xs);
}

.feature-title--purple { color: #A78BFA; }
.feature-title--teal { color: #4ECDC4; }
.feature-title--pink { color: #FF6B9D; }
.feature-title--orange { color: #FBBF24; }

.feature-desc {
  color: var(--color-white);
  font-size: var(--fs-sm);
  margin-bottom: 0;
  line-height: 1.5;
  opacity: 0.9;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--color-white);
  position: relative;
  z-index: 2;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

/* Optional: Background subtle wave or puzzle mask */
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('assets/images/puzzle-bg.png'); /* Assuming there is a subtle background, we can just use a radial gradient for now */
  background: radial-gradient(circle at 80% 50%, rgba(248, 247, 255, 0.8), transparent 50%);
  z-index: -1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Left Column --- */
.about-content {
  padding-right: 20px;
}

.about-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary-purple);
  margin-bottom: 15px;
  position: relative;
}

.about-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary-purple);
}

.about-title {
  color: var(--color-dark-navy);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-subtitle {
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--fs-md);
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

/* Stats */
.about-stats-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: nowrap; /* keep them in one row */
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: white; /* icons are white on solid bg */
}

.stat-icon--purple { background-color: var(--color-primary-purple); }
.stat-icon--teal { background-color: var(--color-primary-teal); }
.stat-icon--pink { background-color: #FF6B9D; }

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2px;
}

.color-purple { color: var(--color-primary-purple); }
.color-teal { color: var(--color-primary-teal); }
.color-pink { color: #FF6B9D; }

.stat-label {
  font-size: 11px;
  color: var(--color-text-dark);
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-border);
  flex-shrink: 0;
}

/* CTA Button */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px 12px 24px;
  background-color: var(--color-primary-purple);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.about-cta-btn:hover {
  opacity: 0.9;
  color: white;
}

.about-cta-btn .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
  color: var(--color-primary-purple);
}

/* --- Right Column --- */
.about-visual {
  text-align: center;
  position: relative;
  border-left: 1px solid var(--color-border);
  padding-left: 40px;
}

.about-logo-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.ei-heart-logo {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

.about-visual-title {
  color: var(--color-dark-navy);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.about-visual-highlight {
  position: relative;
  display: inline-block;
  color: var(--color-primary-teal);
}

.about-visual-highlight::before,
.about-visual-highlight::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary-teal);
}

.about-visual-highlight::before { left: -40px; }
.about-visual-highlight::after { right: -40px; }

.about-visual-text {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 500;
}

.about-visual-text-bold {
  font-size: 15px;
  color: var(--color-dark-navy);
  font-weight: 700;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--color-lavender-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-card--purple::before { background: var(--gradient-purple); }
.service-card--teal::before { background: var(--gradient-teal); }
.service-card--coral::before { background: linear-gradient(135deg, #FF6B9D, #FF8C42); }
.service-card--orange::before { background: linear-gradient(135deg, #FF8C42, #FFD166); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-card--purple .card-icon { background: rgba(107, 92, 231, 0.1); }
.service-card--teal .card-icon { background: rgba(78, 205, 196, 0.1); }
.service-card--coral .card-icon { background: rgba(255, 107, 157, 0.1); }
.service-card--orange .card-icon { background: rgba(255, 140, 66, 0.1); }

.service-card .card-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.service-card p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.service-card .card-link {
  font-size: var(--fs-sm);
  font-weight: var(--font-weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.service-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* ============================================
   HOW WE HELP SECTION
   ============================================ */
.how-we-help {
  background: var(--color-white);
}

.hwh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hwh-checklist {
  list-style: none;
}

.hwh-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.hwh-checklist li:last-child {
  border-bottom: none;
}

.hwh-checklist .check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(78, 205, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hwh-checklist .check-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary-teal);
}

.hwh-checklist .check-text strong {
  display: block;
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark-navy);
  margin-bottom: 2px;
}

.hwh-checklist .check-text span {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

.hwh-info-card {
  background: var(--gradient-card-purple);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hwh-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(107, 92, 231, 0.06);
  border-radius: 50%;
}

.hwh-info-card blockquote {
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--color-dark-navy);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.hwh-info-card blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-primary-purple);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

.hwh-benefits {
  list-style: none;
  position: relative;
  z-index: 1;
}

.hwh-benefits li {
  padding: var(--space-sm) 0;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

.hwh-benefits li strong {
  color: var(--color-dark-navy);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--color-lavender-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-card .why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.why-card .why-icon svg {
  width: 32px;
  height: 32px;
}

.why-card h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

.why-card p {
  font-size: var(--fs-sm);
  margin-bottom: 0;
  flex-grow: 1;
}

/* ============================================
   PROCESS / TIMELINE SECTION
   ============================================ */
.process-section {
  background: var(--color-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: var(--color-border-light);
  border-radius: var(--radius-full);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: var(--fs-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  background: var(--gradient-purple);
  box-shadow: var(--shadow-glow-purple);
  transition: transform var(--transition-base);
}

.process-step:hover .step-number {
  transform: scale(1.1);
}

.process-step:nth-child(2) .step-number {
  background: var(--gradient-teal);
  box-shadow: var(--shadow-glow-teal);
}

.process-step:nth-child(3) .step-number {
  background: linear-gradient(135deg, var(--color-accent-pink), var(--color-accent-orange));
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.2);
}

.process-step:nth-child(4) .step-number {
  background: linear-gradient(135deg, var(--color-accent-orange), #FFD166);
  box-shadow: 0 8px 32px rgba(255, 140, 66, 0.2);
}

.process-step h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--space-xl);
}

/* Show 3 cards per row on desktop */
@media (min-width: 1025px) {
  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    transform: none !important;
  }
  
  .testimonial-slide {
    min-width: 0;
    padding: 0;
  }
  
  .slider-controls, 
  .slider-dots {
    display: none !important;
  }
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card .quote-icon {
  width: 24px;
  height: 24px;
  margin: 0 0 var(--space-md) 0;
  opacity: 1;
}

.testimonial-card blockquote {
  font-size: var(--fs-sm);
  font-style: normal;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
}

.testimonial-author-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder span {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-author-name {
  font-size: var(--fs-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  white-space: nowrap;
}

.testimonial-card .stars {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.testimonial-card .stars svg {
  width: 14px;
  height: 14px;
  fill: #FFD166;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--color-primary-purple);
  border-color: var(--color-primary-purple);
}

.slider-btn:hover svg {
  stroke: var(--color-white);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text-primary);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-mid-gray);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--color-primary-purple);
  transform: scale(1.2);
}

/* ============================================
   RESOURCES / BLOG
   ============================================ */
.resources-section {
  background: var(--color-white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.resource-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.resource-card-image {
  height: 200px;
  overflow: hidden;
}

.resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.resource-card:hover .resource-card-image img {
  transform: scale(1.05);
}

.resource-card-content {
  padding: var(--space-xl);
}

.resource-card .card-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(107, 92, 231, 0.1);
  color: var(--color-primary-purple);
  font-size: var(--fs-xs);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.resource-card h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.resource-card p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
}

.resource-card .read-more {
  font-size: var(--fs-sm);
  font-weight: var(--font-weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--color-lavender-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  text-align: left;
  font-size: var(--fs-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark-navy);
  background: transparent;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary-purple);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-xl);
}

.faq-answer-inner p {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--gradient-cta);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-md);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gradient-navy);
  padding: var(--space-4xl) 0 var(--space-xl);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-about .footer-logo {
  margin-bottom: var(--space-lg);
}

.footer-about .footer-logo img {
  max-height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about .footer-logo .logo-text .logo-extraordinary {
  color: var(--color-white);
}

.footer-about .footer-logo .logo-text .logo-inspirations {
  color: var(--color-primary-teal-light);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-primary-purple);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer-column h5 {
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--fs-sm);
}

.footer-contact li svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-newsletter {
  margin-top: var(--space-lg);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: inherit;
  font-size: var(--fs-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-primary-teal);
}

.newsletter-form button {
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: var(--color-primary-teal);
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
}

.newsletter-form button:hover {
  background: var(--color-primary-teal-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }

/* ============================================
   RESPONSIVE: TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tagline {
    justify-content: center;
  }

  .hero-title {
    align-items: center;
  }

  .hero-highlights {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .hero-image-circle {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
    transform: none;
  }

  .hero-image-circle img {
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .feature-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
  }
  
  .about-label::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-stats-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .stat-divider {
    display: none;
  }

  .about-visual {
    border-left: none;
    padding-left: 0;
    border-top: 1px dashed var(--color-border);
    padding-top: 40px;
  }

  .hwh-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .process-timeline::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* ============================================
   RESPONSIVE: MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 1000;
    overflow-y: auto;
  }

  .admin-bar .main-nav {
    top: 46px;
    height: calc(100vh - 46px);
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: var(--space-md) 0;
    font-size: var(--fs-md);
    border-bottom: 1px solid var(--color-border-light);
  }

  .header-cta {
    width: 100%;
    margin-top: var(--space-lg);
  }

  .header-cta .btn {
    width: 100%;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .mobile-overlay.active {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-2xl));
  }

  .hero-title {
    font-size: var(--fs-2xl);
  }

  .hero-highlights {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
  }

  .hero-image-circle {
    width: 100%;
    height: 280px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .feature-bar-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-container {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
}

/* Print styles */
@media print {
  .site-header,
  .cta-banner,
  .site-footer {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}
