/* ==========================================================================
   Micro-crèche Le Jardin des Merveilles - Bordères-sur-l'Échez
   Styles globaux
   ========================================================================== */

:root {
  --pink-light: #E8899E;
  --pink-dark: #E8556D;
  --yellow-light: #F5D06C;
  --yellow-dark: #FFD966;
  --green-light: #7FCC7F;
  --green-dark: #5AA85A;
  --blue-light: #6BA8CC;
  --blue-dark: #4A8AB0;
  --purple-light: #C89FE6;
  --purple-dark: #E6C8FF;
  --bg: #f5f5f5;
  --text: #2d2d3a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, .font-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.site-header .logo {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--pink-dark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-header .logo .logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.site-header nav a {
  color: var(--text);
  font-weight: 500;
  transition: color .2s ease;
  position: relative;
}
.site-header nav a:hover { color: var(--pink-dark); }
.site-header nav a.active { color: var(--pink-dark); }

/* push content under fixed header */
main { padding-top: 72px; }

/* ==========================================================================
   HERO - fond animé arc-en-ciel pastel SATURÉ
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #E8899E;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.10) 0%, transparent 50%),
    linear-gradient(135deg, #E8899E 0%, #F5D06C 25%, #7FCC7F 50%, #6BA8CC 75%, #C89FE6 100%);
  background-size: 100% 100%, 100% 100%, 200% 200%;
  animation: gradientShift 15s ease infinite;
  padding: 100px 20px 110px;
  text-align: center;
}

.hero.compact { padding: 70px 20px 70px; }

.hero .hero-logo {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  width: clamp(80px, 11vw, 120px);
  height: auto;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  padding: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  pointer-events: none;
}

@keyframes gradientShift {
  0% { background-position: 0% 0%, 0% 0%, 0% 50%; }
  50% { background-position: 0% 0%, 0% 0%, 100% 50%; }
  100% { background-position: 0% 0%, 0% 0%, 0% 50%; }
}

.hero h1 {
  position: relative;
  z-index: 5;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.25), 0 4px 24px rgba(0,0,0,0.15);
  margin: 0 0 14px;
  line-height: 1.05;
}

.hero .subtitle {
  position: relative;
  z-index: 5;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero .highlight {
  position: relative;
  z-index: 5;
  display: inline-block;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.18);
  padding: 10px 26px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.45);
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  box-shadow: 0 0 24px rgba(255,255,255,0.4);
  animation: glow 2.6s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 18px rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 36px rgba(255,255,255,0.7); }
}

.hero-cta {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}

.hero-social {
  position: relative;
  z-index: 5;
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.hero-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--pink-dark);
  font-size: 1.3rem;
  transition: transform .25s ease, background .25s ease;
}
.hero-social a:hover {
  transform: translateY(-3px) scale(1.08);
  background: #fff;
}

/* ----- décor SVG hero ----- */
.hero-decor {
  position: absolute;
  pointer-events: none;
}

.sun {
  top: 8%;
  right: 6%;
  width: 110px; height: 110px;
  animation: float 6s ease-in-out infinite;
}

.balloon { animation: float 5s ease-in-out infinite; }
.balloon-1 { top: 18%; left: 6%; width: 70px; animation-delay: 0s; }
.balloon-2 { top: 60%; right: 10%; width: 60px; animation-delay: 1.5s; }

.cloud { animation: floatX 14s ease-in-out infinite; opacity: .8; }
/* nuages confinés aux bords pour ne JAMAIS chevaucher le H1/sous-titre */
.cloud-1 { top: 4%;  left: 4%;  width: 100px; animation-delay: 0s; }
.cloud-2 { bottom: 6%; right: 4%; width: 90px; animation-delay: 4s; }

.spiral {
  bottom: 12%;
  right: 18%;
  width: 70px; height: 70px;
  opacity: .65;
  animation: rotate 18s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes floatX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(40px); }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }

.btn-primary {
  background: var(--pink-dark);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232,85,109,0.35);
}
.btn-primary:hover { background: #d44660; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

.btn-outline {
  background: #fff;
  color: var(--pink-dark);
  border: 2px solid var(--pink-dark);
}
.btn-outline:hover { background: var(--pink-dark); color: #fff; }

/* ==========================================================================
   CARDS - 4 BLOCS DE NAVIGATION (compactes)
   ========================================================================== */
.nav-card {
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.nav-card .icon-wrap {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-card .nav-card-body { flex: 1; min-width: 0; }
.nav-card h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.35rem; margin: 0 0 4px; }
.nav-card p { margin: 0 0 8px; color: rgba(0,0,0,0.7); font-size: 0.92rem; }

.nav-card.bg-blue { background: #C9E4F5; }
.nav-card.bg-yellow { background: #FFEBC4; }
.nav-card.bg-green { background: #D4F1D4; }
.nav-card.bg-pink { background: #FFD6E0; }

.nav-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(0,0,0,0.7);
  transition: color .2s ease, transform .2s ease;
}
.nav-card:hover .card-cta { color: var(--pink-dark); transform: translateX(2px); }

/* ==========================================================================
   FAMILY CTA CARDS (pulse, compactes)
   ========================================================================== */
.family-card {
  padding: 24px 20px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 14px 36px rgba(0,0,0,0.16);
  animation: pulse 2.8s ease-in-out infinite;
  transition: transform .3s ease, box-shadow .3s ease;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}
.family-card:hover {
  animation-play-state: paused;
  transform: scale(1.04);
  box-shadow: 0 20px 48px rgba(0,0,0,0.24);
}
.family-card.bg-grad-1 { background: linear-gradient(135deg, #6BA8CC, #5AA85A); }
.family-card.bg-grad-2 { background: linear-gradient(135deg, #E8899E, #C89FE6); }
.family-card h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.5rem; margin: 12px 0 6px; }
.family-card .family-sub {
  font-size: 0.92rem;
  opacity: 0.95;
  margin: 0 0 12px;
  line-height: 1.35;
}
.family-card span.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  font-weight: 600;
  font-size: 0.82rem;
}

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

/* ==========================================================================
   AVIS / TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: linear-gradient(135deg, #2d3a52, #3d5275);
  color: #fff;
  padding: 80px 20px;
}
.testimonials h2 { color: #fff; text-align: center; margin-bottom: 50px; font-size: 2.4rem; font-family: 'Quicksand', sans-serif; }
.testimonial-card {
  background: rgba(255,255,255,0.08);
  padding: 28px 22px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.testimonial-card .stars { color: #FFD966; font-size: 1.2rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card .text {
  flex: 1;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-card .name { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.1rem; }
.testimonial-card .source { font-size: 0.78rem; opacity: 0.7; margin-top: 4px; }

/* ==========================================================================
   GALERIE
   ========================================================================== */
.gallery-img {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD6E0, #C9E4F5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}
.gallery-img:hover { transform: scale(1.03); }
.gallery-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-img .fallback {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 2.4rem;
  z-index: 0;
}
.gallery-img img:not([src=""]) ~ .fallback { display: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(135deg, #5AA85A, #4A8AB0);
  color: #fff;
  padding: 60px 20px 24px;
}
.site-footer a { color: #fff; text-decoration: none; transition: opacity .2s; }
.site-footer a:hover { opacity: .8; }
.site-footer .footer-logo {
  display: block;
  width: 90px;
  height: auto;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.95);
  padding: 8px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.site-footer .footer-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.site-footer .divider {
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 30px 0 18px;
}
.site-footer .footer-btn {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 999px;
  margin: 4px 0;
  transition: background .25s;
}
.site-footer .footer-btn:hover { background: rgba(255,255,255,0.28); }
.site-footer .footer-btn small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.8;
  margin-top: 2px;
  font-weight: 400;
}
.site-footer .credit-link {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.45);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}
.site-footer .credit-link:hover { text-decoration-color: #fff; opacity: 1; }
.site-footer .social-circle {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
}
.site-footer .social-circle:hover { transform: translateY(-3px); background: rgba(255,255,255,0.32); }

/* ==========================================================================
   PEDAGOGIE - cercles valeurs
   ========================================================================== */
.value-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center;
  margin: 0 auto 18px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  transition: transform .3s;
}
.value-circle:hover { transform: scale(1.06); }
.value-circle.c-blue { background: linear-gradient(135deg, #6BA8CC, #4A8AB0); }
.value-circle.c-green { background: linear-gradient(135deg, #7FCC7F, #5AA85A); }
.value-circle.c-yellow { background: linear-gradient(135deg, #FFD966, #F5D06C); color: #5a4500; }

/* ==========================================================================
   GENERIC SECTIONS
   ========================================================================== */
.section { padding: 80px 20px; }
.section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw, 3rem);
  text-align: center;
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* H2 colorés selon section */
.section h2.title-pink   { color: #d4445d; }
.section h2.title-blue   { color: #3d7aa0; }
.section h2.title-green  { color: #468a48; }
.section h2.title-yellow { color: #a87a14; }
.section h2.title-purple { color: #7a4eb0; }

.section .lead {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(0,0,0,0.65);
  max-width: 760px;
  margin: 0 auto 50px;
}

/* ==========================================================================
   FONDS PASTEL TRANSPARENTS (sections alternées)
   ========================================================================== */
.bg-pastel-green  { background: linear-gradient(180deg, rgba(127, 204, 127, 0.18) 0%, rgba(127, 204, 127, 0.08) 100%); }
.bg-pastel-pink   { background: linear-gradient(180deg, rgba(232, 137, 158, 0.18) 0%, rgba(232, 137, 158, 0.08) 100%); }
.bg-pastel-yellow { background: linear-gradient(180deg, rgba(245, 208, 108, 0.22) 0%, rgba(245, 208, 108, 0.08) 100%); }
.bg-pastel-blue   { background: linear-gradient(180deg, rgba(107, 168, 204, 0.18) 0%, rgba(107, 168, 204, 0.08) 100%); }
.bg-pastel-purple { background: linear-gradient(180deg, rgba(200, 159, 230, 0.18) 0%, rgba(200, 159, 230, 0.08) 100%); }
.bg-clear         { background: #fff; }

/* ==========================================================================
   BOUTON PRÉINSCRIPTION DYNAMIQUE
   ========================================================================== */
.btn-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #E8556D 0%, #C89FE6 100%);
  box-shadow: 0 8px 24px rgba(232, 85, 109, 0.45);
  animation: btnPulse 2.2s ease-in-out infinite;
  border: none;
  cursor: pointer;
  transition: transform .25s ease;
}
.btn-pulse:hover {
  transform: scale(1.06);
  animation-play-state: paused;
}
.btn-pulse i { font-size: 1.05rem; }
@media (min-width: 769px) { .btn-pulse { white-space: nowrap; } }
@media (max-width: 768px) {
  .btn-pulse { text-align: center; line-height: 1.25; }
}

@keyframes btnPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(232, 85, 109, 0.35), 0 0 0 0 rgba(232, 85, 109, 0.4);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 12px 32px rgba(232, 85, 109, 0.55), 0 0 0 14px rgba(232, 85, 109, 0);
  }
}

/* version "large" pour la bande pré-footer */
.btn-pulse.btn-pulse-lg {
  font-size: 1.15rem;
  padding: 20px 40px;
}

/* ==========================================================================
   BANDE PRÉ-FOOTER CTA
   ========================================================================== */
.pre-footer-cta {
  background: linear-gradient(135deg, #FFD6E0 0%, #FFEBC4 50%, #E6D6F5 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pre-footer-cta::before,
.pre-footer-cta::after {
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  filter: blur(30px);
}
.pre-footer-cta::before { top: -40px; left: -40px; }
.pre-footer-cta::after  { bottom: -50px; right: -30px; }

.pre-footer-cta h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  color: #2d2d3a;
  margin: 0 0 24px;
  position: relative;
  z-index: 2;
}
.pre-footer-cta .pre-cta-btn-wrap { position: relative; z-index: 2; }
.pre-footer-cta .secondary {
  display: block;
  margin-top: 18px;
  color: rgba(0,0,0,0.7);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}
.pre-footer-cta .secondary a {
  color: #d4445d;
  font-weight: 700;
  text-decoration: none;
}
.pre-footer-cta .secondary a:hover { text-decoration: underline; }

/* ==========================================================================
   HERO CTA preinscription (positionnement)
   ========================================================================== */
.hero .hero-preinscription {
  position: relative;
  z-index: 5;
  margin-top: 8px;
}

.info-box {
  background: #D4F1D4;
  border-left: 5px solid var(--green-dark);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 30px 0;
}
.info-box ul { list-style: none; padding: 0; margin: 0; }
.info-box li { padding: 8px 0; font-weight: 500; }

.feature-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transition: transform .25s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card .ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.3rem; margin: 0 0 8px; }
.feature-card p { margin: 0; color: rgba(0,0,0,0.7); }

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; font-weight: 600; }
.mobile-menu a:hover { color: var(--pink-dark); }
.mobile-menu .close {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

/* ==========================================================================
   UTIL
   ========================================================================== */
.container { max-width: 1180px; margin: 0 auto; }

/* ==========================================================================
   FAMILY SECTION BG (pastel transparent)
   ========================================================================== */
.family-section {
  background:
    linear-gradient(135deg,
      rgba(127, 204, 127, 0.12) 0%,
      rgba(245, 208, 108, 0.10) 50%,
      rgba(232, 137, 158, 0.12) 100%);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  main { padding-top: 64px; }
  .sun { width: 70px; height: 70px; top: 6%; right: 4%; }
  .balloon-1 { width: 46px; left: 4%; top: 12%; }
  .balloon-2 { width: 42px; right: 5%; top: 55%; }
  .cloud { display: none; }
  .spiral { width: 48px; height: 48px; right: 8%; bottom: 8%; }

  .hero { padding: 80px 16px 70px; }
  .hero.compact { padding: 60px 16px 50px; }
  .hero h1 { font-size: 2.4rem; }
  .hero .subtitle { font-size: 1rem; }
  .hero .highlight { font-size: 1.05rem; padding: 8px 18px; }

  .section { padding: 60px 16px; }
  .section h2 { font-size: 1.7rem; }
  .section .lead { font-size: 1rem; margin-bottom: 36px; }

  .btn { padding: 12px 22px; font-size: 0.95rem; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { min-height: 44px; }
  .btn-pulse { padding: 14px 26px; font-size: 0.95rem; min-height: 44px; }
  .btn-pulse.btn-pulse-lg { padding: 16px 28px; font-size: 1rem; }
  .pre-footer-cta { padding: 48px 16px; }
  .pre-footer-cta h2 { font-size: 1.45rem; }

  .nav-card { padding: 16px 18px; gap: 14px; }
  .nav-card h3 { font-size: 1.15rem; }
  .nav-card .icon-wrap { width: 50px; height: 50px; }
  .nav-card .icon-wrap svg { width: 36px; height: 36px; }

  .family-card { padding: 22px 18px; }
  .family-card h3 { font-size: 1.25rem; }
  .family-card .family-sub { font-size: 0.85rem; }

  .value-circle { width: 170px; height: 170px; font-size: 1.25rem; }

  .testimonial-card { min-height: 240px; padding: 22px 18px; }

  .site-header .logo { font-size: 1.05rem; gap: 8px; }
  .site-header .logo .logo-img { height: 38px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.05rem; }
}
