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

:root {
  /* Primary — Logo & Brand Identity */
  --cobalt: #0B6DC1;
  --sky-blue: #119FDA;
  --teal: #28BAB5;
  --fresh-green: #6CCC86;
  /* Secondary — Support & Accent */
  --navy: #144693;
  --orange: #E8884A;
  --mist: #F4F7FA;
  --ink: #23262E;
  --blanco: #FFFFFF;
  /* Gradient */
  --gradient-brand: linear-gradient(135deg, var(--cobalt) 0%, var(--sky-blue) 35%, var(--teal) 70%, var(--fresh-green) 100%);
  /* Aliases for readability */
  --azul-sereno: var(--cobalt);
  --verde-salvia: var(--teal);
  --lino: var(--mist);
  --pizarra: var(--ink);
  --verde-claro: #E6F7F6;
  --azul-claro: #E3F1FC;
}

html { scroll-behavior: smooth; }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  font-family: 'Poppins', -apple-system, sans-serif;
  color: var(--pizarra);
  background: var(--lino);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== PAGE TRANSITION ===== */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body > section,
body > footer,
body > .location-modal,
body > #chatbot-bubble,
body > #chatbot {
  animation: pageFadeIn 0.25s ease-out;
}

nav {
  animation: none !important;
}

/* ===== GLOBAL POLISH ===== */
section { position: relative; }

/* Soft wave divider between sections */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 2;
}

/* Subtle decorative dot pattern */
section::before {
  pointer-events: none;
}

/* Global section breathing room */
.section-eyebrow {
  letter-spacing: 0.1em;
}

/* Softer card style globally */
.spec-row-card,
.program-card,
.fee-card,
.review-card,
.location-card,
.faq-acc-item,
.approach-card,
.why-card {
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient accent line */
.gradient-line {
  height: 3px;
  background: var(--gradient-brand);
  border: none;
  border-radius: 3px;
}

/* Smooth image hover */
.service-image img,
.founder-photo img,
.value-photo img,
.book-item-cover img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-image:hover img,
.founder-photo:hover img,
.book-item-cover:hover img {
  transform: scale(1.03);
}

h1, h2 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

h3, h4 {
  font-family: 'Poppins', -apple-system, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(40,186,181,0.2); color: var(--navy); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(38, 54, 59, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: 0.04em;
  border-left: 2px solid var(--cobalt);
  padding-left: 14px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--pizarra);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--azul-sereno); }

.nav-links a.active {
  color: var(--cobalt);
  font-weight: 600;
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav-cta-wrap {
  position: relative;
}

.nav-cta {
  background: var(--gradient-brand);
  color: var(--blanco) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  background-size: 200% auto;
  white-space: nowrap;
}

.nav-cta:hover {
  background-position: right center;
  box-shadow: 0 4px 16px rgba(11,109,193,0.3);
}

/* ===== LOCATION MODAL ===== */
.location-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.location-modal.show {
  display: flex;
}

.location-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,26,46,0.6);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.location-modal-card {
  position: relative;
  background: var(--blanco);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  text-align: center;
  animation: modal-in 0.25s ease-out;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.location-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(35,38,46,0.35);
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

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

.location-modal-card .modal-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}

.location-modal-card h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.location-modal-card .modal-sub {
  font-size: 0.92rem;
  color: rgba(35,38,46,0.55);
  margin-bottom: 32px;
  line-height: 1.5;
}

.modal-select-wrap {
  position: relative;
  margin-bottom: 24px;
}

.modal-select-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
}

.modal-select {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid rgba(35,38,46,0.12);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: var(--mist);
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2323262E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 10 13 14 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.modal-select:focus {
  border-color: var(--cobalt);
}

.modal-result {
  display: none;
  text-align: center;
  padding: 24px 0 0;
  animation: modal-in 0.2s ease-out;
}

.modal-result.show {
  display: block;
}

.modal-result-addr {
  font-size: 0.88rem;
  color: rgba(35,38,46,0.55);
  margin-bottom: 20px;
  line-height: 1.5;
}

.modal-result .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 18px 36px;
}

@media (max-width: 540px) {
  .location-modal-card { padding: 36px 24px; }
}

.nav-lang {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--verde-salvia) !important;
  border: 1.5px solid var(--verde-salvia);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s;
}

.nav-lang:hover {
  background: var(--verde-salvia);
  color: var(--blanco) !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--teal);
  color: var(--blanco);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1fa39e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40,186,181,0.3);
}

.btn-warm {
  background: var(--orange);
  color: var(--blanco);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
}

.btn-warm:hover {
  background: #d47a3e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,136,74,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--blanco);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--blanco);
  background: rgba(255,255,255,0.1);
}

.btn-outline {
  background: transparent;
  color: var(--azul-sereno);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--azul-sereno);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-outline:hover {
  background: var(--azul-sereno);
  color: var(--blanco);
}

/* ===== SECTION HELPERS ===== */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--verde-salvia);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: 72px;
  padding: 100px 0 80px;
  text-align: center;
  background: var(--mist);
  border-bottom: none;
}

/* Dark hero variant for services */
.page-hero-dark {
  margin-top: 72px;
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #02308b 0%, var(--navy) 50%, #14506B 100%);
  color: var(--blanco);
}

.page-hero-dark .section-eyebrow { color: var(--teal); }
.page-hero-dark h1 { color: var(--blanco); }
.page-hero-dark h1 em { color: var(--fresh-green); }
.page-hero-dark p { color: rgba(255,255,255,0.65); }
.page-hero-dark .hero-quote { color: rgba(255,255,255,0.4); }
.page-hero-dark .hero-quote em { color: var(--teal); }

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero h1 em {
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
  color: var(--cobalt);
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(38,54,59,0.65);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cobalt);
  background: var(--azul-claro);
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===== HERO (home) ===== */
.hero {
  margin-top: 72px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--mist);
  padding: 24px;
}

