/* ============================================================
   FUNDACIÓN MATERNIDADES 365 — styles.css
   Paleta: Rosa palo · Malva · Sage · Crema cálida · Carbón
   Tipografía: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  /* Primarios */
  --rose:        #C96E8A;
  --rose-light:  #E8A4B8;
  --rose-dark:   #A34F6A;
  --mauve:       #9B7EA8;
  --mauve-light: #C4AACF;
  --sage:        #7A9E8E;
  --sage-light:  #A8C5B8;
  --cream:       #FAF6F1;
  --cream-deep:  #F2EBE0;

  /* Neutros */
  --charcoal:    #2A2630;
  --slate:       #4A4555;
  --mist:        #8C8898;
  --fog:         #D4CED8;
  --white:       #FFFFFF;

  /* Acento */
  --whatsapp:    #25D366;

  /* Tipografía */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Sombras */
  --shadow-sm:   0 2px 12px rgba(42, 38, 48, 0.06);
  --shadow-md:   0 8px 32px rgba(42, 38, 48, 0.10);
  --shadow-lg:   0 20px 60px rgba(42, 38, 48, 0.14);
  --shadow-rose: 0 12px 40px rgba(201, 110, 138, 0.25);

  /* Transiciones */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t3: 0.3s var(--ease);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── VIDEO FONDO ────────────────────────────────────────────── */
.video-bg {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2; overflow: hidden;
}
.video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
}
.video-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: linear-gradient(
    150deg,
    rgba(42, 38, 48, 0.60) 0%,
    rgba(155, 126, 168, 0.45) 50%,
    rgba(201, 110, 138, 0.50) 100%
  );
  backdrop-filter: blur(1.5px);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar-wrap {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 110, 138, 0.12);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t3), padding var(--t3);
}
.navbar-wrap.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.99);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 50px; width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose);
  transition: transform var(--t3);
}
.logo-link:hover .logo-img { transform: scale(1.04); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.logo-main strong { color: var(--rose); }
.logo-sub {
  font-size: 0.7rem;
  color: var(--mist);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t3);
  letter-spacing: 0.02em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  border-radius: 2px;
  transition: width var(--t3);
}
.nav-link:hover, .nav-link.active { color: var(--rose); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* CTA nav button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: var(--white);
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(201, 110, 138, 0.30);
  transition: all var(--t3);
  letter-spacing: 0.02em;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 110, 138, 0.42);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--t3);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 60px;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 110, 138, 0.15);
  border: 1px solid rgba(201, 110, 138, 0.35);
  color: var(--rose-light);
  padding: 6px 18px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
  margin-bottom: 22px;
  max-width: 820px;
}
.hero-title em {
  color: var(--rose-light);
  font-style: italic;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-radius: 60px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-rose);
  transition: all var(--t3);
  letter-spacing: 0.03em;
}
.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(201, 110, 138, 0.45);
  color: var(--white);
}
.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.40);
  border-radius: 60px;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all var(--t3);
  letter-spacing: 0.03em;
}
.btn-secondary-hero:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-3px);
  color: var(--white);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 22px;
  padding: 28px 36px;
  text-align: center;
  min-width: 180px;
  transition: all var(--t3);
  flex: 1;
}
.stat-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-8px);
  border-color: rgba(201, 110, 138, 0.45);
  box-shadow: var(--shadow-rose);
}
.stat-icon {
  font-size: 2rem;
  color: var(--rose-light);
  margin-bottom: 10px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.80);
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.4;
}

