/* =====================================================
   BUNDL — Brand Stylesheet
   For Your Bundl of Joy
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
  /* Brand Colors */
  --cream: #FEFCE8;
  --cream-dark: #F0EBC4;
  --blue: #A8D5E2;
  --blue-light: #D6EFF7;
  --blue-dark: #78B8CC;
  --pink: #F2B5C8;
  --pink-light: #FAD9E8;
  --pink-dark: #D98FA8;
  --brown: #5C3318;
  --brown-mid: #7A4A32;
  --brown-light: #A0705A;
  --white: #FFFFFF;
  --off-white: #FAFAF7;

  /* Text Colors */
  --text-dark: #3D1F0D;
  --text-medium: #6B4332;
  --text-light: #9A7060;
  --text-muted: #B89A8A;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(92, 51, 24, 0.07);
  --shadow-md: 0 4px 24px rgba(92, 51, 24, 0.11);
  --shadow-lg: 0 12px 48px rgba(92, 51, 24, 0.16);
  --shadow-card: 0 4px 20px rgba(92, 51, 24, 0.09);

  /* Border Radius */
  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: 0.3s ease;
  --ease-slow: 0.5s ease;

  /* Border */
  --border: 1px solid rgba(92, 51, 24, 0.10);

  /* Layout */
  --section-py: 88px;
  --container: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brown);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.35rem); }

p {
  color: var(--text-medium);
  line-height: 1.75;
  font-size: 1rem;
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.container--sm {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.section--cream  { background-color: var(--cream); }
.section--blue   { background-color: var(--blue-light); }
.section--pink   { background-color: var(--pink-light); }
.section--white  { background-color: var(--white); }
.section--brown  { background-color: var(--brown); }

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

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-light);
  background: var(--pink-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.eyebrow--blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.eyebrow--cream {
  background: var(--cream-dark);
  color: var(--brown-mid);
}

.section-header h2 { margin-bottom: 14px; }
.section-header p {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--ease);
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn--secondary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--brown);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn--pink {
  background: var(--pink);
  color: var(--brown);
}
.btn--pink:hover {
  background: var(--pink-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg { padding: 17px 40px; font-size: 1rem; }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(254, 252, 232, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(92, 51, 24, 0.07);
  transition: var(--ease);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo svg {
  height: 44px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.header__nav a {
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: var(--ease);
  white-space: nowrap;
}

.header__nav a:hover,
.header__nav a.active {
  background: var(--pink-light);
  color: var(--brown);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--brown);
  transition: var(--ease);
}
.header__icon-btn:hover { background: var(--pink-light); }

/* Cart Icon */
.cart-icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--brown);
  transition: var(--ease);
  text-decoration: none;
  font-size: 1.2rem;
}
.cart-icon:hover {
  background: var(--pink-light);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #F2B5C8;
  color: #5C3318;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cart-count.show {
  opacity: 1;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--ease);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  padding: 20px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-md);
  border-bottom: var(--border);
  transition: var(--ease);
}

.mobile-nav a:hover {
  background: var(--pink-light);
  color: var(--brown);
}

.mobile-nav .mobile-nav__cta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
}

/* Flipped background image */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/bunnybaby.jpeg');
  background-size: cover;
  background-position: center 30%;
  transform: scaleX(-1);
  z-index: 0;
}

/* Reduced overlay — just enough for text readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(254,252,232,0.60) 0%, rgba(254,252,232,0.35) 45%, rgba(254,252,232,0.08) 75%, rgba(254,252,232,0.0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 48px 28px 64px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

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

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  background: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.13;
  color: var(--brown);
}

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

.hero__desc {
  font-size: 1.08rem;
  color: var(--text-medium);
  max-width: 500px;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
}

.hero__trust-item svg {
  color: var(--blue-dark);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__phone {
  position: relative;
  width: 260px;
  margin: 0 auto;
}

.phone-frame {
  background: var(--brown);
  border-radius: 38px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(92,51,24,0.15);
}

.phone-screen {
  background: #F8F4F0;
  border-radius: 28px;
  overflow: hidden;
  padding: 16px 14px;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.72rem;
  color: var(--brown);
  font-weight: 600;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}

.phone-baby-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.phone-baby-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brown);
}

.phone-baby-age {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.phone-status-dot {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #2E7D32;
  font-weight: 600;
}

.phone-dot-live {
  width: 6px;
  height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.phone-vitals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.phone-vital {
  border-radius: var(--radius-sm);
  padding: 10px 10px;
  text-align: center;
}

.phone-vital--pink { background: var(--pink-light); }
.phone-vital--blue { background: var(--blue-light); }
.phone-vital--cream { background: var(--cream); }
.phone-vital--mint { background: #D4EDD4; }

.phone-vital-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.phone-vital-unit {
  font-size: 0.65rem;
  color: var(--text-light);
}

.phone-vital-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.phone-alert-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #D4EDD4;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 10px;
}

.phone-alert-dot {
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  flex-shrink: 0;
}

.phone-alert-text {
  font-size: 0.7rem;
  color: #2E7D32;
  font-weight: 600;
}

.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding-top: 8px;
  border-top: 1px solid rgba(92,51,24,0.08);
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 500;
}

.phone-nav-item.active {
  color: var(--pink-dark);
}

.phone-nav-item svg {
  width: 18px;
  height: 18px;
}

/* Floating badges */
.hero__badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.hero__badge--1 {
  top: 10px;
  right: -20px;
  animation-delay: 0s;
}