.hero-bg-video {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  object-fit: cover;
  border-radius: 24px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(20, 70, 147, 0.75) 0%,
    rgba(11, 109, 193, 0.6) 40%,
    rgba(40, 186, 181, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  background: none;
  padding: 0;
  border-radius: 0;
  border: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--blanco);
  margin-bottom: 28px;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.2);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--fresh-green);
}

.hero-sub {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 620px;
  margin: 0 auto 16px;
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.2);
}

.hero-sub-2 {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.2);
  font-weight: 300;
  line-height: 1.7;
}

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

.hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-dot {
  color: var(--teal);
  font-size: 1.2rem;
}

.hero-badges {
  display: none;
}

.hero-badge-item {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ===== HERO INSURANCE MARQUEE ===== */
.hero-insurance {
  margin-top: 32px;
  text-align: center;
}

.hero-insurance-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  max-width: 700px;
  margin: 0 auto;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 0 12px;
  letter-spacing: 0.02em;
}

.marquee-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.6rem;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--blanco);
  padding: 20px 0;
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid rgba(35,38,46,0.08);
}

.trust-strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.trust-strip-item {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-strip-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== LOCATIONS HOME ===== */
.locations-home {
  background:
    url('https://images.unsplash.com/photo-1485871981521-5b1fd3805eee?w=1600&q=80')
    center/cover no-repeat;
  padding: 100px 0;
  position: relative;
}

.locations-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244,247,250,0.92);
  backdrop-filter: blur(2px);
}

.locations-home > .container {
  position: relative;
  z-index: 2;
}

.locations-home .locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.locations-home .location-card {
  background: var(--blanco);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(35,38,46,0.04);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.locations-home .location-card:hover {
  box-shadow: 0 8px 24px rgba(35,38,46,0.08);
  border-color: var(--teal);
}

.location-card-bar {
  height: 4px;
  background: var(--gradient-brand);
}

.location-card-inner {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.loc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--azul-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-card-inner h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--navy);
}

.location-card-inner p {
  font-size: 0.92rem;
  color: rgba(35,38,46,0.55);
  line-height: 1.6;
  margin-bottom: 8px;
}

.loc-phone {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cobalt);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--azul-claro);
  padding: 10px 24px;
  border-radius: 50px;
}

.loc-phone:hover {
  color: var(--blanco);
  background: var(--cobalt);
}

/* ===== TRUST BAR (legacy — used on nosotros) ===== */
.trust-bar {
  background: var(--lino);
  padding: 64px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item .trust-number {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cobalt);
  line-height: 1;
  margin-bottom: 10px;
}

.trust-item .trust-label {
  font-size: 0.85rem;
  color: rgba(38,54,59,0.5);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ===== STATS COUNTER (fine/animated) ===== */
.stats-counter-section {
  padding: 48px 0;
  background: var(--blanco);
  border-top: 1px dashed rgba(35,38,46,0.12);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-counter-num {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cobalt);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-counter-label {
  font-size: 0.85rem;
  color: rgba(35,38,46,0.45);
  font-weight: 400;
}

@media (max-width: 640px) {
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ===== STATS MARQUEE ===== */
.stats-marquee-section {
  padding: 20px 0;
  background: var(--navy);
  overflow: hidden;
}

.stats-marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.stats-marquee-track:hover {
  animation-play-state: paused;
}

.stats-marquee-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  padding: 0 16px;
  font-weight: 400;
}

.stats-marquee-item strong {
  color: var(--teal);
  font-weight: 700;
  margin-right: 4px;
}

.stats-marquee-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.5rem;
}

/* ===== WHY CHOOSE YES ===== */
.why-choose {
  padding: 100px 0;
  background: var(--mist);
}

.why-choose h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 600px;
}

.why-choose-sub {
  font-size: 1rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}

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

.why-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blanco);
  border-radius: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(35,38,46,0.04);
  box-shadow: 0 1px 6px rgba(0,0,0,0.02);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: rgba(40,186,181,0.15);
}

.why-card:hover {
  box-shadow: 0 4px 16px rgba(35,38,46,0.06);
  border-color: rgba(35,38,46,0.1);
}

.why-icon {
  color: var(--cobalt);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 7px;
  background: var(--azul-claro);
  border-radius: 50%;
}

.why-card span {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.45;
  font-weight: 400;
}

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

/* ===== FAQ ACCORDION ===== */
.faq-home-section {
  padding: 100px 0;
  background: var(--mist);
}

.faq-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: flex-start;
}

.faq-home-text .section-eyebrow {
  text-align: left;
}

.faq-home-text h2 {
  text-align: left;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.faq-home-text p {
  font-size: 0.95rem;
  color: rgba(35,38,46,0.55);
  line-height: 1.7;
}

.faq-accordion {
  border: 1px solid rgba(35,38,46,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.faq-acc-item {
  border-bottom: 1px solid rgba(35,38,46,0.06);
}

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

.faq-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-acc-btn:hover {
  background: var(--mist);
}

.faq-acc-btn .faq-plus {
  font-size: 1.3rem;
  color: var(--cobalt);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-acc-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-acc-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-acc-item.open .faq-acc-answer {
  max-height: 300px;
}

.faq-acc-answer p {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
}

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

/* ===== CONDITIONS WE TREAT ===== */
.conditions-section {
  background:
    url('Main-office.png')
    center/cover no-repeat;
  padding: 100px 0;
  position: relative;
}

.conditions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(3px);
}

.conditions-section > .container {
  position: relative;
  z-index: 2;
}

.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: flex-start;
}

.conditions-text .section-eyebrow {
  text-align: left;
}

.conditions-text h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: left;
}

.conditions-text p {
  font-size: 1rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
  text-align: left;
}

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

.condition-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: var(--blanco);
  border: 1px solid rgba(35,38,46,0.04);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.condition-tag:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
  background: var(--azul-claro);
}

