/* ═══════════════════════════════════════════════════════════════════════════
   MONTE-ESCALIER EXPERT — Design System
   Premium, accessible, conversion-focused
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   VARIABLES
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  /* Colors - Trust & Warmth */
  --blue-900: #1e3a5f;
  --blue-800: #234b6e;
  --blue-700: #2a5f8f;
  --blue-600: #3b7cb8;
  --blue-500: #4a90c9;
  --blue-100: #e8f4fc;
  --blue-50: #f0f8ff;
  
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-100: #ffedd5;
  
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  
  --white: #ffffff;
  --black: #000000;
  
  /* Semantic */
  --primary: var(--blue-700);
  --primary-dark: var(--blue-900);
  --primary-light: var(--blue-100);
  --accent: var(--orange-500);
  --accent-dark: var(--orange-600);
  --success: var(--green-600);
  --success-light: var(--green-100);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Borders */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow: 0 0 40px rgb(59 124 184 / 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  --transition-slower: 500ms ease;
  
  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
}

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

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

a:hover {
  color: var(--primary-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

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

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

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

h4 {
  font-size: 1.375rem;
}

.lead {
  font-size: 1.375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.small {
  font-size: 0.875rem;
}

.caption {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-20) 0;
}

.section--lg {
  padding: var(--space-24) 0;
}

.section--gray {
  background: var(--gray-50);
}

.section--blue {
  background: var(--blue-50);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.flex {
  display: flex;
}

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

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER & NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--primary-dark);
}

.logo__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-900) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.nav__links {
  display: flex;
  gap: var(--space-6);
}

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: var(--space-2) 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--accent);
  color: var(--white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgb(249 115 22 / 0.3);
}

.nav__cta:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgb(249 115 22 / 0.4);
}

/* Mobile menu */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: all var(--transition-fast);
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }
  
  .nav__links {
    display: none;
  }
  
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  padding: calc(80px + var(--space-16)) 0 var(--space-20);
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 50%, var(--green-100) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 124, 184, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--success-light);
  color: var(--green-700);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.hero__title {
  margin-bottom: var(--space-6);
}

.hero__title span {
  color: var(--primary);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.hero__trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.hero__visual {
  position: relative;
}

.hero__image {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-slow);
}

.hero__image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.hero__float--1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero__float--2 {
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

.hero__float-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.hero__float-text {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.9375rem;
}

.hero__float-sub {
  color: var(--gray-500);
  font-size: 0.8125rem;
}

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

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__ctas {
    justify-content: center;
  }
  
  .hero__trust {
    justify-content: center;
  }
  
  .hero__visual {
    order: -1;
  }
  
  .hero__image {
    transform: none;
  }
  
  .hero__float {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-900) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgb(42 95 143 / 0.4);
}

.btn--primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(42 95 143 / 0.5);
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgb(249 115 22 / 0.4);
}

.btn--accent:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(249 115 22 / 0.5);
}

.btn--outline {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

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

.btn--sm {
  padding: var(--space-3) var(--space-6);
  font-size: 0.875rem;
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

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

.card__icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-5);
}

.card__title {
  font-size: 1.375rem;
  margin-bottom: var(--space-3);
}

.card__text {
  color: var(--gray-600);
  margin-bottom: var(--space-5);
}

.card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.card__price-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* Feature card */
.card--feature {
  text-align: center;
  padding: var(--space-10);
}

.card--feature .card__icon {
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION HEADERS
   ───────────────────────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-header__label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header__title {
  margin-bottom: var(--space-4);
}

.section-header__subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CALCULATOR / CONFIGURATOR
   ───────────────────────────────────────────────────────────────────────────── */
.calculator {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.calculator__step {
  display: none;
}

.calculator__step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.calculator__progress {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.calculator__progress-bar {
  flex: 1;
  height: 4px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.calculator__progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

.calculator__question {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  color: var(--gray-900);
}

.calculator__options {
  display: grid;
  gap: var(--space-4);
}

.calculator__option {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calculator__option:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.calculator__option.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

.calculator__option-icon {
  font-size: 1.5rem;
}

.calculator__option-content {
  flex: 1;
}

.calculator__option-title {
  font-weight: 600;
  color: var(--gray-900);
}

.calculator__option-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.calculator__result {
  text-align: center;
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--success-light) 100%);
  border-radius: var(--radius-xl);
}

.calculator__result-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: var(--space-2);
}

.calculator__result-label {
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial__quote {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial__quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial__name {
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial__location {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.testimonial__stars {
  color: #facc15;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BRANDS
   ───────────────────────────────────────────────────────────────────────────── */
.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-8) 0;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all var(--transition-slow);
}

.brands:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.brands__item {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-600);
  font-family: var(--font-display);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────────────────────── */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding-bottom: var(--space-6);
  color: var(--gray-600);
}

.faq__item.open .faq__answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT FORM
   ───────────────────────────────────────────────────────────────────────────── */
.form {
  display: grid;
  gap: var(--space-6);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__label {
  font-weight: 500;
  color: var(--gray-700);
}

.form__input,
.form__select,
.form__textarea {
  padding: var(--space-4) var(--space-5);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--white);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(42, 95, 143, 0.1);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__brand-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-900) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer__brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer__desc {
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
  font-size: 0.875rem;
}

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

@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden { display: none; }

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

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────────────
   STICKY CTA
   ───────────────────────────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sticky-cta__btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-fast);
}

.sticky-cta__phone {
  background: var(--success);
  color: var(--white);
}

.sticky-cta__phone:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-2xl);
}

.sticky-cta__quote {
  background: var(--accent);
  color: var(--white);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
  50% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
}

/* Print */
@media print {
  .header, .footer, .sticky-cta {
    display: none;
  }
  
  .hero {
    padding-top: var(--space-8);
  }
}