.hero__badge--2 {
  bottom: 20px;
  left: -20px;
  animation-delay: 2s;
}

.hero__badge-icon {
  font-size: 1.1rem;
}

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

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--brown);
  padding: 36px 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

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

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-item__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 5px;
}

/* =====================================================
   FEATURE CARDS
   ===================================================== */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--ease);
  border: var(--border);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.feature-card__icon--pink  { background: var(--pink-light); }
.feature-card__icon--blue  { background: var(--blue-light); }
.feature-card__icon--cream { background: var(--cream-dark); }
.feature-card__icon--mint  { background: #D4EDD4; }

.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; text-align: center; }
.feature-card p  { font-size: 0.91rem; color: var(--text-light); line-height: 1.65; text-align: center; }

/* =====================================================
   DIFFERENTIATORS
   ===================================================== */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.differentiator {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: var(--border);
  transition: var(--ease);
}

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

.differentiator__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.differentiator__icon--pink  { background: var(--pink-light); }
.differentiator__icon--blue  { background: var(--blue-light); }
.differentiator__icon--cream { background: var(--cream-dark); }
.differentiator__icon--mint  { background: #D4EDD4; }

.differentiator__content h4 { color: var(--brown); margin-bottom: 6px; font-size: 1rem; }
.differentiator__content p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* =====================================================
   HOW IT WORKS STEPS
   ===================================================== */
.steps-wrapper {
  position: relative;
  padding-top: 16px;
}

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

.steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--pink), var(--blue));
  z-index: 0;
  opacity: 0.4;
}

.step {
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.step__circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.step:nth-child(2) .step__circle { border-color: var(--blue); }
.step:nth-child(3) .step__circle { border-color: var(--pink); }
.step:nth-child(4) .step__circle { border-color: var(--blue); }

.step:hover .step__circle {
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.step__num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.step h4 { font-size: 1.05rem; color: var(--brown); margin-bottom: 8px; }
.step p  { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

.step__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.step__bullets li {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
  padding: 4px 0 4px 16px;
  position: relative;
}
.step__bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--brown-light);
  font-weight: 600;
}

/* =====================================================
   TRIPLE LAYER COMFORT
   ===================================================== */
.layers {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 520px;
}

.layer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  position: relative;
}

.layer--outer  { background: var(--cream); }
.layer--middle { background: var(--blue-light); }
.layer--inner  { background: var(--pink-light); }

.layer__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brown);
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.layer__content h4 { font-size: 1rem; color: var(--brown); margin-bottom: 4px; }
.layer__content p  { font-size: 0.84rem; color: var(--text-light); }

/* =====================================================
   SIDS SECTION PREVIEW
   ===================================================== */
.sids-preview {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cream) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sids-preview .eyebrow { background: var(--white); }

.sids-preview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.sids-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.sids-stat__number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.sids-stat__label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 5px;
  line-height: 1.4;
}

.sids-visual {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.sids-visual h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

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

.safe-sleep-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.safe-sleep-list li span.check {
  width: 22px;
  height: 22px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: var(--border);
  transition: var(--ease);
}

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

.testimonial-card__stars {
  color: #F5A623;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card__quote {
  font-size: 0.93rem;
  color: var(--text-medium);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brown);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-card__avatar--blue { background: var(--blue-light); }

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =====================================================
   HEALTHCARE SECTION
   ===================================================== */
.healthcare-band {
  background: linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)), url('../images/pd.png') center/cover no-repeat;
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
}

.healthcare-band h2 { color: var(--brown); margin-bottom: 14px; }
.healthcare-band p  { color: var(--brown); max-width: 500px; margin: 0 auto 32px; }

.healthcare-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.healthcare-badge {
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.45);
  color: #1e3a8a;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.83rem;
  font-weight: 600;
}