@media (max-width: 900px) {
  .conditions-grid { grid-template-columns: 1fr; }
  .conditions-text .section-eyebrow,
  .conditions-text h2,
  .conditions-text p { text-align: center; }
  .conditions-tags { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .conditions-tags { grid-template-columns: 1fr; }
}

/* ===== SPECIALTY ROWS (home) ===== */
.specialties {
  background: var(--mist);
  padding: 100px 0;
}

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.spec-row-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(35,38,46,0.05);
  background: var(--blanco);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.spec-row-card:hover {
  border-color: rgba(40,186,181,0.25);
  box-shadow: 0 12px 32px rgba(35,38,46,0.08);
  transform: translateY(-3px);
}

.spec-row-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--azul-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cobalt);
}

.spec-row-text {
  flex: 1;
  min-width: 0;
}

.spec-row-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.spec-row-text p {
  font-size: 0.82rem;
  color: rgba(35,38,46,0.5);
  line-height: 1.5;
}

.spec-row-arrow {
  font-size: 1.1rem;
  color: rgba(35,38,46,0.2);
  flex-shrink: 0;
  transition: all 0.2s;
}

.spec-row-card:hover .spec-row-arrow {
  color: var(--teal);
  transform: translateX(4px);
}

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

/* ===== ABOUT PREVIEW (home) ===== */
.about-preview {
  padding: 120px 0;
  color: var(--blanco);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0B2D4A 0%, #0a1e3d 50%, #14506B 100%);
}

.about-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(40,186,181,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(108,204,134,0.06) 0%, transparent 40%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text .section-eyebrow {
  color: var(--teal);
  text-align: left;
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  line-height: 1.25;
}

.about-text h2 em {
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
  color: var(--teal);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.about-text .btn-primary {
  margin-top: 32px;
}

.about-image,
.placeholder-image {
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  border: 1px dashed rgba(255,255,255,0.15);
}

.about-video {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11,109,193,0.3), rgba(40,186,181,0.2));
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.video-placeholder:hover {
  background: rgba(255,255,255,0.12);
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--blanco);
  box-shadow: 0 8px 24px rgba(232,136,74,0.3);
  transition: transform 0.2s;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.1);
}

.video-placeholder span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.service-image {
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.placeholder-image-light {
  background: var(--azul-claro);
  border-radius: 24px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(38,54,59,0.25);
  font-size: 0.9rem;
  border: 1px dashed rgba(38,54,59,0.1);
}

/* ===== JOURNEY TIMELINE ===== */
.journey-section {
  padding: 100px 0;
  background: var(--blanco);
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  position: absolute;
  left: -40px;
  width: 30px;
  height: 30px;
  background: var(--cobalt);
  color: var(--blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--blanco), 0 0 0 6px var(--cobalt);
}

.timeline-content {
  flex: 1;
}

.timeline-content::before {
  content: attr(data-year);
}

.timeline-item .timeline-year + .timeline-content h3::before {
  display: none;
}

.timeline-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-content h3::before {
  display: none;
}

.timeline-item:nth-child(1) .timeline-content h3::before { content: '1992 — '; color: var(--teal); font-weight: 400; }
.timeline-item:nth-child(2) .timeline-content h3::before { content: '2000s — '; color: var(--teal); font-weight: 400; }
.timeline-item:nth-child(3) .timeline-content h3::before { content: '2010s — '; color: var(--teal); font-weight: 400; }
.timeline-item:nth-child(4) .timeline-content h3::before { content: 'Today — '; color: var(--teal); font-weight: 400; }

.timeline-item:nth-child(1) .timeline-content h3::before,
.timeline-item:nth-child(2) .timeline-content h3::before,
.timeline-item:nth-child(3) .timeline-content h3::before,
.timeline-item:nth-child(4) .timeline-content h3::before {
  display: inline;
}

.timeline-content p {
  font-size: 0.9rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.65;
}

.timeline-content em {
  font-style: italic;
  color: var(--navy);
}

@media (max-width: 540px) {
  .timeline { padding-left: 32px; }
  .timeline-year { left: -32px; width: 24px; height: 24px; }
}

/* ===== GOOGLE RATING BADGE ===== */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blanco);
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  gap: 10px;
  margin-bottom: 48px;
}

.google-rating-stars {
  color: #FBBC05;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.google-rating-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* ===== TESTIMONIALS / REVIEWS ===== */
.testimonials {
  background: linear-gradient(160deg, #0B2D4A 0%, var(--navy) 40%, #14506B 100%);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
  color: var(--blanco);
  position: relative;
}
.testimonials .section-eyebrow { color: var(--teal); }
.testimonials .section-title { color: var(--blanco); }

/* Review Carousel */
.review-carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.review-track {
  position: relative;
  height: 320px;
  perspective: 800px;
}

.review-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 480px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: left;
  backdrop-filter: blur(4px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.review-slide.active {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  background: rgba(255,255,255,0.12);
  border-color: rgba(40,186,181,0.3);
  filter: none;
}

.review-slide.prev {
  z-index: 2;
  opacity: 0.5;
  transform: translateX(-85%) scale(0.88) rotateY(8deg);
  filter: blur(2px);
  pointer-events: none;
}

.review-slide.next {
  z-index: 2;
  opacity: 0.5;
  transform: translateX(-15%) scale(0.88) rotateY(-8deg);
  filter: blur(2px);
  pointer-events: none;
}

.review-slide.hidden {
  z-index: 1;
  opacity: 0;
  transform: translateX(-50%) scale(0.8);
  pointer-events: none;
}

.review-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-text {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.review-arrow {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.review-arrow:hover {
  background: rgba(255,255,255,0.2);
  color: var(--blanco);
  border-color: var(--teal);
}

.review-view-more {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}

.review-card-link:hover .review-link {
  opacity: 1;
}

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

/* ===== FOUNDER + CTA COMBINED ===== */
.founder-cta-section {
  background: linear-gradient(160deg, #0B2D4A 0%, var(--navy) 40%, #0a1e3d 100%);
  padding: 0;
  color: var(--blanco);
  position: relative;
  overflow: hidden;
}

.founder-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  z-index: 3;
}

.founder-cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(40,186,181,0.05);
}

.founder-cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 0;
}

.founder-cta-left {
  display: flex;
  flex-direction: column;
  position: relative;
}

.founder-cta-left .founder-photo {
  border-radius: 0;
  overflow: hidden;
  height: 400px;
  position: relative;
}

.founder-cta-left .founder-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #02308b);
}

.founder-cta-left .founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.founder-mini-bio {
  padding: 32px 48px 48px;
  flex: 1;
}

.founder-mini-bio h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--blanco);
  text-align: left;
  letter-spacing: -0.01em;
}

