:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fff6fb;
  --text-primary: #1e1e1e;
  --text-secondary: #5c5c5c;
  --text-tertiary: #8e8e8e;
  --brand-primary: #6bacba;
  --brand-secondary: #f199c0;
  --brand-alternate: #cea277;
  --accent-soft: var(--brand-primary);
  --accent-warm: var(--brand-primary);
  --accent-cool: var(--brand-secondary);
  --accent-green: var(--brand-secondary);
  --white: #ffffff;
  --border-light: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.1);
  --shadow-elegant:
    0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-lifted:
    0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-floating:
    0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --transition-smooth: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==================== STICKY NAVIGATION (GLASSMORPHISM) ==================== */
.nav-glass {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(241, 153, 192, 0.26);
  border-radius: 50px;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

.nav-glass.scrolled {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

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

.nav-logo img {
  display: block;
  height: 64px;
  width: auto;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition-smooth);
  position: relative;
  letter-spacing: 0.2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand-primary);
  transition: var(--transition-smooth);
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--brand-secondary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--brand-primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: var(--transition-bounce) !important;
}

.nav-cta:hover {
  background: var(--brand-secondary);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(241, 153, 192, 0.35);
}

.nav-cta::after {
  display: none !important;
}

/* Active nav link */
.nav-active {
  color: var(--brand-primary) !important;
  font-weight: 600 !important;
}

.nav-active::after {
  width: 100% !important;
}

/* ==================== NAV DROPDOWN ==================== */
.nav-has-dropdown {
  position: relative;
}

/* Bridge hover gap so submenu doesn't collapse while moving cursor down */
.nav-has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-chevron {
  font-size: 9px;
  margin-left: 3px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.11),
    0 2px 8px rgba(107, 172, 186, 0.1);
  border: 1px solid rgba(107, 172, 186, 0.18);
  padding: 8px;
  min-width: 220px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 300;
}

/* Arrow pointer caret */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  background: #fff;
  border-left: 1px solid rgba(107, 172, 186, 0.18);
  border-top: 1px solid rgba(107, 172, 186, 0.18);
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
  list-style: none;
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s;
}

.nav-dropdown li a:hover,
.nav-dropdown li a.active {
  background: rgba(107, 172, 186, 0.1);
  color: var(--brand-primary);
}

.nav-dropdown li a.active {
  font-weight: 600;
}

.nav-dropdown li a i {
  font-size: 13px;
  color: var(--brand-primary);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* Mobile: inline indented sub-list */
@media (max-width: 900px) {
  .nav-has-dropdown::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(107, 172, 186, 0.3);
    border-radius: 0;
    background: transparent;
    padding: 4px 0 4px 10px;
    margin: 2px 0 6px 14px;
    min-width: auto;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .nav-links.open .nav-has-dropdown .nav-dropdown {
    display: block;
  }

  .nav-links.open .nav-has-dropdown .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-has-dropdown.dropdown-open .nav-dropdown {
    display: block;
  }

  .nav-has-dropdown.dropdown-open .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown li a {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* ==================== INNER PAGE HERO ==================== */
.page-hero {
  padding: 140px 24px 72px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.07) 0%,
    rgba(241, 153, 192, 0.05) 100%
  );
  border-bottom: 1px solid rgba(107, 172, 186, 0.1);
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107, 172, 186, 0.12);
  border: 1px solid rgba(107, 172, 186, 0.25);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--brand-primary);
}

.page-hero > p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.page-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .page-hero {
    padding: 110px 20px 56px;
  }

  .page-hero > p {
    font-size: 16px;
  }

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

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: url("../images/hero%20image.jpg") center center / cover no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 16, 28, 0.82) 0%,
    rgba(10, 16, 28, 0.52) 44%,
    rgba(10, 16, 28, 0) 72%
  );
  z-index: 1;
}

.hero-bg-circle {
  display: none;
}

.hero-bg-circle.c1 {
  width: 500px;
  height: 500px;
  background: rgba(107, 172, 186, 0.35);
  top: -10%;
  left: -5%;
}

.hero-bg-circle.c2 {
  width: 350px;
  height: 350px;
  background: rgba(241, 153, 192, 0.35);
  bottom: -8%;
  right: -5%;
}

.hero-bg-circle.c3 {
  width: 200px;
  height: 200px;
  background: rgba(206, 162, 119, 0.3);
  top: 50%;
  left: 55%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 640px;
  padding: 0 60px 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

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

  50% {
    opacity: 0.5;
    transform: scale(1.6);
  }
}