/* =====================================================
   BLOG CARDS
   ===================================================== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card__thumb {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.blog-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.28);
  pointer-events: none;
}
.blog-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.blog-card__thumb--blue  { background: var(--blue-light); }
.blog-card__thumb--pink  { background: var(--pink-light); }
.blog-card__thumb--cream { background: var(--cream); }

.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 10px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.62;
  flex: 1;
  margin-bottom: 18px;
}

.blog-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card__link:hover { color: var(--brown-light); }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter-block {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
}

.newsletter-block h2 { margin-bottom: 12px; }
.newsletter-block p  { max-width: 460px; margin: 0 auto 32px; }

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 22px;
  box-shadow: var(--shadow-md);
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: transparent;
}

.newsletter-form input::placeholder { color: var(--text-muted); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--brown);
  color: var(--white);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer__logo svg { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 14px 0 22px;
  max-width: 260px;
}

.footer__social { display: flex; gap: 10px; }

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer__social-link:hover { background: var(--pink); color: var(--white); }

.footer__col h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__col ul li a {
  color: rgba(255,255,255,0.58);
  font-size: 0.87rem;
  transition: var(--ease);
}

.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: var(--ease); }
.footer__legal a:hover { color: rgba(255,255,255,0.85); }

.footer__disclaimer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.footer__disclaimer p {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: calc(var(--header-h) + 72px) 0 72px;
  text-align: center;
  background:
    linear-gradient(rgba(254,252,232,0.86) 0%, rgba(214,239,247,0.80) 100%),
    url('../images/lifestyle-babies.png') center / cover no-repeat;
}

.page-hero--pink {
  background: linear-gradient(145deg, var(--cream) 0%, var(--pink-light) 100%);
}

.page-hero h1 { margin-bottom: 14px; }
.page-hero p  { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.page-hero .eyebrow { margin-bottom: 16px; }

/* =====================================================
   PRODUCT PAGE
   ===================================================== */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-main-img {
  background: var(--cream);
  border-radius: var(--radius-xl);
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.product-thumb {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
}

.product-thumb:hover,
.product-thumb.active { border-color: var(--brown); }

.product-info h1 { font-size: 2rem; margin-bottom: 6px; }
.product-tagline  { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }

.product-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
}

.product-section-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.variant-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.variant-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(92,51,24,0.15);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--ease);
  background: var(--white);
}

.variant-btn:hover,
.variant-btn.active {
  border-color: var(--brown);
  color: var(--brown);
  background: var(--cream);
}

.color-options { display: flex; gap: 10px; margin-bottom: 24px; }

.color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: var(--ease);
  cursor: pointer;
}

.color-swatch:hover,
.color-swatch.active {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--brown);
}

.product-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.product-trust { display: flex; flex-direction: column; gap: 10px; }

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-medium);
}

.product-trust-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  border-bottom: 2px solid rgba(92,51,24,0.08);
  gap: 0;
  margin-bottom: 36px;
  overflow-x: auto;
}

.product-tab {
  padding: 14px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.product-tab.active {
  color: var(--brown);
  border-bottom-color: var(--brown);
}

.product-tab-pane { display: none; }
.product-tab-pane.active { display: block; }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: var(--border); }
.spec-table td { padding: 14px 0; font-size: 0.92rem; }
.spec-table td:first-child { font-weight: 600; color: var(--brown); width: 45%; }
.spec-table td:last-child { color: var(--text-medium); }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--brown);
  cursor: pointer;
  text-align: left;
  transition: var(--ease);
  background: transparent;
}

.faq-question:hover { background: var(--cream); }

.faq-chevron {
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--ease);
  color: var(--brown-light);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.91rem;
  color: var(--text-medium);
  line-height: 1.72;
}

/* =====================================================
   EDUCATION HUB
   ===================================================== */
.edu-category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.edu-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-medium);
  background: var(--white);
  border: 2px solid rgba(92,51,24,0.1);
  cursor: pointer;
  transition: var(--ease);
}

.edu-tab:hover,
.edu-tab.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* Article card (same as blog-card) */
.article-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* =====================================================
   SIDS PAGE
   ===================================================== */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: var(--border);
}

.info-card h3 { margin-bottom: 16px; font-size: 1.3rem; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.91rem;
  color: var(--text-medium);
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.checklist li span.ck {
  width: 22px;
  height: 22px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.risk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.risk-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow-sm);
}

.risk-card h4 { font-size: 0.95rem; color: var(--brown); margin-bottom: 5px; }
.risk-card p  { font-size: 0.84rem; color: var(--text-light); line-height: 1.58; }

.disclaimer-box {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border-left: 4px solid var(--brown-light);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.disclaimer-box__icon { font-size: 1.5rem; flex-shrink: 0; }
.disclaimer-box p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.68; }

/* Safe Sleep Grid - Collapsible */
.safe-sleep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.safe-sleep-rule {
  background: var(--white);
  border-radius: var(--radius-md);
  border: var(--border);
  overflow: hidden;
  transition: var(--ease);
}

.safe-sleep-rule__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--ease);
  background: transparent;
}

.safe-sleep-rule__header:hover {
  background: var(--cream);
}

.safe-sleep-rule__num {
  width: 32px;
  height: 32px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.safe-sleep-rule__header h4 {
  flex: 1;
  font-size: 0.95rem;
  color: var(--brown);
  margin: 0;
}

.safe-sleep-chevron {
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform var(--ease);
  color: var(--brown-light);
}

.safe-sleep-rule.open .safe-sleep-chevron {
  transform: rotate(180deg);
}

.safe-sleep-rule__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.safe-sleep-rule.open .safe-sleep-rule__content {
  max-height: 400px;
}

.safe-sleep-rule__content-inner {
  padding: 0 20px 16px;
}

.safe-sleep-rule__content-inner p {
  font-size: 0.89rem;
  color: var(--text-medium);
  line-height: 1.68;
  margin: 0;
}

@media (min-width: 768px) {
  .safe-sleep-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .safe-sleep-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Trusted Resources Links */
.resource-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.resource-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  text-decoration: none;
  color: inherit;
}

.resource-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--blue-light);
}