.founder-mini-bio p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
  font-weight: 300;
}

.founder-credentials {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.38) !important;
  font-style: italic;
}

.founder-cta-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 72px 64px;
  position: relative;
  z-index: 2;
}

.founder-cta-right::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 0;
  bottom: 80px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.founder-cta-quote {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  border: none;
  padding: 0;
  margin: 0 0 8px;
  position: relative;
  padding-left: 20px;
}

.founder-cta-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--teal);
  border-radius: 3px;
  opacity: 0.5;
}

.founder-cta-divider {
  width: 0;
  height: 0;
  margin: 16px 0;
}

.founder-cta-media {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 48px;
  padding-left: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-cta-media em {
  color: rgba(255,255,255,0.5);
  font-family: 'Lora', Georgia, serif;
  text-transform: none;
  letter-spacing: 0;
}

.founder-cta-action {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.1);
}

.founder-cta-action h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blanco);
  margin-bottom: 12px;
  line-height: 1.25;
}

.founder-cta-action h3 em {
  font-style: italic;
  color: var(--teal);
}

.founder-cta-action p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

@media (max-width: 900px) {
  .founder-cta-grid { grid-template-columns: 1fr; }
  .founder-cta-right { padding: 48px 32px; }
  .founder-cta-right::before { display: none; }
  .founder-mini-bio { padding: 32px 24px; }
}

/* ===== FOUNDER SECTION (legacy) ===== */
.founder-section {
  background: linear-gradient(135deg, #02308b 0%, var(--navy) 40%, #02308b 70%, #14506B 100%);
  padding: 120px 0;
  color: var(--blanco);
  position: relative;
  overflow: hidden;
}

.founder-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(40,186,181,0.06);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.founder-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-text .section-eyebrow {
  color: var(--fresh-green);
  text-align: left;
  margin-bottom: 16px;
  letter-spacing: 0.15em;
}

.founder-text h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  text-align: left;
}

.founder-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  font-weight: 300;
}

.founder-text em {
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
  color: rgba(255,255,255,0.9);
}

.founder-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: var(--blanco);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

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

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-text h2 { text-align: center; }
  .founder-text .section-eyebrow { text-align: center; }
  .founder-text p { text-align: center; }
  .founder-buttons { justify-content: center; }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(160deg, #0B2D4A 0%, var(--navy) 30%, #14506B 65%, #0a1e3d 100%);
  padding: 120px 0;
  text-align: center;
  color: var(--blanco);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(40,186,181,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(108,204,134,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(11,109,193,0.15) 0%, transparent 60%);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section-image {
  background:
    url('ninez-yes.png')
    center/cover no-repeat;
}

.cta-section-image::before {
  background: linear-gradient(
    135deg,
    rgba(15,26,46,0.92) 0%,
    rgba(20,70,147,0.88) 50%,
    rgba(20,80,107,0.85) 100%
  );
}

.cta-iris-quote {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.6;
  border: none;
  padding: 0;
}

.cta-iris-author {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  opacity: 0.7;
}

.cta-divider {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 36px auto;
  border-radius: 2px;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-section h2 em {
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
  color: var(--teal);
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
}

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

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #0a1e3d 0%, #061633 100%);
  color: rgba(255,255,255,0.5);
  padding: 72px 0 0;
  border-top: 1px solid rgba(40,186,181,0.15);
}

/* Insurance banner (services page) */
.insurance-banner {
  padding: 60px 0;
  background: var(--mist);
}

.insurance-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--blanco);
  border-radius: 20px;
  padding: 40px 48px;
  border: 1px solid rgba(35,38,46,0.06);
}

.insurance-banner h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.insurance-banner p {
  font-size: 0.9rem;
  color: rgba(35,38,46,0.55);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .insurance-banner-inner { flex-direction: column; text-align: center; }
}

/* New footer layout */
.footer-grid-new {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-iso {
  height: 56px;
  margin-bottom: 20px;
}

.footer-brand-new p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  opacity: 0.7;
}

.footer-loc h4,
.footer-explore h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.footer-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}

.footer-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.3);
}

.footer-detail a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-detail a:hover {
  color: var(--teal);
}

.footer-explore-links {
  display: flex;
  gap: 32px;
}

.footer-explore-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-explore-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-right {
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s, transform 0.2s;
  display: flex;
}
.footer-social a:hover {
  color: var(--teal);
  transform: translateY(-2px);
}

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

.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand .nav-logo img { height: 48px; }
.footer-logo span { color: rgba(255,255,255,0.6) !important; border-left-color: rgba(255,255,255,0.3) !important; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(245,241,233,0.3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(245,241,233,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--verde-salvia); }

@media (max-width: 900px) {
  .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .footer-grid-new { grid-template-columns: 1fr; }
}

/* ===== CHATBOT ===== */
.chatbot-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11,109,193,0.3);
  z-index: 9000;
  transition: transform 0.2s;
}

.chatbot-bubble:hover {
  transform: scale(1.08);
}