.hero-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--brand-secondary);
  -webkit-text-fill-color: var(--brand-secondary);
}

.hero-headline em::after {
  display: none;
}

.hero-description {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  margin: 0 0 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(107, 172, 186, 0.32);
}

.btn-primary:hover {
  background: var(--brand-alternate);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(206, 162, 119, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.hero-product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-floating);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.hero-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-emoji-display {
  font-size: 80px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  animation: float-gentle 5s ease-in-out infinite;
}

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

  50% {
    transform: translateY(-12px);
  }
}

.product-card-info .rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.stars {
  color: var(--brand-alternate);
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.product-card-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.product-card-info p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ==================== ANIMATED COUNTERS RIBBON ==================== */
.counters-ribbon {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.counter-item .counter-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item .counter-label {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ==================== TRUST PILLARS - INTERACTIVE ==================== */
.trust-pillars {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Legacy trust grid - hidden */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-card {
  background: var(--white);
  border: 1px solid rgba(241, 153, 192, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-elegant);
}

.trust-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ── INTERACTIVE TRUST SECTION ── */
.trust-pillars-interactive {
  padding: 80px 24px;
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.05),
    rgba(241, 153, 192, 0.03)
  );
}

.trust-interactive-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Gallery Side */
.trust-gallery {
  position: relative;
}

.trust-gallery-stage {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.1),
    rgba(241, 153, 192, 0.08)
  );
}

.trust-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.trust-gallery-img.active {
  opacity: 1;
}

.trust-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  padding: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.trust-gallery-content {
  color: #fff;
  opacity: 0;
  animation: slideUpFade 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-gallery-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.trust-gallery-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Cards Side */
.trust-cards-interactive {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-card-interactive {
  position: relative;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.trust-card-inner {
  background: var(--white);
  border: 2px solid rgba(107, 172, 186, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.trust-card-interactive:hover .trust-card-inner,
.trust-card-interactive.active .trust-card-inner {
  border-color: var(--brand-primary);
  box-shadow: 0 12px 40px rgba(107, 172, 186, 0.15);
  transform: translateX(8px);
}

.trust-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.1),
    rgba(241, 153, 192, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--brand-primary);
  margin-bottom: 16px;
  transition: all var(--transition-smooth);
}

.trust-card-interactive:hover .trust-card-icon,
.trust-card-interactive.active .trust-card-icon {
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.2),
    rgba(241, 153, 192, 0.12)
  );
  transform: scale(1.1);
}

.trust-card-interactive h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.trust-card-interactive p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.trust-card-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--brand-primary),
    var(--brand-secondary)
  );
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.trust-card-interactive.active .trust-card-indicator,
.trust-card-interactive:hover .trust-card-indicator {
  opacity: 1;
}

.indicator-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ==================== INGREDIENT / TECH DEEP DIVE ==================== */
.deep-dive {
  padding: 100px 0;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-primary);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 16px auto 0;
  font-size: 16px;
}

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

.tech-visual {
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.14),
    rgba(241, 153, 192, 0.16)
  );
  border-radius: var(--radius-xl);
  padding: 50px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border-light);
}

.tech-diaper-layers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.layer {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  cursor: default;
}

.layer:hover {
  border-color: var(--accent-soft);
  transform: translateX(6px);
  box-shadow: var(--shadow-lifted);
}

.layer-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.layer-info h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.layer-info p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

.tech-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}

.tech-details .lead {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.cert-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-badge {
  background: var(--bg-secondary);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==================== PRODUCT FEATURES ==================== */
.product-features {
  padding: 20px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid rgba(107, 172, 186, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-floating);
  border-color: var(--brand-primary);
}

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--brand-secondary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ==================== SIZE SELECTOR INTERACTIVE ==================== */
.size-selector-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  border-radius: var(--radius-xl);
  margin: 0 24px 80px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.size-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.size-pill {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elegant);
  color: var(--text-primary);
}

.size-pill:hover {
  border-color: var(--accent-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lifted);
}

.size-pill.active {
  background: var(--brand-primary);
  color: var(--white);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 24px rgba(107, 172, 186, 0.45);
  transform: translateY(-4px);
}

.size-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: var(--shadow-floating);
  border: 1px solid var(--border-light);
}