.resource-link-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.resource-link-card__text h5 {
  font-size: 1rem;
  color: var(--brown);
  margin: 0 0 4px 0;
  font-weight: 600;
}

.resource-link-card__text p {
  font-size: 0.87rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .resource-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* =====================================================
   HOW IT WORKS PAGE
   ===================================================== */
.tech-spec-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: var(--border);
}

.tech-spec-card h3 { margin-bottom: 16px; }

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

.tech-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.91rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.tech-list li .tech-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================================================
   HEALTHCARE PAGE
   ===================================================== */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: var(--border);
}

.benefit-card__icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* Forms */
.contact-form { max-width: 600px; margin: 0 auto; }

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(92,51,24,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--ease);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brown-light);
  box-shadow: 0 0 0 3px rgba(92, 51, 24, 0.07);
}

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

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

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

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

.team-card__photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 4px solid var(--pink-light);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  overflow: hidden;
}

.team-card__name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--brown); margin-bottom: 4px; }
.team-card__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.mission-block {
  background: linear-gradient(135deg, var(--cream), var(--pink-light));
  border-radius: var(--radius-xl);
  padding: 72px;
  text-align: center;
}

.mission-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  color: var(--brown);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: var(--border);
}

.value-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* =====================================================
   REVIEWS PAGE
   ===================================================== */
.reviews-summary {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 52px;
}

.reviews-score { text-align: center; }
.reviews-score__num { font-family: var(--font-heading); font-size: 5.5rem; font-weight: 700; color: var(--brown); line-height: 1; }
.reviews-score__stars { color: #F5A623; font-size: 1.4rem; letter-spacing: 3px; margin: 8px 0; }
.reviews-score__count { font-size: 0.82rem; color: var(--text-muted); }

.reviews-bars { display: flex; flex-direction: column; gap: 10px; }

.review-bar { display: flex; align-items: center; gap: 12px; }
.review-bar__label { font-size: 0.85rem; color: var(--text-medium); width: 36px; text-align: right; flex-shrink: 0; }
.review-bar__track { flex: 1; height: 8px; background: var(--cream); border-radius: var(--radius-full); overflow: hidden; }
.review-bar__fill  { height: 100%; border-radius: var(--radius-full); background: #F5A623; }
.review-bar__count { font-size: 0.82rem; color: var(--text-muted); width: 28px; flex-shrink: 0; }

/* =====================================================
   SUPPORT PAGE
   ===================================================== */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.support-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: var(--border);
  transition: var(--ease);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 181, 200, 0.6);
}

.support-card__icon { font-size: 2.5rem; margin-bottom: 14px; }
.support-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.support-card p  { font-size: 0.87rem; color: var(--text-light); }

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table th { padding: 18px 16px; text-align: center; font-weight: 700; font-size: 0.88rem; }
.comparison-table th:first-child { text-align: left; background: var(--off-white); }
.comparison-table th:nth-child(2) { background: var(--brown); color: var(--white); }
.comparison-table th:nth-child(n+3) { background: var(--off-white); color: var(--text-medium); }

.comparison-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: var(--border);
  font-size: 0.9rem;
  color: var(--text-medium);
  background: var(--white);
}

.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--brown); }
.comparison-table td:nth-child(2) { background: rgba(92, 51, 24, 0.03); font-weight: 600; }
.comparison-table tr:last-child td { border-bottom: none; }

.check-yes { color: var(--blue-dark); font-size: 1.2rem; }
.check-no  { color: var(--text-muted); font-size: 1.2rem; }

/* =====================================================
   BADGE / UTILITY
   ===================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.badge--pink  { background: var(--pink-light);  color: var(--pink-dark); }
.badge--blue  { background: var(--blue-light);  color: var(--blue-dark); }
.badge--cream { background: var(--cream-dark);  color: var(--brown-mid); }
.badge--green { background: #D4EDD4; color: #2E7D32; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--text-muted); transition: var(--ease); }
.breadcrumb a:hover { color: var(--brown); }
.breadcrumb span { color: var(--text-dark); font-weight: 500; }

.divider { height: 1px; background: rgba(92,51,24,0.08); margin: 40px 0; }

.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .header__nav a { padding: 8px 10px; font-size: 0.82rem; }
}

@media (max-width: 900px) {
  :root { --section-py: 64px; }

  .header__nav { display: none; }
  .header__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__desc { margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__badge { display: none; }
  .hero__brand-block { text-align: center; }
  .hero__brand-logo { margin: 0 auto 2px; }
  .hero__band-img { max-width: 360px; }

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

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

  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps::before { display: none; }

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

  .sids-preview { grid-template-columns: 1fr; padding: 40px 32px; gap: 40px; }
  .healthcare-band { padding: 44px 32px; }

  .newsletter-block { padding: 44px 32px; }
  .newsletter-form { flex-direction: column; padding: 16px; border-radius: var(--radius-lg); gap: 10px; }
  .newsletter-form input { text-align: center; }

  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .article-cards { grid-template-columns: 1fr 1fr; }

  .reviews-summary { grid-template-columns: 1fr; text-align: center; padding: 32px; gap: 32px; }
  .mission-block { padding: 48px 32px; }
}

@media (max-width: 640px) {
  :root { --section-py: 52px; }

  .container { padding: 0 18px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .article-cards { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .stats-bar__inner { gap: 16px; }
  .stat-item__number { font-size: 1.8rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .sids-preview__stats { grid-template-columns: 1fr 1fr; }

  .header__inner { padding: 0 18px; }
}

/* =====================================================
   INNER-PAGE NEWSLETTER (section-level usage)
   Used in: sids-safety, about, reviews, education,
            healthcare, support pages
   ===================================================== */
