/* ============================================
   BRIDGES EARLY LEARNING - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  /* Primary Colors */
  --color-primary: #4A7C59;
  --color-primary-dark: #3D6B4A;
  --color-primary-light: #7CB69A;
  --color-primary-lighter: #E8F5E9;

  /* Accent Colors */
  --color-accent: #F4A460;
  --color-accent-dark: #E8944F;
  --color-accent-warm: #E85D2A;
  --color-terracotta: #C67E5F;
  --color-sunshine: #F6E05E;

  /* Neutrals */
  --color-background: #FAFAF8;
  --color-background-alt: #F7F7F5;
  --color-text: #2D3748;
  --color-text-light: #718096;
  --color-border: #E2E8F0;
  --color-white: #FFFFFF;
  --color-footer: #2D3748;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --section-padding-mobile: 48px;
  --container-max: 1200px;
  --container-padding: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 12px rgba(0,0,0,0.1);

  /* Transitions */
  --transition: all 0.2s ease;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
}

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

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

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

ul, ol {
  list-style: none;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
}

h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.4;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 22px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
}

.text-light {
  color: var(--color-text-light);
}

.text-small {
  font-size: 14px;
}

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

/* ============================================
   LAYOUT
   ============================================ */

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

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

.section-alt {
  background-color: var(--color-background-alt);
}

.section-sage {
  background-color: var(--color-primary-lighter);
}

.section-white {
  background-color: var(--color-white);
}

.mission-quote {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 24px 0;
  text-align: center;
  position: relative;
  border: 0;
}

.mission-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-heading);
  font-size: 140px;
  line-height: 0.6;
  color: var(--color-primary);
  opacity: 0.25;
  margin-bottom: 8px;
}

.mission-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 30px;
  line-height: 1.6;
  color: var(--color-primary-dark);
  margin: 0 0 28px;
}

.mission-signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 24px;
  color: var(--color-primary);
  text-align: right;
  padding-right: 8px;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .mission-quote::before {
    font-size: 90px;
  }
  .mission-quote p {
    font-size: 22px;
  }
  .mission-signature {
    font-size: 20px;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: 72px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.nav-logo:hover {
  opacity: 0.9;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.3);
}

.nav-logo-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-white);
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  padding: 10px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-lighter);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px 3px 0 0;
}

.nav-cta {
  margin-left: 20px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.4);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  padding: 24px;
  transition: right 0.3s ease;
  z-index: 1001;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-links {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  padding: 12px 16px;
  border-radius: 8px;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  color: var(--color-primary);
  background: var(--color-primary-lighter);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

.nav-overlay.active {
  display: block;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 14px 30px;
}

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

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

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

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

.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 18px;
}

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

.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 24px;
  color: var(--color-white);
}

.hero h1 {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust Badge Strip */
.trust-strip {
  background: rgba(255,255,255,0.95);
  padding: 16px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
}

.trust-badge svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   PAGE HERO (Interior pages)
   ============================================ */

.page-hero {
  background: var(--color-primary-lighter);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-feature {
  text-align: center;
  padding: 32px;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.card-feature h4 {
  margin-bottom: 12px;
}

.card-feature p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Image Card */
.card-image {
  padding: 0;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-image-content {
  padding: 24px;
}

/* Testimonial Card */
.card-testimonial {
  background: var(--color-background-alt);
  border-left: 4px solid var(--color-primary);
  padding: 32px;
}

.card-testimonial-quote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 20px;
  position: relative;
}

.card-testimonial-quote::before {
  content: '"';
  font-size: 48px;
  color: var(--color-primary-light);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

.card-testimonial-author {
  font-weight: 500;
  color: var(--color-text);
}

.card-testimonial-meta {
  font-size: 14px;
  color: var(--color-text-light);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 18px;
  margin-bottom: 0;
}

/* ============================================
   ABOUT PREVIEW (Homepage)
   ============================================ */

.about-preview-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-preview-content h2 {
  margin-bottom: 20px;
}

.about-preview-content p {
  margin-bottom: 24px;
}

.credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary-lighter);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
}

.credential-tag svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   PROGRAM HIGHLIGHTS
   ============================================ */

.program-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-card:hover img {
  transform: scale(1.05);
}

.program-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--color-white);
}

.program-card-overlay h4 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.program-card-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* ============================================
   GALLERY GRID
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
}

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

.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Multi-column CTA */
.cta-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .cta-split[style*="repeat(3"] {
    max-width: 1100px;
  }
}

.cta-box {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
}

.cta-box h3 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-box p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

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

.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-section {
  margin-bottom: 40px;
}

#application-form.form-container {
  max-width: 100%;
  padding: 48px;
}

/* ============================================
   TIMELINE / SCHEDULE
   ============================================ */

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

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-time {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 15px;
}

.timeline-content h4 {
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 15px;
}

/* ============================================
   PRICING TABLE
   ============================================ */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}

.pricing-table thead th {
  background: var(--color-primary-lighter);
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.pricing-table thead th:first-child {
  text-align: left;
}

.pricing-table .pricing-note {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 2px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pricing-table tbody td {
  text-align: center;
  font-size: 17px;
  color: var(--color-text);
}

.pricing-table tbody td.pricing-age {
  text-align: left;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.pricing-table tbody td strong {
  color: var(--color-accent-warm);
  font-size: 19px;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover td {
  background: var(--color-background-alt);
}

/* ============================================
   CREDENTIAL BADGES
   ============================================ */

.credential-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
  .pricing-table tbody td {
    font-size: 15px;
  }
  .pricing-table tbody td strong {
    font-size: 16px;
  }
}

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

.footer {
  background: var(--color-footer);
  color: var(--color-white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 24px;
}

.footer-brand p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

.footer-links h4 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   UTILITIES
   ============================================ */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }

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

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

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

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

@media (max-width: 767px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  /* Layout */
  .section {
    padding: var(--section-padding-mobile) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Navigation */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .nav-mobile {
    display: block;
  }

  /* Hero */
  .hero {
    height: 80vh;
    min-height: 500px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .trust-strip-inner {
    gap: 24px;
  }

  .trust-badge {
    font-size: 12px;
  }

  /* CTA */
  .cta-split {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Forms */
  .form-container {
    padding: 24px;
  }
}

@media (max-width: 375px) {
  .trust-strip-inner {
    flex-direction: column;
    gap: 12px;
  }
}