.size-detail-left h4 {
  font-size: 28px;
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

.size-detail-left .weight-range {
  font-size: 16px;
  color: var(--accent-warm);
  font-weight: 600;
  margin-bottom: 12px;
}

.size-detail-right .stat-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.stat-label {
  color: var(--text-tertiary);
  font-size: 14px;
}

.stat-value {
  font-weight: 700;
  font-size: 14px;
}

.range-table-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin: 32px auto 0;
  max-width: 750px;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.range-table {
  width: 100%;
  border-collapse: collapse;
}

.range-table th,
.range-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  font-size: 14px;
}

.range-table th {
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.14),
    rgba(241, 153, 192, 0.16)
  );
  font-weight: 700;
  color: var(--text-primary);
}

.range-table th:first-child,
.range-table td:first-child {
  text-align: left;
  font-weight: 700;
}

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

/* ==================== PARENTING TOOLS ==================== */
.tools-section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.tool-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-elegant);
}

.tool-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.tool-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.tool-card a {
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

.tool-lab {
  padding: 10px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.tool-lab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tool-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-elegant);
}

.tool-panel h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.tool-panel p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 14px;
}

.tool-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.tool-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.tool-field input,
.tool-field select {
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  background: var(--white);
}

.tool-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-primary);
  cursor: pointer;
}

.tool-result {
  margin-top: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 8px 0 14px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pack-breakdown {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ==================== EXPERT BACKED ==================== */
.experts-section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.expert-card {
  background: linear-gradient(
    150deg,
    rgba(107, 172, 186, 0.12),
    rgba(241, 153, 192, 0.14)
  );
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-elegant);
}

.expert-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 14px;
}

.expert-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 600;
}

/* ==================== IMPACT ==================== */
.impact-section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.impact-card {
  background: var(--white);
  border: 1px solid rgba(241, 153, 192, 0.22);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-elegant);
  text-align: center;
}

.impact-card .value {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--brand-primary);
}

.impact-card .label {
  color: var(--brand-secondary);
  font-size: 14px;
}

/* ==================== TESTIMONIAL CARDS EXPANDED ==================== */
.testimonials-expanded {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.testimonial-block::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: "Playfair Display", serif;
  font-size: 80px;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonial-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-floating);
  border-color: var(--accent-soft);
}

.testimonial-block .t-stars {
  color: var(--brand-alternate);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-block .t-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-block .t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-warm);
}

.t-name {
  font-weight: 700;
  font-size: 14px;
}

.t-verified {
  font-size: 12px;
  color: var(--accent-green);
  font-weight: 500;
}

/* ==================== COMPARISON TABLE ELEVATED ==================== */
.comparison-elevated {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.compare-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-floating);
  border: 1px solid var(--border-light);
}

.compare-table-elevated {
  width: 100%;
  border-collapse: collapse;
}

.compare-table-elevated thead th {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.3px;
}

.compare-table-elevated thead th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-tertiary);
}

.compare-table-elevated thead th.highlight-header {
  background: rgba(107, 172, 186, 0.16);
  color: var(--brand-primary);
  font-weight: 800;
}

.compare-table-elevated tbody td {
  padding: 18px 24px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
}

.compare-table-elevated tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.compare-table-elevated tbody td.highlight-col {
  background: rgba(107, 172, 186, 0.08);
  font-weight: 700;
}

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

.icon-check {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 16px;
}

.icon-dash {
  color: var(--text-tertiary);
}

/* ==================== CTA BANNER ==================== */
.cta-grand {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(
    160deg,
    rgba(107, 172, 186, 0.18) 0%,
    rgba(241, 153, 192, 0.2) 50%,
    rgba(206, 162, 119, 0.18) 100%
  );
  border-radius: var(--radius-xl);
  max-width: 1100px;
  margin: 0 auto 60px;
}

.cta-grand h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 16px;
}

.cta-grand p {
  color: var(--text-secondary);
  max-width: 450px;
  margin: 0 auto 32px;
  font-size: 16px;
}