section.newsletter-block {
  background: transparent;
  border-radius: 0;
  padding: 72px 0;
}

.newsletter-block__inner {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
}

.newsletter-block__inner h2 { margin-bottom: 12px; }
.newsletter-block__inner > p { max-width: 460px; margin: 0 auto 28px; }

@media (max-width: 900px) {
  section.newsletter-block { padding: 48px 0; }
  .newsletter-block__inner { padding: 44px 28px; border-radius: var(--radius-lg); }
}

/* =====================================================
   INNER-PAGE FOOTER (simplified structure)
   Used in: sids-safety, about, reviews, education,
            healthcare, support pages
   ===================================================== */
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

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

/* Plain <a> links in footer columns (no ul/li wrapper) */
.footer__col > a {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.87rem;
  padding: 4px 0;
  transition: var(--ease);
}

.footer__col > a:hover { color: var(--white); }

/* Bottom bar links (pipe-separated inline) */
.footer__bottom p a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  transition: var(--ease);
}

.footer__bottom p a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

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

/* =====================================================
   PHOTO ASSETS — Product images & lifestyle backgrounds
   ===================================================== */

/* Product main image */
.product-main-photo {
  display: block;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin: 0 auto;
  transition: opacity 0.25s ease;
  filter: drop-shadow(0 8px 24px rgba(92,51,24,0.10));
}

/* Product thumbnails with images */
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

/* Hero product float (index page) */
.hero__product-float {
  position: absolute;
  bottom: -24px;
  right: -32px;
  width: 160px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 14px 12px 10px;
  box-shadow: 0 12px 40px rgba(92,51,24,0.14), 0 0 0 1px rgba(92,51,24,0.06);
  text-align: center;
  z-index: 2;
}
.hero__product-float img {
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px;
}
.hero__product-float-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Section background photo utilities */
.section--photo-babies {
  background:
    linear-gradient(rgba(254,252,232,0.82) 0%, rgba(254,252,232,0.74) 100%),
    url('../images/lifestyle-babies.png') center / cover no-repeat;
}
.section--photo-motherbaby {
  background:
    linear-gradient(rgba(254,252,232,0.80) 0%, rgba(254,252,232,0.72) 100%),
    url('../images/lifestyle-mother-baby.png') center / cover no-repeat;
}

/* Mattress layers image (product materials) */
.materials-img {
  display: block;
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.08));
}

/* Lifestyle strip — full-bleed photo band */
.lifestyle-strip {
  position: relative;
  overflow: hidden;
  height: 340px;
}
.lifestyle-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.lifestyle-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(92,51,24,0.55) 0%,
    rgba(92,51,24,0.25) 50%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  padding: 0 10%;
}
.lifestyle-strip__text {
  max-width: 420px;
  color: var(--white);
}
.lifestyle-strip__text h2 {
  color: var(--white);
  font-size: clamp(1.6rem,3vw,2.4rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.lifestyle-strip__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

@media (max-width: 640px) {
  .hero__product-float { display: none; }
  .lifestyle-strip { height: 220px; }
  .lifestyle-strip__text h2 { font-size: 1.3rem; }
}

/* ─── FEATURE WHEEL (Homepage Hero) ────────────────────────────────────────── */
.feature-wheel {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
  margin: 0 auto;
}

.feature-wheel__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.feature-wheel__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.feature-wheel__center img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(92,51,24,0.16));
}

.feature-node {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: default;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 3;
}

.feature-node:hover {
  transform: scale(1.2) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 10;
}

.feature-node::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(92,51,24,0.92);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-node:hover::after { opacity: 1; }

.feature-node--pink {
  background: linear-gradient(135deg, #FAD9E8 0%, #F2B5C8 100%);
  border: 2px solid rgba(242,181,200,0.7);
}

.feature-node--blue {
  background: linear-gradient(135deg, #D6EFF7 0%, #A8D5E2 100%);
  border: 2px solid rgba(168,213,226,0.7);
}

/* ─── HERO BRAND BLOCK (logo + tagline) ──────────────────────────────────────── */
.hero__brand-block {
  margin-top: 0;
  margin-bottom: 4px;
}

.hero__brand-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin-bottom: 2px;
}

.header__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.hero__band-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(60,35,10,0.28)) drop-shadow(0 2px 8px rgba(60,35,10,0.18));
}

@media (max-width: 900px) {
  .hero__brand-logo { max-width: 300px; }
}

@media (max-width: 640px) {
  .hero__brand-logo { max-width: 240px; }
}

/* ─── TRIPLE LAYER COMFORT SYSTEM ────────────────────────────────────────────── */
.layers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.layers-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.layer-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.layer-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
}