.chatbot {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 380px;
  max-height: 520px;
  background: var(--blanco);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border: 1px solid rgba(35,38,46,0.08);
  z-index: 9001;
  flex-direction: column;
  overflow: hidden;
  animation: modal-in 0.25s ease-out;
}

.chatbot.show {
  display: flex;
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--navy);
  color: var(--blanco);
}

.chatbot-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.chatbot-header div {
  flex: 1;
}

.chatbot-header strong {
  display: block;
  font-size: 0.92rem;
}

.chatbot-header span {
  font-size: 0.72rem;
  opacity: 0.6;
}

.chatbot-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 4px;
}

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

.chatbot-body {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
  max-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot-msg {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 85%;
  white-space: pre-line;
}

.chatbot-msg.bot {
  background: var(--mist);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chatbot-msg.user {
  background: var(--cobalt);
  color: var(--blanco);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-faq {
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(35,38,46,0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chatbot-faq button {
  background: var(--mist);
  border: 1px solid rgba(35,38,46,0.08);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}

.chatbot-faq button:hover {
  background: var(--azul-claro);
  border-color: var(--cobalt);
  color: var(--cobalt);
}

@media (max-width: 440px) {
  .chatbot { width: calc(100vw - 24px); right: 12px; bottom: 90px; }
}

/* ===== SERVICE DETAIL (servicios page) ===== */
.service-detail {
  padding: 100px 0;
}

.service-detail:nth-child(even) {
  background: var(--blanco);
}

.service-detail:nth-child(odd) {
  background: var(--mist);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-info h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.service-info h2 em {
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
  color: var(--cobalt);
}

.service-info p {
  font-size: 1rem;
  color: rgba(38,54,59,0.7);
  line-height: 1.8;
  margin-bottom: 12px;
}

.service-info ul {
  list-style: none;
  margin: 20px 0;
}

.service-info ul li {
  font-size: 0.92rem;
  color: rgba(38,54,59,0.7);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.service-info ul li::before {
  content: '~';
  position: absolute;
  left: 0;
  color: var(--verde-salvia);
  font-weight: 700;
}

/* ===== INSURANCE HERO (services page) ===== */
.insurance-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.insurance-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,45,74,0.85) 0%, rgba(40,186,181,0.7) 100%);
}
.insurance-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: var(--blanco);
}
.insurance-hero-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--blanco);
  margin-bottom: 16px;
}
.insurance-hero-content h2 em {
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
}
.insurance-hero-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

/* ===== PARENTING ACCORDIONS ===== */
.parenting-accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.parenting-accordions .program-detail-card {
  padding: 20px 24px;
}

/* ===== TEAM CARDS ===== */
.team-section {
  padding: 100px 0;
  background: var(--mist);
}

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

.team-card {
  background: var(--blanco);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(35,38,46,0.04);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  box-shadow: 0 12px 32px rgba(38,54,59,0.1);
}

.team-photo {
  height: 320px;
  background: var(--azul-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(38,54,59,0.25);
  font-size: 0.8rem;
}

.team-info {
  padding: 28px;
}

.team-info h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-info .team-role {
  font-size: 0.82rem;
  color: var(--verde-salvia);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.88rem;
  color: rgba(38,54,59,0.6);
  line-height: 1.6;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.team-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--verde-claro);
  color: var(--azul-sereno);
}

/* ===== ABOUT PAGE ===== */
.about-full {
  padding: 80px 0;
}

.about-full:nth-child(even) {
  background: var(--blanco);
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-block h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-block h2 em {
  font-style: italic;
  font-family: 'Lora', Georgia, serif;
  color: var(--cobalt);
}

.about-block p {
  font-size: 1rem;
  color: rgba(38,54,59,0.7);
  line-height: 1.8;
  margin-bottom: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--blanco);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(38,54,59,0.06);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(38,54,59,0.08);
  border-color: var(--teal);
}

.value-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--azul-claro);
}

.value-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.88rem;
  color: rgba(38,54,59,0.55);
  line-height: 1.65;
}

/* ===== LOCATIONS (contacto page) ===== */
.locations-section {
  padding: 80px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.location-card {
  background: var(--blanco);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(38,54,59,0.06);
  transition: all 0.3s;
}

.location-card:hover {
  border-color: var(--verde-salvia);
}

.location-card .loc-badge {
  display: inline-block;
  background: var(--azul-sereno);
  color: var(--blanco);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.location-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(38,54,59,0.7);
}

.location-detail .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-card .btn-primary {
  margin-top: 24px;
  font-size: 0.9rem;
  padding: 14px 28px;
}

.general-contact-card {
  background: var(--blanco);
  border-radius: 20px;
  padding: 32px 36px;
  border: 1px solid rgba(35,38,46,0.06);
  max-width: 480px;
  margin: 32px auto 0;
}

.general-contact-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.general-contact-card .footer-detail {
  font-size: 0.9rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 80px 0;
  background: var(--blanco);
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.form-wrapper h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 12px;
}

.form-wrapper > p {
  text-align: center;
  color: rgba(38,54,59,0.6);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--pizarra);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(38,54,59,0.12);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--pizarra);
  background: var(--lino);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde-salvia);
}

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

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

.form-wrapper .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ===== INSURANCE DETAIL (seguros section) ===== */
.insurance-section {
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--teal) 50%, var(--fresh-green) 100%);
  padding: 100px 0;
  color: var(--blanco);
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.insurance-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.insurance-text h2 em { font-style: italic; }

.insurance-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-weight: 300;
}

.insurance-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insurance-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  color: var(--pizarra);
  padding: 16px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}

.insurance-pill:hover {
  background: var(--blanco);
  transform: translateX(4px);
}

.insurance-pill .arrow {
  color: var(--verde-salvia);
  font-size: 1.2rem;
}