/* ==================== FOOTER ==================== */
.footer-simple {
  padding: 40px 24px;
  color: var(--text-tertiary);
  font-size: 13px;
  border-top: 1px solid var(--border-light);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.footer-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-simple a {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(241, 153, 192, 0.25);
    padding: 14px 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    z-index: 100;
  }

  .nav-links.open li {
    width: 100%;
  }

  .nav-links.open a {
    display: block;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 15px;
  }

  .nav-links.open a:hover {
    background: rgba(107, 172, 186, 0.08);
  }

  .nav-links.open a::after {
    display: none;
  }

  .nav-links.open .nav-cta {
    margin-top: 6px;
    text-align: center;
    border-radius: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .trust-grid,
  .tool-lab-grid,
  .experts-grid,
  .impact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Tools: 2-col at tablet */
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Prevent table overflow */
  .compare-wrapper,
  .range-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .size-detail-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .counters-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-product-card {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .range-table th,
  .range-table td {
    padding: 12px 10px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  /* ── Hero ── */
  .hero-section {
    padding: 0;
    background-position: 70% center;
  }

  .hero-content {
    padding: 0 24px 56px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* ── Nav ── */
  .nav-glass {
    padding: 10px 18px;
    border-radius: 40px;
    top: 10px;
    width: 95%;
  }

  .nav-logo img {
    height: 36px;
  }

  .btn {
    padding: 13px 22px;
    font-size: 14px;
  }

  /* ── Section spacing ── */
  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .section-header p {
    font-size: 14px;
  }

  /* ── Trust / Features ── */
  .trust-pillars,
  .product-features {
    padding: 48px 20px;
  }

  /* ── Counters ── */
  .counters-ribbon {
    padding: 32px 20px;
  }

  /* ── How It Works ── */
  .how-it-works {
    padding: 48px 20px;
  }

  /* ── Tech deep dive ── */
  .deep-dive {
    padding: 48px 20px;
  }

  .tech-visual {
    padding: 28px 20px;
  }

  /* ── Size selector ── */
  .size-selector-section {
    padding: 48px 20px;
  }

  .size-detail-card {
    padding: 24px;
  }

  .size-pills {
    gap: 8px;
  }

  /* ── Tools ── */
  .tools-section {
    padding: 48px 20px;
  }

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

  .tool-lab {
    padding: 0 20px 48px;
  }

  /* ── Testimonials ── */
  .testimonials-expanded {
    padding: 48px 20px;
  }

  .testimonial-block {
    padding: 24px;
  }

  /* ── Comparison ── */
  .comparison-elevated {
    padding: 48px 20px;
  }

  .compare-table-elevated thead th,
  .compare-table-elevated tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }

  /* ── Expert / Impact ── */
  .experts-section,
  .impact-section {
    padding: 48px 20px;
  }

  /* ── CTA Banner ── */
  .cta-grand {
    padding: 48px 20px;
    margin: 0 12px 48px;
    border-radius: 20px;
  }

  /* ── Newsletter ── */
  .newsletter-strip {
    padding: 48px 20px;
  }

  /* ── Product range ── */
  .product-range-section {
    padding: 48px 20px;
  }

  /* ── Product card (floating) ── */
  .hero-product-card {
    width: calc(100% - 40px);
    max-width: 380px;
  }

  /* ── FAQ ── */
  .faq-section {
    padding: 48px 20px;
  }
}

/* ==================== SCROLL REVEAL ==================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== COUNTER ICON WRAP ==================== */
.counter-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(107, 172, 186, 0.35);
  transition: var(--transition-bounce);
}

.counter-item:hover .counter-icon-wrap {
  transform: scale(1.1) translateY(-4px);
}

/* ==================== TRUST CARD ICON ==================== */
.trust-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    rgba(241, 153, 192, 0.55)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(107, 172, 186, 0.3);
  transition: var(--transition-bounce);
}

.trust-card:hover .trust-icon-wrap {
  transform: rotate(-6deg) scale(1.1);
}

/* ==================== FEATURE CARD ICON ==================== */
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(107, 172, 186, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--brand-primary);
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrap {
  background: var(--brand-primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(107, 172, 186, 0.35);
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  padding: 80px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.hiw-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.hiw-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin: 0 auto 14px;
  box-shadow: 0 8px 28px rgba(107, 172, 186, 0.38);
  transition: var(--transition-bounce);
}

.hiw-step:hover .hiw-icon-wrap {
  transform: scale(1.12) translateY(-5px);
  box-shadow: 0 16px 40px rgba(107, 172, 186, 0.45);
}

.hiw-step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hiw-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.hiw-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.hiw-connector {
  flex: 0 0 32px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  margin-top: 38px;
  opacity: 0.4;
  border-radius: 2px;
}

/* ==================== FAQ ACCORDION ==================== */
.faq-section {
  padding: 80px 24px;
  max-width: 820px;
  margin: 0 auto;
}

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

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.faq-item.open {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 20px rgba(107, 172, 186, 0.15);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition-smooth);
  font-family: inherit;
}

.faq-q:hover {
  color: var(--brand-primary);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(107, 172, 186, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--brand-primary);
  flex-shrink: 0;
  transition:
    background var(--transition-smooth),
    transform var(--transition-smooth),
    color var(--transition-smooth);
}

.faq-item.open .faq-icon {
  background: var(--brand-primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition:
    max-height 0.42s cubic-bezier(0.22, 0.61, 0.36, 1),
    padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 260px;
  padding: 0 24px 20px;
}

.faq-a p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

/* ==================== TESTIMONIAL SLIDER ==================== */
.testimonial-slider-wrap {
  overflow: hidden;
  position: relative;
  padding: 0 4px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.52s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-track .testimonial-block {
  min-width: 100%;
  box-sizing: border-box;
}

.t-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.t-ctrl-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-medium);
  color: var(--text-primary);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.t-ctrl-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--white);
  transform: scale(1.1);
}