/* ── SECCIONES GENERALES ────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.mt-xl { margin-top: 52px; }

.section-light {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 88px 0;
}
.section-cream {
  background: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(12px);
  padding: 88px 0;
}
.section-dark {
  background: rgba(42, 38, 48, 0.92);
  backdrop-filter: blur(16px);
  padding: 88px 0;
}
.section-contact {
  background: linear-gradient(135deg, rgba(42,38,48,0.94) 0%, rgba(155,126,168,0.85) 100%);
  backdrop-filter: blur(12px);
  padding: 88px 0;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-title.white { color: var(--white); }
.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 0;
  width: 56px; height: 2px;
  background: var(--rose);
  border-radius: 2px;
}
.section-title-sub {
  display: block;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--mauve);
  margin-top: 8px;
  font-style: italic;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--slate);
  max-width: 780px;
  margin-top: 30px;
  line-height: 1.72;
}
.section-subtitle.white { color: rgba(255,255,255,0.88); }
.text-rose { color: var(--rose); }

/* ── GRIDS ──────────────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── CARDS PROPÓSITO ────────────────────────────────────────── */
.card-purpose {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid var(--fog);
  box-shadow: var(--shadow-sm);
  transition: all var(--t3);
  position: relative;
  overflow: hidden;
}
.card-purpose::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--mauve));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t3);
}
.card-purpose:hover::before { transform: scaleX(1); }
.card-purpose:hover {
  transform: translateY(-8px);
  border-color: rgba(201,110,138,0.25);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 22px;
  transition: transform var(--t3);
}
.card-purpose:hover .card-icon { transform: scale(1.08) rotate(-3deg); }
.card-icon.rose { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); box-shadow: 0 8px 24px rgba(201,110,138,0.30); }
.card-icon.mauve { background: linear-gradient(135deg, var(--mauve), #7A5A8A); box-shadow: 0 8px 24px rgba(155,126,168,0.30); }
.card-icon.sage { background: linear-gradient(135deg, var(--sage), #5A8070); box-shadow: 0 8px 24px rgba(122,158,142,0.30); }
.card-purpose h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card-purpose p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; }

/* Value badges */
.val-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.val-badge.rose { background: rgba(201,110,138,0.12); color: var(--rose-dark); }
.val-badge.mauve { background: rgba(155,126,168,0.12); color: #6A4A7A; }
.val-badge.sage { background: rgba(122,158,142,0.12); color: #4A7A68; }

/* ── QUOTE BLOCK ────────────────────────────────────────────── */
.quote-block {
  margin-top: 56px;
  background: rgba(201, 110, 138, 0.08);
  border-left: 3px solid var(--rose);
  border-radius: 20px;
  padding: 44px 52px;
  text-align: center;
  position: relative;
}
.quote-icon {
  font-size: 2.5rem;
  color: var(--rose-light);
  display: block;
  margin-bottom: 16px;
  opacity: 0.6;
}
.quote-block p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.55;
}

/* ── TWO COL ────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.body-text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.78;
  margin-bottom: 20px;
}
.commitment-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--fog);
  border-radius: 18px;
  padding: 24px;
  margin-top: 28px;
  transition: all var(--t3);
}
.commitment-box:hover {
  border-color: rgba(201,110,138,0.30);
  box-shadow: var(--shadow-sm);
}
.commitment-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
}
.commitment-box h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.commitment-box p { font-size: 0.88rem; color: var(--slate); line-height: 1.65; }

/* Values panel */
.values-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--fog);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.value-row {
  padding: 20px;
  background: var(--cream);
  border-radius: 16px;
  border-left: 3px solid var(--rose);
  transition: all var(--t3);
}
.value-row:nth-child(2) { border-left-color: var(--mauve); }
.value-row:nth-child(3) { border-left-color: var(--sage); }
.value-row:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.value-row p { font-size: 0.85rem; color: var(--slate); line-height: 1.65; margin-top: 8px; }

/* ── PILARES CARDS ──────────────────────────────────────────── */
.pilar-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 32px 24px;
  transition: all var(--t3);
  position: relative;
  overflow: hidden;
}
.pilar-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,110,138,0.40);
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(201,110,138,0.25);
}
.pilar-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  pointer-events: none;
}
.pilar-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(201,110,138,0.30);
  transition: transform var(--t3);
}
.pilar-card:hover .pilar-icon { transform: rotate(-5deg) scale(1.08); }
.pilar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pilar-card p { font-size: 0.87rem; color: rgba(255,255,255,0.80); line-height: 1.68; margin-bottom: 16px; }
.pilar-tag {
  font-size: 0.72rem;
  color: var(--rose-light);
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 12px;
  line-height: 1.5;
}