.layer-detail h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}

.layer-detail p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .layers-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .layers-image { order: -1; }
}

/* =====================================================
   STICKY MOBILE CTA
   ===================================================== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 14px 20px 18px;
  background: rgba(254, 252, 232, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(92, 51, 24, 0.1);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 20px rgba(92, 51, 24, 0.1);
}

.sticky-mobile-cta.show { transform: translateY(0); }

@media (max-width: 900px) {
  .sticky-mobile-cta { display: block; }
}

/* =====================================================
   HERO — Pre-launch badge
   ===================================================== */
.hero__prelaunch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(92, 51, 24, 0.1);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-mid);
  box-shadow: var(--shadow-sm);
  margin-bottom: 6px;
  width: fit-content;
}

.hero__prelaunch-dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: var(--ease);
  align-self: center;
}

.hero__learn-more:hover {
  color: var(--brown);
  text-decoration-color: var(--brown);
}

/* =====================================================
   TWO-STEP VERIFICATION SECTION
   ===================================================== */
.section--verification {
  background: linear-gradient(150deg, #2D1507 0%, var(--brown) 50%, #3a1b08 100%);
  position: relative;
  overflow: hidden;
}

.section--verification::before {
  content: '';
  position: absolute;
  top: -35%;
  right: -12%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 181, 200, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.section--verification::after {
  content: '';
  position: absolute;
  bottom: -28%;
  left: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 213, 226, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.section--verification .section-header {
  position: relative;
  z-index: 1;
}

.section--verification .section-header h2 { color: var(--white); }

.section--verification .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.section--verification .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
}

.verification-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 181, 200, 0.16);
  border: 1px solid rgba(242, 181, 200, 0.32);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 auto 24px;
  display: flex;
  width: fit-content;
}

.verification-badge__star { font-style: normal; }

.verification-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
  margin-top: 52px;
}

/* Animated Flow */
.verify-flow {
  display: flex;
  flex-direction: column;
}

.verify-step {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.verify-step:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(6px);
}

.verify-step__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.verify-step__icon--alert   { background: rgba(242, 181, 200, 0.18); }
.verify-step__icon--cross   { background: rgba(168, 213, 226, 0.18); }
.verify-step__icon--confirm { background: rgba(254, 252, 232, 0.12); }
.verify-step__icon--verified { background: rgba(76, 175, 80, 0.18); }

.verify-step__text h4 {
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 3px;
}

.verify-step__text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.5;
  margin: 0;
}

.verify-arrow {
  text-align: center;
  padding: 6px 24px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.1rem;
  line-height: 1;
}

/* Comparison Card */
.verify-comparison-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.verify-comparison-card__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.verify-comparison-card__head-col {
  padding: 16px 22px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.verify-comparison-card__head-col--old {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.verify-comparison-card__head-col--bundl {
  background: rgba(242, 181, 200, 0.1);
  color: var(--pink);
}

.verify-comparison-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.verify-comparison-card__col {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.verify-comparison-card__col--old {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.verify-comparison-card__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.81rem;
  line-height: 1.52;
}

.verify-comparison-card__row--bad  { color: rgba(255, 255, 255, 0.45); }
.verify-comparison-card__row--good { color: rgba(255, 255, 255, 0.88); }

.verify-row-icon {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.9rem;
}

.verify-comparison-card__row--bad .verify-row-icon  { color: rgba(220, 80, 80, 0.75); }
.verify-comparison-card__row--good .verify-row-icon { color: #66BB6A; }

.verify-highlight {
  background: rgba(242, 181, 200, 0.1);
  border: 1px solid rgba(242, 181, 200, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  margin-top: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.verify-highlight p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .verification-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .verify-comparison-card__head-col,
  .verify-comparison-card__col { padding: 14px 14px; }
  .verify-comparison-card__row { font-size: 0.76rem; }
}

/* =====================================================
   PERSONALIZED INSIGHTS SECTION
   ===================================================== */
.insights-intro {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}

.insights-poem {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--brown);
  line-height: 1.85;
  margin-bottom: 24px;
}

.insights-poem span { display: block; }

.insights-punchline {
  font-style: normal;
  font-weight: 700;
  color: var(--brown-mid);
}

.insights-intro p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.78;
}

.insights-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.insight-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.insight-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
}

.insight-feature-card--pink::before  { background: linear-gradient(90deg, var(--pink), var(--pink-light)); }
.insight-feature-card--blue::before  { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.insight-feature-card--cream::before { background: linear-gradient(90deg, var(--cream-dark), var(--cream)); }

.insight-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.insight-feature-card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.insight-feature-card h4 { font-size: 1rem; color: var(--brown); margin-bottom: 8px; }
.insight-feature-card p  { font-size: 0.86rem; color: var(--text-light); line-height: 1.62; }

.insights-body-paragraph {
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.01rem;
  color: var(--text-medium);
  line-height: 1.78;
}

.insights-quote-block {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 55%, var(--cream) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.insights-quote-block::before {
  content: '"';
  position: absolute;
  top: -28px; left: 36px;
  font-family: var(--font-heading);
  font-size: 14rem;
  color: rgba(92, 51, 24, 0.05);
  line-height: 1;
  pointer-events: none;
}

.insights-quote-block__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.insights-quote-block__line {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--brown-mid);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .insights-features-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-quote-block { padding: 36px 28px; }
  .insights-quote-block::before { font-size: 8rem; }
}

@media (max-width: 640px) {
  .insights-features-grid { grid-template-columns: 1fr; }
  .insights-quote-block { padding: 28px 20px; border-radius: var(--radius-lg); }
  .insights-quote-block::before { font-size: 6rem; top: -18px; left: 20px; }
}

/* =====================================================
   WAITLIST / EMAIL SIGNUP
   ===================================================== */
.waitlist-block {
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 45%, var(--blue-light) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -50px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.waitlist-block::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -30px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(168, 213, 226, 0.2);
  pointer-events: none;
}

.waitlist-block__inner { position: relative; z-index: 1; }
.waitlist-block h2 { margin-bottom: 12px; }
.waitlist-block .waitlist-intro-p {
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 1.02rem;
}

/* MailerLite embed placeholder */
.mailerlite-embed {
  max-width: 580px;
  margin: 0 auto;
  /* Replace this div with your MailerLite embed code */
}

/* Fallback form */
.waitlist-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.waitlist-form__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 22px;
  text-align: center;
  font-weight: 600;
}

.waitlist-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.waitlist-form__input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(92, 51, 24, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--ease);
  outline: none;
}

.waitlist-form__input:focus {
  border-color: var(--brown-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(92, 51, 24, 0.06);
}

.waitlist-form__input::placeholder { color: var(--text-muted); }

.waitlist-form__role-label {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--brown);
  margin-bottom: 10px;
  display: block;
}

.waitlist-form__role-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.waitlist-role-btn {
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(92, 51, 24, 0.12);
  background: var(--white);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font-body);
}