.t-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.t-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-medium);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.t-dot.active {
  background: var(--brand-primary);
  width: 24px;
  border-radius: 5px;
}

/* ==================== NEWSLETTER STRIP ==================== */
.newsletter-strip {
  background: linear-gradient(
    135deg,
    var(--brand-primary) 0%,
    var(--brand-secondary) 100%
  );
  padding: 64px 24px;
  margin-bottom: 0;
}

.newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-ico {
  font-size: 38px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  display: block;
}

.newsletter-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 6px;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nl-input {
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 14px;
  width: 270px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  font-family: inherit;
}

.nl-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.nl-btn {
  background: var(--white);
  color: var(--brand-primary);
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-bounce);
  white-space: nowrap;
  font-family: inherit;
}

.nl-btn:hover {
  background: var(--brand-alternate);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
}

/* ==================== RESPONSIVE — NEW COMPONENTS ==================== */
@media (max-width: 900px) {
  .hiw-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hiw-connector {
    width: 2px;
    height: 28px;
    flex: 0 0 28px;
    margin-top: 0;
    background: linear-gradient(
      180deg,
      var(--brand-primary),
      var(--brand-secondary)
    );
  }

  .hiw-step {
    width: 100%;
    max-width: 340px;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    justify-content: center;
  }

  .nl-input {
    width: 100%;
    max-width: 320px;
  }
}

/* ==================== HERO PRODUCT IMAGE ==================== */
.hero-product-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 14px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.12));
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.08),
    rgba(241, 153, 192, 0.08)
  );
}

/* ==================== PRODUCT RANGE SECTION ==================== */
.product-range-section {
  padding: 80px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.product-range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 48px;
}

.product-range-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-range-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-floating);
  border-color: var(--brand-primary);
}

.product-range-card.featured {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 36px rgba(107, 172, 186, 0.22);
  transform: scale(1.03);
}

.product-range-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
}

.product-range-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  z-index: 2;
}

.product-range-img-wrap {
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.08) 0%,
    rgba(241, 153, 192, 0.08) 100%
  );
  padding: 36px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.product-range-img-wrap img {
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  transition:
    transform 0.4s var(--ease-out-back),
    filter 0.4s ease;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.13));
}

.product-range-card:hover .product-range-img-wrap img {
  transform: scale(1.07) translateY(-6px);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.2));
}

.product-range-info {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-range-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 8px;
  display: block;
}

.product-range-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.product-range-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.product-range-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.product-range-meta span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-range-meta span i {
  color: var(--brand-secondary);
  font-size: 13px;
}

.product-range-cta {
  display: inline-block;
  background: var(--brand-primary);
  color: var(--white);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition:
    background var(--transition-smooth),
    transform var(--transition-bounce),
    box-shadow var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(107, 172, 186, 0.32);
}

.product-range-cta:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(241, 153, 192, 0.38);
}

@media (max-width: 960px) {
  .product-range-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-range-card.featured {
    transform: none;
    border-width: 2px;
  }
  .product-range-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* ==================== PHOTO PLACEHOLDER SYSTEM ==================== */
/*
  Use these when a real photo is needed but not yet available.
  Add descriptive text inside .ph-label so the photographer knows exactly
  what to shoot for each placeholder.
*/

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f0f6f8 0%, #eaf2f5 100%);
  border: 2px dashed rgba(107, 172, 186, 0.45);
  border-radius: var(--radius-lg);
  color: rgba(107, 172, 186, 0.75);
  text-align: center;
  padding: 36px 24px;
  width: 100%;
  box-sizing: border-box;
  min-height: 180px;
  position: relative;
}

.img-placeholder .ph-camera {
  font-size: 30px;
  opacity: 0.55;
}