/* Methodology banner */
.methodology-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(201,110,138,0.15);
  border: 1px solid rgba(201,110,138,0.25);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 48px;
  backdrop-filter: blur(8px);
}
.banner-icon {
  font-size: 2.8rem;
  color: var(--rose-light);
  flex-shrink: 0;
}
.methodology-banner h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.methodology-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* ── SUSTAIN CARDS ──────────────────────────────────────────── */
.sustain-card {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 28px;
  border: 1px solid var(--fog);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--t3);
}
.sustain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,110,138,0.25);
  box-shadow: var(--shadow-md);
}
.sustain-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(201,110,138,0.28);
  transition: transform var(--t3);
}
.sustain-card:hover .sustain-icon { transform: scale(1.1); }
.sustain-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.sustain-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.68; }

/* ── CONTACT SECTION ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 48px;
}
.contact-info-box, .contact-form-box {
  background: rgba(255,255,255,0.96);
  border-radius: 28px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}
.contact-info-box h3, .contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--rose);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--cream);
  border-radius: 14px;
  margin-bottom: 14px;
  transition: all var(--t3);
}
.contact-item:hover {
  background: var(--white);
  border: 1px solid rgba(201,110,138,0.22);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.contact-icon-wrap {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-item h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-item a {
  color: var(--rose);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--t3);
}
.contact-item a:hover { color: var(--rose-dark); }
.contact-item p { font-size: 0.9rem; color: var(--slate); }

/* Formulario */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
input, select, textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--fog);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: all var(--t3);
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,110,138,0.12);
}
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--mist); }

.btn-form-submit {
  width: 100%;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: var(--white);
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-rose);
  transition: all var(--t3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,110,138,0.45);
}
.success-msg {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(122,158,142,0.15);
  border: 1px solid rgba(122,158,142,0.35);
  color: #4A7A68;
  border-radius: 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,110,138,0.25);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  height: 56px; width: 56px;
  border-radius: 50%;
  border: 2px solid var(--rose);
  object-fit: cover;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-tagline {
  font-size: 0.75rem;
  color: var(--mist);
  font-style: italic;
}
.footer-nav h5, .footer-contact-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.85rem;
  color: var(--mist);
  transition: all var(--t3);
}
.footer-nav a:hover { color: var(--rose); padding-left: 6px; }
.footer-contact-col p {
  font-size: 0.85rem;
  color: var(--mist);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-col p i { color: var(--rose); width: 16px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--t3);
}
.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(201,110,138,0.40);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 22px 40px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #5A5468;
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp), #128C7E);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.38);
  z-index: 500;
  transition: all var(--t3);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
  animation: none;
  color: var(--white);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.38); }
  50% { box-shadow: 0 8px 28px rgba(37,211,102,0.38), 0 0 0 14px rgba(37,211,102,0.14); }
}

/* ── INNER PAGES ────────────────────────────────────────────── */
.inner-main {
  padding: 60px 0 80px;
}
.inner-section {
  margin-bottom: 72px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.28);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.page-title::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 0;
  width: 60px; height: 2px;
  background: var(--rose);
  border-radius: 2px;
}
.page-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.78;
  max-width: 840px;
  margin-top: 28px;
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}
/* Overrides for inner page cards on transparent background */
.inner-section .card-purpose {
  background: rgba(255,255,255,0.95);
}
.inner-section .quote-block {
  background: rgba(255,255,255,0.10);
  border-color: var(--rose-light);
}
.inner-section .quote-block p { color: var(--white); }
.inner-section .quote-icon { color: rgba(255,255,255,0.50); }
.inner-section .sustain-card { background: rgba(255,255,255,0.95); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .navbar-inner { padding: 12px 24px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px 32px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--fog);
  }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero-section { padding: 60px 24px 48px; min-height: auto; }
  .container { padding: 0 24px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat-card { min-width: unset; }
  .footer-inner { flex-direction: column; gap: 32px; padding: 40px 24px; }
  .footer-bottom { padding: 18px 24px; }
  .two-col { gap: 32px; }
  .quote-block { padding: 32px 28px; }
  .methodology-banner { flex-direction: column; gap: 16px; text-align: center; }
  .section-light, .section-cream, .section-dark, .section-contact { padding: 60px 0; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.1rem; }
  .hero-buttons { flex-direction: column; }
  .btn-primary-hero, .btn-secondary-hero { justify-content: center; }
  .logo-text { display: none; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .contact-info-box, .contact-form-box { padding: 28px 22px; }
  .page-title { font-size: 1.8rem; }
}