.waitlist-role-btn:hover,
.waitlist-role-btn.active {
  border-color: var(--brown);
  color: var(--brown);
  background: var(--cream);
}

.waitlist-form__disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.waitlist-perks {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.waitlist-perk {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-medium);
  padding-left: 14px;
  border-left: 2px solid var(--brown-light, #c8a27a);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .waitlist-block { padding: 48px 28px; }
  .waitlist-form { padding: 28px 22px; }
}

@media (max-width: 640px) {
  .waitlist-block { padding: 36px 18px; border-radius: var(--radius-lg); }
  .waitlist-form { padding: 22px 16px; }
  .waitlist-form__row { grid-template-columns: 1fr; gap: 12px; }
  .waitlist-perks { gap: 14px; flex-direction: column; align-items: center; }
}

/* =====================================================
   ABOUT / TEAM SECTION
   ===================================================== */
.about-mission-block {
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 55%, var(--blue-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 72px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.about-mission-block::before {
  content: '';
  position: absolute;
  top: -50px; right: 20px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.about-mission-block .eyebrow { margin-bottom: 20px; }

.about-mission-block__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-style: italic;
  color: var(--brown);
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 24px;
}

.about-mission-block__body {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* Team Cards */
.team-section-header { margin-bottom: 36px; }
.team-section-header h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 8px; }
.team-section-header p { color: var(--text-light); }

.team-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}

.team-member-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 22px;
  text-align: center;
  border: var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
}

.team-member-card:nth-child(1)::before { background: linear-gradient(90deg, #F6C90E, #FAE06A); }
.team-member-card:nth-child(2)::before { background: linear-gradient(90deg, var(--pink), var(--pink-light)); }
.team-member-card:nth-child(3)::before { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.team-member-card:nth-child(4)::before { background: linear-gradient(90deg, #48BB78, #C6F6D5); }

.team-member-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.team-member-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.team-member-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.team-member-card:nth-child(1) .team-member-card__avatar { background: #FEF9C3; }
.team-member-card:nth-child(2) .team-member-card__avatar { background: var(--pink-light); }
.team-member-card:nth-child(3) .team-member-card__avatar { background: var(--blue-light); }
.team-member-card:nth-child(4) .team-member-card__avatar { background: #C6F6D5; }

.team-member-card:nth-child(2) .team-member-card__avatar img { object-position: center 35%; }

.team-member-card:hover .team-member-card__avatar { transform: scale(1.07); }

.team-member-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 6px;
  font-weight: 600;
}

.team-member-card__role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.team-member-card__bio {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.6;
  font-style: italic;
}
.team-member-card__quote-attr {
  display: block;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-top: 8px;
}

/* Values strip */
.about-values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-value-item {
  text-align: center;
  padding: 28px 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: var(--border);
  transition: var(--ease);
}

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

.about-value-item__icon { font-size: 1.9rem; margin-bottom: 12px; }
.about-value-item h4 { font-size: 0.95rem; color: var(--brown); margin-bottom: 6px; }
.about-value-item p { font-size: 0.81rem; color: var(--text-light); line-height: 1.55; }

@media (max-width: 1100px) {
  .team-cards-row { gap: 16px; }
}

@media (max-width: 900px) {
  .team-cards-row { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .about-values-strip { grid-template-columns: repeat(2, 1fr); }
  .about-mission-block { padding: 44px 32px; }
}

@media (max-width: 640px) {
  .team-cards-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-member-card { padding: 24px 16px; }
  .about-values-strip { grid-template-columns: 1fr 1fr; gap: 14px; }
  .about-mission-block { padding: 32px 20px; border-radius: var(--radius-lg); }
}

/* =====================================================
   GOFUNDME / FUNDRAISING SECTION
   ===================================================== */
.gofundme-block {
  background: linear-gradient(145deg, var(--blue-light) 0%, var(--cream) 55%, var(--pink-light) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}

.gofundme-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.gofundme-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gofundme-layout__left .eyebrow { margin-bottom: 20px; }
.gofundme-layout__left h2 { margin-bottom: 16px; }
.gofundme-layout__left > p { margin-bottom: 24px; }

.gofundme-funding-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.gofundme-funding-item {
  font-size: 0.9rem;
  color: var(--text-medium);
  padding-left: 14px;
  border-left: 2px solid var(--brown-light, #c8a27a);
  line-height: 1.4;
}

.gofundme-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.gofundme-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gofundme-card__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--blue-dark);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.gofundme-card h3 { font-size: 1.2rem; color: var(--brown); margin-bottom: 12px; }
.gofundme-card > p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.72; margin-bottom: 28px; }

.gofundme-card__actions { display: flex; flex-direction: column; gap: 12px; }

.gofundme-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border);
}

.gofundme-impact-item { text-align: center; }
.gofundme-impact-item__label { font-size: 0.73rem; color: var(--text-muted); line-height: 1.4; font-weight: 500; letter-spacing: 0.01em; }

@media (max-width: 900px) {
  .gofundme-block { padding: 44px 28px; }
  .gofundme-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .gofundme-block { padding: 32px 18px; border-radius: var(--radius-lg); }
  .gofundme-card { padding: 28px 20px; }
  .gofundme-impact { grid-template-columns: 1fr; gap: 10px; }
  .gofundme-impact-item { text-align: left; }
}

/* =====================================================
   ADDITIONAL MOBILE POLISH & ACCESSIBILITY
   ===================================================== */

/* Improve tap targets on mobile */
@media (max-width: 900px) {
  .btn { min-height: 48px; }
  .btn--sm { min-height: 40px; }
  .mobile-nav a { min-height: 52px; display: flex; align-items: center; }
  .header__hamburger { width: 44px; height: 44px; }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
    text-align: center;
  }
  .hero__learn-more { justify-content: center; }
  .hero__trust { gap: 12px; }
  h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .stats-bar { padding: 24px 0; }
  .stat-item__number { font-size: 1.65rem; }
  .feature-card { padding: 24px 18px; }
  .sids-preview { border-radius: var(--radius-lg); }
  .healthcare-band { border-radius: var(--radius-lg); padding: 36px 20px; }
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid var(--brown-light);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__eyebrow-dot,
  .hero__prelaunch-dot,
  .gofundme-card__badge-dot,
  .phone-dot-live { animation: none; }
}

/* Lazy-load image fade-in */
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* =====================================================
   PEDIATRICIAN ENDORSEMENT CARD
   ===================================================== */
.ped-endorsement-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  box-shadow: var(--shadow-lg);
  border: var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ped-endorsement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--blue-light));
}

.ped-endorsement-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.ped-badge-icon { font-style: normal; font-size: 1rem; }

.ped-endorsement-card__quote {
  font-family: Georgia, 'Palatino Linotype', Palatino, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--brown);
  line-height: 1.5;
  margin: 0 0 36px;
  position: relative;
}

.ped-endorsement-card__author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.ped-endorsement-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--blue);
}
.ped-endorsement-card__avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.ped-endorsement-card__author-info { text-align: left; }