.img-placeholder .ph-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(107, 172, 186, 0.95);
  line-height: 1.4;
  max-width: 220px;
}

.img-placeholder .ph-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(107, 172, 186, 0.15);
  color: rgba(107, 172, 186, 0.85);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Wide / landscape format */
.img-placeholder--wide {
  aspect-ratio: 16 / 7;
  min-height: auto;
  border-radius: 20px;
}

/* Square format */
.img-placeholder--square {
  aspect-ratio: 1;
  min-height: auto;
}

/* Round avatar (for testimonials / reviewer headshots) */
.img-placeholder--round {
  width: 52px;
  height: 52px;
  min-height: auto;
  min-width: auto;
  border-radius: 50%;
  padding: 0;
  gap: 0;
  flex-shrink: 0;
}

.img-placeholder--round .ph-camera {
  font-size: 17px;
}

/* Expert portrait: taller card-style */
.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
  min-height: auto;
  max-width: 180px;
  margin: 0 auto 16px;
  border-radius: var(--radius-lg);
}

/* ================================================================
   HOME PAGE IMAGE-BASED SECTIONS
================================================================ */

/* ── COMFORT BANNER ── */
.home-comfort-banner {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 80px 24px;
}

.comfort-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comfort-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 70%
  );
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.comfort-banner-content {
  max-width: 480px;
  color: #fff;
}

.comfort-banner-tag {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}

.comfort-banner-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.comfort-banner-content > p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.95);
}

.btn-white {
  background: #fff;
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all var(--transition-smooth);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

/* ── HOME FEATURES SHOWCASE ── */
.home-features-showcase {
  padding: 80px 24px;
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 56px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.home-feature-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  cursor: pointer;
}

.home-feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.home-feature-card:hover .home-feature-image img {
  transform: scale(1.05);
}

.home-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background var(--transition-smooth);
}

.home-feature-card:hover .home-feature-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.home-feature-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.home-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-feature-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-feature-list li::before {
  content: "•";
  font-weight: 800;
  color: var(--brand-secondary);
}

/* ── HOME SIZE BANNER ── */
.home-size-banner {
  margin: 40px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 240px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.home-size-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── HOME WRAPPED IN SOFTNESS ── */
.home-wrapped-softness {
  padding: 80px 24px;
  background: linear-gradient(
    135deg,
    rgba(241, 153, 192, 0.06),
    rgba(206, 162, 119, 0.05)
  );
}

.home-wrapped-split {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-wrapped-content .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.home-wrapped-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.home-wrapped-content > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.home-wrapped-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-benefit-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.home-benefit-row i {
  font-size: 18px;
  color: var(--brand-secondary);
  margin-top: 2px;
  flex-shrink: 0;
}

.home-benefit-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.home-benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.home-wrapped-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 380px;
}

.home-wrapped-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── HOME TRAVEL ESSENTIALS ── */
.home-travel-essentials {
  padding: 60px 24px;
}

.home-travel-banner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
}

.home-travel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-travel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 60%
  );
  padding: 48px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-travel-content {
  max-width: 480px;
  color: #fff;
}

.home-travel-tag {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}

.home-travel-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.home-travel-content > p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.95);
}

.home-travel-tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-travel-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.home-travel-tip:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.home-travel-tip i {
  font-size: 14px;
  color: var(--brand-secondary);
  flex-shrink: 0;
}

/* ── RESPONSIVE ADJUSTMENTS ── */
@media (max-width: 768px) {
  /* Trust Interactive */
  .trust-interactive-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-gallery-stage {
    min-height: 320px;
  }

  .trust-cards-interactive {
    gap: 12px;
  }

  .trust-card-inner {
    padding: 24px 20px;
  }

  .trust-card-interactive:hover .trust-card-inner,
  .trust-card-interactive.active .trust-card-inner {
    transform: translateX(4px);
  }

  .trust-card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .trust-card-interactive h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .trust-card-interactive p {
    font-size: 13px;
  }

  .home-comfort-banner {
    min-height: 300px;
    margin: 60px 12px;
  }

  .comfort-banner-overlay {
    padding: 32px 24px;
  }

  .home-wrapped-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-wrapped-image {
    min-height: 300px;
  }

  .home-features-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-card {
    min-height: 300px;
  }

  .home-travel-banner {
    min-height: 300px;
  }

  .home-travel-overlay {
    padding: 32px 24px;
  }

  .home-travel-content {
    max-width: 100%;
  }

  .home-travel-tips {
    grid-template-columns: 1fr;
  }

  .home-comfort-banner,
  .home-features-showcase,
  .home-wrapped-softness,
  .home-travel-essentials {
    padding: 56px 12px;
  }

  .section-header {
    padding: 0 12px;
  }
}