/* ===== APPROACHES GRID ===== */
.approaches-section {
  padding: 100px 0;
  background: var(--mist);
}

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

.approach-card {
  background: var(--blanco);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(35,38,46,0.04);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.approach-card:hover {
  border-color: rgba(40,186,181,0.2);
  box-shadow: 0 12px 36px rgba(35,38,46,0.08);
  transform: translateY(-4px);
}

.approach-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 0.88rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.6;
}

/* ===== HERO QUOTE (inline in page-hero) ===== */
.hero-quote {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: rgba(35,38,46,0.45);
  max-width: 560px;
  margin: 28px auto 0;
  line-height: 1.6;
  border: none;
  padding: 0;
}

.hero-quote em {
  color: var(--teal);
  font-style: italic;
}

/* ===== SERVICE CARDS GRID (services page overview) ===== */
.services-overview {
  padding: 100px 0 20px;
  background: var(--mist);
}

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

.svc-card {
  background: var(--blanco);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(35,38,46,0.04);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  cursor: pointer;
  position: relative;
}

.svc-card:hover {
  box-shadow: 0 8px 24px rgba(35,38,46,0.06);
  border-color: rgba(35,38,46,0.12);
}

.svc-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 0.9rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.65;
}

/* Image background variant */
.svc-card-img {
  background-size: cover;
  background-position: center;
  border: none;
  padding: 0;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.svc-card-img .svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,26,46,0.1) 0%,
    rgba(15,26,46,0.7) 60%,
    rgba(15,26,46,0.9) 100%
  );
  border-radius: 16px;
  transition: background 0.3s;
}

.svc-card-img:hover .svc-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(15,26,46,0.15) 0%,
    rgba(15,26,46,0.75) 55%,
    rgba(15,26,46,0.92) 100%
  );
}

.svc-card-img .svc-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px;
  width: 100%;
}

.svc-card-img h3 {
  color: var(--blanco);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.svc-card-img p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.55;
}

.svc-card-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* ===== PROGRAMS GRID ===== */
.programs-grid-section {
  padding: 80px 0;
  background: var(--mist);
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.program-card {
  background: var(--blanco);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(35,38,46,0.06);
  transition: all 0.3s;
}

.program-card:hover {
  box-shadow: 0 8px 24px rgba(35,38,46,0.06);
  border-color: rgba(35,38,46,0.1);
}

.program-card-large {
  grid-column: span 2;
}

.program-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.program-card > p {
  font-size: 0.92rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.program-checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.program-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cobalt);
  line-height: 1.4;
}

.program-check svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 1px;
}

@media (max-width: 900px) {
  .programs-grid { grid-template-columns: 1fr; }
  .program-card-large { grid-column: span 1; }
  .program-checks-grid { grid-template-columns: 1fr; }
}

/* ===== PROGRAM DETAIL (expanded) ===== */
.program-detail-section {
  padding: 80px 0 48px;
  background: var(--blanco);
}

.program-detail-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.program-detail-sub {
  font-size: 1.05rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}

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

.program-detail-card {
  background: var(--mist);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(35,38,46,0.04);
}

.program-detail-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cobalt);
  margin-bottom: 0;
}
.accordion-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.accordion-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 8px;
}
.accordion-toggle.open .accordion-chevron {
  transform: rotate(180deg);
}
.accordion-toggle.open {
  margin-bottom: 20px;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.accordion-body.open {
  max-height: 500px;
  opacity: 1;
}

.program-detail-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-detail-card li {
  font-size: 0.88rem;
  color: rgba(35,38,46,0.65);
  line-height: 1.5;
  padding-left: 0;
}

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

/* ===== INSURANCE & FEES PAGE ===== */
.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: rgba(35,38,46,0.6);
  max-width: 600px;
  margin: -32px auto 56px;
  font-weight: 300;
  line-height: 1.7;
}

/* Pricing highlight */
.pricing-highlight {
  padding: 80px 0;
  background: var(--blanco);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  align-items: flex-start;
}

.pricing-text h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.pricing-text > p {
  font-size: 0.95rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pricing-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink);
}

.pricing-check svg {
  color: var(--teal);
  flex-shrink: 0;
}

.pricing-card {
  background: var(--blanco);
  border-radius: 20px;
  border: 1px solid rgba(35,38,46,0.08);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.pricing-card-inner {
  text-align: center;
  padding: 40px 32px 24px;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.pricing-amount {
  font-family: 'Lora', Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-dollar {
  font-size: 2rem;
  vertical-align: super;
  color: rgba(35,38,46,0.4);
}

.pricing-per {
  font-size: 0.85rem;
  color: rgba(35,38,46,0.45);
}

.pricing-sliding {
  background: var(--mist);
  padding: 20px 32px;
  border-top: 1px solid rgba(35,38,46,0.06);
}

.pricing-sliding strong {
  font-size: 0.92rem;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.pricing-sliding p {
  font-size: 0.82rem;
  color: rgba(35,38,46,0.55);
  line-height: 1.5;
}

.pricing-card > .btn-primary {
  margin: 16px 32px 32px;
  width: calc(100% - 64px) !important;
}

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

.ins-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

.ins-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--mist);
  border: 1px solid rgba(35,38,46,0.08);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.ins-pill:hover {
  background: var(--azul-claro);
  border-color: var(--cobalt);
  color: var(--cobalt);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11,109,193,0.1);
}

.insurance-accept-section {
  padding: 80px 0;
  background: var(--mist);
}

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

.ins-card {
  background: var(--mist);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(35,38,46,0.06);
  transition: all 0.3s;
}

.ins-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(35,38,46,0.06);
  transform: translateY(-2px);
}

.ins-card-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.ins-card-type {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}

/* Fees section */
.fees-section {
  padding: 100px 0;
  background: var(--mist);
}

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

.fee-card {
  background: var(--blanco);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(35,38,46,0.06);
  transition: all 0.3s;
}

.fee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(38,54,59,0.08);
  border-color: var(--teal);
}