.ped-endorsement-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}

.ped-endorsement-card__title {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ped-endorsement-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: var(--border);
  padding-top: 28px;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.ped-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.ped-detail-icon {
  width: 22px;
  height: 22px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .ped-endorsement-card {
    padding: 36px 24px;
  }
  .ped-endorsement-card__quote {
    font-size: 1.25rem;
  }
  .ped-endorsement-card__quote::before {
    font-size: 3.5rem;
    top: 14px;
    left: -8px;
  }
  .ped-endorsement-card__author {
    flex-direction: column;
    text-align: center;
  }
  .ped-endorsement-card__author-info { text-align: center; }
}

/* =====================================================
   JOIN WAITLIST + DONATE — Combined End Section
   ===================================================== */
.join-donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.join-panel,
.donate-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: 0 4px 32px rgba(92, 51, 24, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.join-panel__header,
.donate-panel__header {
  text-align: center;
}

.join-panel__header h3,
.donate-panel__header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--brown);
  margin: 10px 0 8px;
}

.join-panel__header p,
.donate-panel__header p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.donate-panel__actions {
  margin-top: auto;
}

.donate-panel__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.donate-panel__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 900px) {
  .join-donate-layout {
    grid-template-columns: 1fr;
  }
  .join-panel,
  .donate-panel {
    padding: 36px 28px;
  }
}

@media (max-width: 640px) {
  .join-panel,
  .donate-panel {
    padding: 28px 20px;
  }
}
