/* =========================================
   ENZI BABY — Global Design System
   Brand: Blue & Sand · Direction 02
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* === TOKENS === */
:root {
  --navy:       #0C3D5E;
  --navy-deep:  #0a3354;
  --ocean:      #185FA5;
  --sky:        #378ADD;
  --mist:       #85B7EB;
  --ice:        #B5D4F4;
  --frost:      #E6F1FB;
  --sand:       #F2EDE4;
  --sand-mid:   #EDE7DC;
  --sand-dark:  #ddd8ce;
  --ivory:      #FDFBF7;
  --ivory-mid:  #F7F4EE;
  --stone:      #888780;
  --stone-dark: #5F5E5A;
  --ink:        #2C2C2A;
  --ink-light:  #1a1a18;
  --teal:       #1D9E75;
  --teal-dark:  #085041;
  --teal-light: #E1F5EE;
  --amber:      #BA7517;

  --font-sans:  'DM Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-pill:50px;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 500; }
h1 { font-size: clamp(24px, 4vw, 36px); }
h2 { font-size: clamp(20px, 3vw, 26px); }
h3 { font-size: 16px; }

.serif { font-family: var(--font-serif); }
.sec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
  display: block;
}
.sec-label-light { color: var(--mist); }

/* === NAV === */
.site-nav {
  background: var(--navy);
  height: 56px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid var(--navy-deep);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 28px; height: 28px; flex-shrink: 0; }
.nav-wordmark { font-size: 15px; font-weight: 600; color: var(--ivory); letter-spacing: -0.01em; }
.nav-tagline { font-size: 10px; color: var(--mist); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-link {
  font-size: 12px;
  color: var(--ice);
  text-decoration: none;
  transition: color 0.15s;
  padding-bottom: 3px;
}
.nav-link:hover { color: var(--ivory); }
.nav-link.active { color: var(--ivory); font-weight: 500; border-bottom: 1.5px solid var(--sky); }
.nav-cta {
  font-size: 12px;
  font-weight: 500;
  background: var(--sky);
  color: var(--ivory);
  padding: 7px 16px;
  border-radius: var(--radius-md);
  border: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--ocean); }
.nav-mobile-toggle { display: none; background: none; border: none; color: var(--ivory); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-primary { background: var(--navy); color: var(--ivory); }
.btn-primary:hover { background: var(--ocean); }
.btn-sky { background: var(--sky); color: var(--ivory); }
.btn-sky:hover { background: var(--ocean); }
.btn-green { background: var(--teal); color: var(--ivory); }
.btn-green:hover { background: var(--teal-dark); }
.btn-outline {
  background: transparent;
  color: var(--ice);
  border: 0.5px solid var(--ocean);
}
.btn-outline:hover { background: var(--navy-deep); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 0.5px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--sand); }
.btn-outline-blue {
  background: transparent;
  color: var(--ocean);
  border: 0.5px solid var(--sky);
}
.btn-outline-blue:hover { background: var(--frost); }
.btn-sm { font-size: 11px; padding: 7px 14px; }
.btn-lg { font-size: 14px; padding: 13px 28px; }

/* === BADGES === */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.badge-blue { color: var(--navy); background: var(--frost); border: 0.5px solid var(--ice); }
.badge-sand { color: #5F4A2A; background: var(--sand); border: 0.5px solid var(--sand-dark); }
.badge-green { color: var(--teal-dark); background: var(--teal-light); border: 0.5px solid #9FE1CB; }
.badge-navy { color: var(--ivory); background: var(--navy); }
.badge-sky { color: var(--ivory); background: var(--sky); }

/* === CARDS === */
.card {
  background: var(--ivory);
  border: 0.5px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.card-navy {
  background: var(--navy-deep);
  border: 0.5px solid var(--ocean);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.card-frost {
  background: var(--frost);
  border: 0.5px solid var(--ice);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.card-sand {
  background: var(--sand);
  border: 0.5px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.card-featured {
  background: var(--navy-deep);
  border: 2px solid var(--sky);
  border-radius: var(--radius-lg);
  padding: 20px;
}

/* === SECTIONS === */
.section { padding: 56px 40px; }
.section-navy { background: var(--navy); }
.section-sand { background: var(--sand); }
.section-frost { background: var(--frost); }
.section-white { background: var(--ivory); }
.section-ivory { background: var(--ivory-mid); }

.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 32px; }

/* === GRID UTILITIES === */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 32px; align-items: center; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 32px; align-items: center; }
.grid-1-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }

/* === HERO BASE === */
.page-hero { background: var(--navy); padding: 48px 40px 44px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb { font-size: 10px; color: var(--mist); margin-bottom: 14px; }
.breadcrumb span { color: var(--ice); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-deep);
  border: 0.5px solid var(--ocean);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 18px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }
.eyebrow-dot-green { background: var(--teal); }
.eyebrow-txt { font-size: 11px; color: var(--mist); font-weight: 500; }

/* === FOOTER === */
.site-footer { background: var(--navy); padding: 40px 40px 22px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-brand-name { font-size: 15px; font-weight: 600; color: var(--ivory); margin-bottom: 5px; }
.footer-brand-tag { font-size: 11px; color: var(--mist); line-height: 1.6; margin-bottom: 14px; }
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ocean);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
  transition: background 0.15s;
}
.footer-wa:hover { background: var(--sky); }
.footer-col-head { font-size: 11px; font-weight: 600; color: var(--ivory); margin-bottom: 12px; }
.footer-col a { font-size: 11px; color: var(--mist); display: block; margin-bottom: 8px; text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--ice); }
.footer-bottom {
  border-top: 0.5px solid var(--ocean);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 10px; color: var(--stone); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-size: 10px;
  color: var(--mist);
  background: var(--navy-deep);
  border: 0.5px solid var(--ocean);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--sand);
  border-top: 0.5px solid var(--sand-dark);
  border-bottom: 0.5px solid var(--sand-dark);
  padding: 13px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 7px; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }
.trust-text { font-size: 11px; color: var(--stone-dark); font-weight: 500; }

/* === DIVIDER === */
.divider { height: 0.5px; background: var(--sand-dark); }
.divider-navy { height: 0.5px; background: var(--ocean); }

/* === STAT CARDS === */
.stat-card { background: var(--navy-deep); border: 0.5px solid var(--ocean); border-radius: var(--radius-md); padding: 16px 14px; }
.stat-num { font-size: 22px; font-weight: 500; color: var(--ivory); }
.stat-label { font-size: 10px; color: var(--mist); margin-top: 4px; line-height: 1.4; }
.stat-card-blue { background: var(--frost); border-radius: var(--radius-md); padding: 14px; }
.stat-card-blue .stat-num { color: var(--navy); }
.stat-card-blue .stat-label { color: var(--ocean); }

/* === CHECKLIST === */
.check-list { display: flex; flex-direction: column; gap: 9px; }
.check-item { display: flex; align-items: flex-start; gap: 8px; }
.check-tick {
  width: 16px; height: 16px; border-radius: 4px; background: var(--sky);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.check-tick-green { background: var(--teal); }
.check-tick-dim { background: var(--ocean); }
.check-txt { font-size: 11px; color: var(--ivory); line-height: 1.5; }
.check-txt-dark { font-size: 11px; color: var(--ocean); line-height: 1.5; }
.check-x { width: 16px; height: 16px; border-radius: 4px; background: #F09595; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* === PRODUCT CARD === */
.prod-card { background: var(--ivory); border: 0.5px solid var(--sand-dark); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.15s; }
.prod-card:hover { border-color: var(--ice); }
.prod-img { height: 80px; display: flex; align-items: center; justify-content: center; }
.prod-body { padding: 12px 14px 14px; }
.prod-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.prod-name { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.prod-sub { font-size: 10px; color: var(--stone); margin-bottom: 10px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 14px; font-weight: 500; color: var(--navy); }
.prod-add { font-size: 10px; font-weight: 500; color: var(--ocean); background: var(--frost); border: 0.5px solid var(--ice); border-radius: var(--radius-sm); padding: 5px 10px; cursor: pointer; transition: background 0.15s; }
.prod-add:hover { background: var(--ice); }
.prod-sub-badge { display: flex; align-items: center; gap: 5px; margin-top: 8px; padding-top: 8px; border-top: 0.5px solid var(--sand); }
.prod-sub-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.prod-sub-txt { font-size: 9px; color: var(--teal-dark); }

/* === TESTIMONIAL CARD === */
.testi-card { background: var(--ivory); border: 0.5px solid var(--sand-dark); border-radius: var(--radius-lg); padding: 20px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.testi-star { width: 10px; height: 10px; border-radius: 2px; }
.testi-quote { font-size: 12px; color: var(--ink); line-height: 1.75; margin-bottom: 14px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 9px; }
.testi-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--frost); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; color: var(--ocean); flex-shrink: 0; }
.testi-name { font-size: 11px; font-weight: 500; color: var(--navy); }
.testi-loc { font-size: 10px; color: var(--stone); }

/* === FAQ CARD === */
.faq-card { background: var(--ivory); border: 0.5px solid var(--sand-dark); border-radius: var(--radius-md); padding: 18px; }
.faq-q { font-size: 12px; font-weight: 500; color: var(--navy); margin-bottom: 7px; }
.faq-a { font-size: 11px; color: var(--stone-dark); line-height: 1.7; }

/* === PLAN CARD === */
.plan-card { background: var(--navy-deep); border: 0.5px solid var(--ocean); border-radius: 16px; padding: 24px 20px; }
.plan-card-featured { background: var(--navy-deep); border: 2px solid var(--sky); border-radius: 16px; padding: 24px 20px; }
.plan-badge { font-size: 10px; font-weight: 600; color: var(--ivory); background: var(--sky); border-radius: var(--radius-pill); padding: 3px 10px; display: inline-block; margin-bottom: 12px; }
.plan-badge-green { background: var(--teal); }
.plan-name { font-size: 14px; font-weight: 500; color: var(--ivory); margin-bottom: 4px; }
.plan-who { font-size: 10px; color: var(--mist); margin-bottom: 14px; line-height: 1.4; }
.plan-price { font-size: 28px; font-weight: 500; color: var(--ivory); }
.plan-price-sub { font-size: 10px; color: var(--mist); margin-bottom: 18px; }
.plan-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.plan-btn { width: 100%; font-size: 12px; font-weight: 500; padding: 10px; border-radius: var(--radius-md); border: none; cursor: pointer; background: var(--sky); color: var(--ivory); transition: background 0.15s; }
.plan-btn:hover { background: var(--ocean); }
.plan-btn-green { background: var(--teal); }
.plan-btn-green:hover { background: var(--teal-dark); }
.plan-btn-outline { width: 100%; font-size: 12px; font-weight: 500; padding: 10px; border-radius: var(--radius-md); background: transparent; color: var(--ice); border: 0.5px solid var(--ocean); cursor: pointer; transition: all 0.15s; }
.plan-btn-outline:hover { background: var(--navy); }

/* === PROCESS STEP === */
.proc-card { background: var(--ivory); border: 0.5px solid var(--sand-dark); border-radius: var(--radius-lg); padding: 20px; }
.proc-num { width: 30px; height: 30px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: var(--ivory); margin-bottom: 12px; }
.proc-h { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.proc-p { font-size: 11px; color: var(--stone-dark); line-height: 1.65; }
.proc-time { display: inline-block; font-size: 9px; font-weight: 500; color: var(--ocean); background: var(--frost); border: 0.5px solid var(--ice); border-radius: var(--radius-pill); padding: 2px 8px; margin-top: 10px; }

/* === MOBILE NAV === */
.mobile-nav { display: none; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .section { padding: 40px 20px; }
  .page-hero { padding: 36px 20px 32px; }
  .site-nav { padding: 0 20px; }
  .trust-bar { padding: 12px 20px; gap: 16px; }
  .site-footer { padding: 32px 20px 18px; }

  .grid-2, .grid-3, .grid-4,
  .grid-2-3, .grid-3-2, .grid-1-1 {
    grid-template-columns: 1fr;
  }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: var(--navy);
    border-top: 0.5px solid var(--ocean);
    padding: 16px 20px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { font-size: 14px; color: var(--ice); padding: 10px 0; border-bottom: 0.5px solid var(--navy-deep); text-decoration: none; }
  .mobile-nav a.active { color: var(--ivory); font-weight: 500; }
  .mobile-nav .nav-cta-mobile { margin-top: 12px; display: block; text-align: center; background: var(--sky); color: var(--ivory); padding: 11px; border-radius: var(--radius-md); font-weight: 500; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .trust-bar { justify-content: flex-start; }
  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease both; }
.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.12s; }
.fade-up-3 { animation-delay: 0.19s; }
.fade-up-4 { animation-delay: 0.26s; }

/* === PAGE SPECIFIC HELPERS === */
.text-navy { color: var(--navy); }
.text-ivory { color: var(--ivory); }
.text-mist { color: var(--mist); }
.text-ice { color: var(--ice); }
.text-stone { color: var(--stone); }
.text-sky { color: var(--sky); }
.text-teal { color: var(--teal); }
.bg-navy { background: var(--navy); }
.bg-sand { background: var(--sand); }
.bg-frost { background: var(--frost); }
.bg-ivory { background: var(--ivory); }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.wrap { flex-wrap: wrap; }
.max-480 { max-width: 480px; }
.max-560 { max-width: 560px; }
.max-680 { max-width: 680px; }