.fee-card-bar {
  height: 4px;
  background: var(--gradient-brand);
}

.fee-card-inner {
  padding: 36px 32px;
}

.fee-card-inner h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.fee-price {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cobalt);
  margin-bottom: 16px;
}

.fee-card-inner p {
  font-size: 0.9rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fee-card-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fee-card-inner li {
  font-size: 0.88rem;
  color: rgba(35,38,46,0.7);
  padding-left: 20px;
  position: relative;
}

.fee-card-inner li::before {
  content: '~';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* How it works steps */
.how-insurance-works {
  padding: 100px 0;
  background: var(--blanco);
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--cobalt), var(--teal), var(--fresh-green));
  border-radius: 2px;
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--blanco);
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--blanco);
  position: relative;
  z-index: 2;
}

.step-card:nth-child(2) .step-number {
  background: var(--teal);
}

.step-card:nth-child(3) .step-number {
  background: var(--fresh-green);
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .steps-grid::before { display: none; }
}

/* FAQ */
.faq-section {
  padding: 100px 0;
  background: var(--mist);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--blanco);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(35,38,46,0.06);
}

.faq-item h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.9rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
}

/* ===== FAQ BOT INLINE ===== */
.faq-bot-section {
  padding: 100px 0;
  background: var(--mist);
}

.faq-bot-inline {
  max-width: 600px;
  margin: 0 auto;
  background: var(--blanco);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(35,38,46,0.08);
  border: 1px solid rgba(35,38,46,0.06);
  overflow: hidden;
}

/* ===== BOOKS & MEDIA PAGE ===== */
.media-section {
  padding: 100px 0;
  background: var(--blanco);
}

/* Books showcase */
.books-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.book-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--blanco);
  box-shadow: 0 8px 32px rgba(35,38,46,0.08);
  border: 1px solid rgba(35,38,46,0.06);
  transition: all 0.4s ease;
}

.book-item-cover {
  position: relative;
  text-align: center;
  padding: 32px 24px;
  transition: all 0.4s ease;
}

.book-item-cover img {
  width: 220px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  margin: 0 auto 24px;
  display: block;
  transition: all 0.4s ease;
}

.book-learn-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  background: none;
  border: none;
  cursor: pointer;
  transition: gap 0.2s;
}

.book-learn-btn:hover {
  color: var(--cobalt);
}

.book-item-detail {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  padding: 32px 28px;
  background: var(--blanco);
  transition: left 0.4s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-item.expanded .book-item-cover {
  transform: translateX(-100%);
  opacity: 0;
}

.book-item.expanded .book-item-detail {
  left: 0;
}

.book-edition-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: var(--verde-claro);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.book-item-detail h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.book-item-detail > p {
  font-size: 0.88rem;
  color: rgba(35,38,46,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.book-back-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cobalt);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  padding: 0;
}

.book-back-btn:hover {
  color: var(--teal);
}

@media (max-width: 640px) {
  .books-showcase { grid-template-columns: 1fr; }
}

.book-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.book-topics li {
  font-size: 0.88rem;
  color: rgba(35,38,46,0.7);
  padding-left: 20px;
  position: relative;
}

.book-topics li::before {
  content: '~';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Media appearances */
.media-appearances {
  padding: 100px 0;
  background: var(--mist);
}

.media-subtitle {
  text-align: center;
  font-size: 1rem;
  color: rgba(35,38,46,0.6);
  max-width: 560px;
  margin: -32px auto 56px;
  font-weight: 300;
  line-height: 1.7;
}

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

.media-logo-card {
  background: var(--blanco);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(35,38,46,0.06);
  transition: all 0.3s;
}

.media-logo-card:hover {
  border-color: var(--cobalt);
  box-shadow: 0 8px 24px rgba(35,38,46,0.06);
}

.media-logo-name {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.media-logo-type {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(35,38,46,0.4);
  margin-bottom: 12px;
}

.media-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.media-link-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  opacity: 0;
  transition: opacity 0.2s;
}

.media-logo-card:hover .media-link-label {
  opacity: 1;
}

/* Speaking section */
.speaking-section {
  padding: 100px 0;
  background: var(--blanco);
}

.speaking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.speaking-text p {
  font-size: 1rem;
  color: rgba(35,38,46,0.65);
  line-height: 1.8;
  margin-bottom: 14px;
}

.speaking-topics h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.speaking-topics ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speaking-topics li {
  font-size: 0.92rem;
  color: rgba(35,38,46,0.7);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.speaking-topics li::before {
  content: '~';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ===== ABOUT HERO HIGHLIGHTS ===== */
.about-hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* ===== MEET THE TEAM BANNER ===== */
.meet-team-banner {
  padding: 0;
  background: var(--mist);
}
.meet-team-inner {
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--teal) 100%);
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: -40px auto 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 16px 48px rgba(11,45,74,0.2);
}
.meet-team-text h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blanco);
  margin-bottom: 8px;
}
.meet-team-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 480px;
}
.meet-team-inner .btn-warm {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .meet-team-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
  .meet-team-text p { max-width: 100%; }
}