/* ==================== SECTION PATCH: WHY PARENTS + MATERIALS SPLIT ==================== */
.why-parents-section {
  padding: 72px 24px;
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.06) 0%,
    rgba(241, 153, 192, 0.06) 100%
  );
}

.why-parents-modern {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.why-organized-stage {
  width: 100%;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 340px) minmax(
      220px,
      1fr
    );
  align-items: center;
  gap: 22px;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.96)
  );
  border: 1px solid rgba(107, 172, 186, 0.25);
  box-shadow: 0 24px 58px rgba(27, 35, 52, 0.12);
  position: relative;
}

.why-organized-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, 45vw);
  height: min(420px, 45vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(107, 172, 186, 0.28);
  animation: whyGuideSpin 24s linear infinite;
  pointer-events: none;
}

.feature-column {
  display: grid;
  gap: 14px;
  z-index: 2;
}

.feature-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(107, 172, 186, 0.24);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(27, 35, 52, 0.1);
  position: relative;
  animation: whyFeatureRise 0.7s ease both;
}

.feature-item:nth-child(2) {
  animation-delay: 0.12s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.24s;
}

.feature-left .feature-item::after,
.feature-right .feature-item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(107, 172, 186, 0.15),
    rgba(107, 172, 186, 0.62)
  );
}

.feature-left .feature-item::after {
  right: -28px;
}

.feature-right .feature-item::after {
  left: -28px;
  transform: scaleX(-1);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.18),
    rgba(241, 153, 192, 0.2)
  );
  color: var(--brand-primary);
  font-size: 16px;
}

.feature-copy h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.feature-copy p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.why-showcase-center {
  z-index: 2;
}

.why-center-ring {
  width: min(340px, 56vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 auto;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(242, 248, 250, 0.95)
  );
  border: 1px solid rgba(107, 172, 186, 0.28);
  box-shadow:
    0 22px 48px rgba(27, 35, 52, 0.18),
    inset 0 0 0 12px rgba(107, 172, 186, 0.08);
  display: grid;
  place-items: center;
}

.why-center-ring img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  animation: whyCenterPulse 4.8s ease-in-out infinite;
}

@keyframes whyFeatureRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes whyGuideSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.tech-grid-split {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.tech-visual-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.tech-visual-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.tech-features-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.tech-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tech-feature-item i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(241, 153, 192, 0.15);
  color: var(--brand-secondary);
  margin-top: 2px;
  flex-shrink: 0;
}

.tech-feature-item h5 {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.tech-feature-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .why-parents-section {
    padding: 56px 12px;
  }

  .why-parents-modern {
    overflow: visible;
    padding: 0;
  }

  .why-organized-stage {
    min-width: 0;
    min-height: 470px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 10px;
    border-radius: 20px;
    border-left: 1px solid rgba(107, 172, 186, 0.25);
    border-right: 1px solid rgba(107, 172, 186, 0.25);
  }

  .why-organized-stage::before {
    width: 220px;
    height: 220px;
  }

  .why-showcase-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
  }

  .why-center-ring {
    width: 150px;
    margin: 0 auto;
  }

  .feature-column {
    display: contents;
  }

  .feature-item {
    position: absolute;
    width: 42%;
    padding: 8px;
    grid-template-columns: 26px 1fr;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(27, 35, 52, 0.1);
    animation: none;
  }

  .feature-left .feature-item:nth-child(1) {
    left: 2%;
    top: 9%;
  }

  .feature-left .feature-item:nth-child(2) {
    left: 2%;
    top: 38%;
  }

  .feature-left .feature-item:nth-child(3) {
    left: 2%;
    top: 67%;
  }

  .feature-right .feature-item:nth-child(1) {
    right: 2%;
    top: 9%;
  }

  .feature-right .feature-item:nth-child(2) {
    right: 2%;
    top: 38%;
  }

  .feature-right .feature-item:nth-child(3) {
    right: 2%;
    top: 67%;
  }

  .feature-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
    border-radius: 8px;
  }

  .feature-copy h4 {
    font-size: 11px;
    line-height: 1.25;
    margin-bottom: 0;
  }

  .feature-copy p {
    display: none;
  }

  .feature-left .feature-item::after,
  .feature-right .feature-item::after {
    display: none;
  }

  .tech-grid-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tech-visual-image {
    order: -1;
  }

  .tech-visual-image img {
    min-height: 280px;
  }
}