/* ===== ABOUT BUTTONS & STATS ===== */
.about-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.about-stat {
  text-align: center;
}
.about-stat-num {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-chevron {
  transition: transform 0.2s ease;
}
.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blanco);
  border-radius: 12px;
  padding: 8px;
  padding-top: 16px;
  list-style: none;
  min-width: 150px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition-delay: 0s;
  z-index: 110;
}
/* Invisible bridge so mouse can travel from link to dropdown */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  display: none;
}
.nav-dropdown:hover::after {
  display: block;
}
.nav-dropdown:hover .nav-sub {
  opacity: 1;
  pointer-events: auto;
}
/* Keep dropdown open briefly when mouse leaves */
.nav-sub:hover {
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-sub li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-sub li a:hover {
  background: var(--mist);
  color: var(--cobalt);
}

/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

/* --- Tablet (max 900px) --- */
@media (max-width: 900px) {
  /* Nav hamburger */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blanco);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 100;
    padding: 80px 24px 40px;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta-wrap { margin-top: 16px; }
  .nav-sub {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 4px 0;
    background: none;
    min-width: auto;
  }
  .nav-sub li a { color: var(--pizarra); text-align: center; }
  .nav-sub li a:hover { background: rgba(0,0,0,0.05); }
  .nav-chevron { display: none; }

  /* Hero */
  .hero { min-height: 80vh; padding: 16px; }
  .hero-bg-video { inset: 16px; width: calc(100% - 32px); height: calc(100% - 32px); border-radius: 16px; }
  .hero-bg-overlay { inset: 16px; border-radius: 16px; }
  .hero-content { padding: 60px 16px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-sub-2 { font-size: 0.88rem; }
  .hero-highlights { font-size: 0.8rem; gap: 8px; }

  /* Trust strip */
  .trust-strip-grid { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .trust-strip-item { font-size: 0.72rem; }

  /* Grids to 1-2 columns */
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .insurance-grid,
  .service-row,
  .about-block { grid-template-columns: 1fr; gap: 40px; }
  .service-row.reverse { direction: ltr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .locations-home .locations-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .media-logos-grid { grid-template-columns: 1fr; }
  .speaking-grid { grid-template-columns: 1fr; }
  .insurance-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .fees-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .approaches-grid { grid-template-columns: 1fr; }
  .services-card-grid { grid-template-columns: 1fr; }
  .program-checks-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .review-slide { max-width: 90%; padding: 32px 24px; }
  .review-slide.prev { transform: translateX(-90%) scale(0.85); }
  .review-slide.next { transform: translateX(-10%) scale(0.85); }
  .review-track { height: 300px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Images */
  .about-image,
  .placeholder-image,
  .placeholder-image-light { height: 280px; }
  .service-image { height: 280px; }

  /* Sections spacing */
  .about-preview { padding: 80px 0; }
  .cta-section { padding: 80px 0; }
  .cta-section h2 { font-size: 1.6rem; }
  .insurance-hero { padding: 80px 0; min-height: auto; }
  .insurance-hero-content h2 { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero { padding: 100px 0 60px; }
  .section-title { font-size: 1.6rem; }

  /* Founder CTA */
  .founder-cta-grid { grid-template-columns: 1fr; }
  .founder-cta-right { padding: 48px 32px; }
  .founder-cta-right::before { display: none; }
  .founder-mini-bio { padding: 32px 24px; }
  .founder-cta-action h3 { font-size: 1.2rem; }

  /* Insurance marquee */
  .hero-insurance { margin-top: 20px; }
  .marquee-track { animation-duration: 25s; }
}

/* --- Phone (max 540px) --- */
@media (max-width: 540px) {
  /* Hero */
  .hero { min-height: 75vh; padding: 8px; }
  .hero-bg-video { inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); border-radius: 12px; }
  .hero-bg-overlay { inset: 8px; border-radius: 12px; }
  .hero-content { padding: 48px 12px; }
  .hero h1 { font-size: 1.6rem; margin-bottom: 16px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 12px; }
  .hero-sub-2 { font-size: 0.82rem; margin-bottom: 24px; }
  .hero-highlights { flex-direction: column; gap: 4px; font-size: 0.78rem; }
  .hero-dot { display: none; }
  .hero-eyebrow { font-size: 0.72rem; padding: 6px 16px; }
  .btn-warm { font-size: 0.88rem; padding: 14px 28px; }

  /* Nav */
  .nav-logo img { height: 40px; }
  .nav-logo span { font-size: 0.68rem; padding-left: 10px; }
  .nav-inner { padding: 0 16px; }

  /* Grids to single column */
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .specialty-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .insurance-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid-new { grid-template-columns: 1fr; }

  /* Sections */
  .about-preview { padding: 60px 0; }
  .about-grid { gap: 32px; }
  .about-video { aspect-ratio: 16 / 9; }
  .service-detail { padding: 60px 0; }
  .service-image { height: 220px; }
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: 1.3rem; }
  .cta-section p { font-size: 0.9rem; }
  .insurance-hero { padding: 60px 0; }
  .insurance-hero-content { max-width: 100%; }
  .insurance-hero-content h2 { font-size: 1.3rem; }
  .insurance-hero-content p { font-size: 0.9rem; }
  .page-hero { padding: 90px 0 48px; }
  .page-hero h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.3rem; }
  .conditions-tags { justify-content: center; }

  /* Founder CTA */
  .founder-cta-left .founder-photo { height: 280px; }
  .founder-mini-bio { padding: 24px 20px; }
  .founder-mini-bio h2 { font-size: 1.3rem; }
  .founder-cta-right { padding: 32px 20px; }
  .founder-cta-action { padding: 28px 20px; }
  .founder-cta-action h3 { font-size: 1.1rem; }

  /* Parenting accordions */
  .parenting-accordions .program-detail-card { padding: 16px 20px; }

  /* Container padding */
  .container { padding: 0 16px; }

  /* Trust strip */
  .trust-strip { overflow-x: auto; }
  .trust-strip-grid { gap: 8px; }
  .trust-strip-item { font-size: 0.68rem; gap: 4px; white-space: nowrap; }
  .trust-icon { width: 14px; height: 14px; }

  /* Timeline */
  .timeline-item { flex-direction: column; gap: 8px; }
  .timeline-year { min-width: auto; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-home-grid { grid-template-columns: 1fr; }
  .faq-acc-btn { font-size: 0.9rem; }

  /* About tabs */
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-stat-num { font-size: 1.6rem; }
  .about-buttons { flex-direction: column; align-items: flex-start; }
}