/* ==================== HOME REFINEMENTS 20260520 ==================== */
.hero-product-card--split {
  align-items: stretch;
  gap: 20px;
  text-align: left;
}

.hero-product-card--split .hero-product-img {
  width: 102px;
  height: 102px;
  border-radius: 18px;
}

.hero-product-card--split .product-card-info {
  min-width: 360px;
}

.rating-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-primary);
  border-radius: 999px;
  padding: 3px 10px;
  line-height: 1.3;
}

.hero-product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.meta-chip {
  border: 1px solid rgba(107, 172, 186, 0.3);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(107, 172, 186, 0.06);
}

.counters-ribbon {
  background: linear-gradient(
    135deg,
    rgba(107, 172, 186, 0.09),
    rgba(241, 153, 192, 0.08)
  );
  border: none;
  padding: 38px 24px;
}

.journey-nav {
  padding: 0 24px 14px;
}

.journey-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.journey-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  border: 1px solid rgba(107, 172, 186, 0.2);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 8px 14px;
  transition:
    transform var(--transition-smooth),
    color var(--transition-smooth),
    background var(--transition-smooth),
    border-color var(--transition-smooth);
}

.journey-link:hover {
  transform: translateY(-1px);
  color: var(--brand-primary);
  border-color: rgba(107, 172, 186, 0.4);
}

.journey-link.active {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(107, 172, 186, 0.25);
}

.counters-grid {
  max-width: 1100px;
  gap: 18px;
}

.counter-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(107, 172, 186, 0.16);
  border-radius: 22px;
  padding: 24px 18px;
  box-shadow: var(--shadow-elegant);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.counter-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lifted);
}

.counter-item .counter-number {
  font-size: clamp(32px, 4.2vw, 46px);
}

.counter-item .counter-label {
  letter-spacing: 0.8px;
  text-transform: none;
  font-size: 13px;
}

.promise-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.promise-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  min-height: 450px;
}

.promise-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promise-split .trust-grid {
  grid-template-columns: 1fr;
}

.size-selector-background {
  position: relative;
  overflow: hidden;
  background: url("../images/babyco%20pictures/FAMILY%20TRAVEL.png") center/
    cover no-repeat;
}

.size-selector-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.94) 40%,
    rgba(255, 255, 255, 0.96) 100%
  );
}

.size-selector-background > * {
  position: relative;
  z-index: 1;
}

.home-tools-cta {
  padding: 70px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.home-tools-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.home-tool-link-card {
  background: #fff;
  border: 1px solid rgba(107, 172, 186, 0.2);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  box-shadow: var(--shadow-elegant);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.home-tool-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-lifted);
}

.home-tool-link-card > i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand-primary);
  background: rgba(107, 172, 186, 0.14);
}

.home-tool-link-card h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.home-tool-link-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

.home-tool-link-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
}

.home-tools-cta-actions {
  margin-top: 18px;
  text-align: center;
}

.first-parent-support {
  padding: 62px 24px;
}

.first-parent-support-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  background: linear-gradient(
    135deg,
    rgba(241, 153, 192, 0.08) 0%,
    rgba(107, 172, 186, 0.12) 100%
  );
  border: 1px solid rgba(107, 172, 186, 0.22);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow-elegant);
}

.first-parent-copy h2 {
  margin: 0 0 8px;
  line-height: 1.1;
}

.first-parent-accent {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--brand-secondary);
}

.first-parent-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text-primary);
}

.first-parent-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 46ch;
}

.first-parent-actions {
  margin-top: 18px;
}

.size-arch-actions {
  margin-top: 16px;
  text-align: center;
}

.first-parent-image {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 12px 28px rgba(27, 35, 52, 0.14);
}

.first-parent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  .promise-image-wrap {
    min-height: 300px;
  }

  .hero-product-card--split .product-card-info {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .journey-nav {
    padding: 0 12px 14px;
  }

  .journey-nav-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .journey-link {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .home-tools-cta {
    padding: 56px 12px;
  }

  .home-tools-cta-grid {
    grid-template-columns: 1fr;
  }

  .first-parent-support {
    padding: 52px 12px;
  }

  .first-parent-support-inner {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 14px;
  }

  .first-parent-actions .btn,
  .size-arch-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .first-parent-image {
    min-height: 230px;
    order: -1;
  }
}
