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

:root {
  --blue: #93B5C6;
  --blue-dark: #7A9DB0;
  --blue-soft: #E4EEF3;
  --peach: #F2C4A4;
  --peach-soft: #FEF0E6;
  --rose: #D4B5C0;
  --navy: #2C2C34;
  --cream: #FAF9F7;
  --beige: #FAF9F7;
  --text: #2C2C34;
  --text-muted: rgba(44,44,52,0.55);
  --text-light: rgba(44,44,52,0.35);
  --white: #ffffff;
  --primary: #7A9DB0;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 4px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: 'Nunito', 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--text-muted); line-height: 1.65; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== Section Tags ========== */
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 30px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--blue-soft); color: var(--blue-dark); margin-bottom: 14px;
}
.section-tag.light {
  background: rgba(255,255,255,0.2); color: var(--white);
}

/* ========== Animations ========== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .float-icon, .shape { animation: none !important; }
}

/* ========== Hero ========== */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(160deg, #2C3E50 0%, #3D566E 40%, #4A6A82 70%, #5A8098 100%);
  position: relative; overflow: hidden; color: #fff;
}

/* Decorative shapes */
.hero-shapes, .how-shapes, .cta-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%; opacity: 0.08; background: #fff;
}
.shape-1 { width: 400px; height: 400px; top: -10%; right: -5%; animation: floatSlow 20s ease-in-out infinite; }
.shape-2 { width: 250px; height: 250px; bottom: 5%; left: -3%; animation: floatSlow 15s ease-in-out 3s infinite; }
.shape-3 { width: 150px; height: 150px; top: 30%; left: 15%; animation: floatSlow 12s ease-in-out 6s infinite; opacity: 0.05; }
.shape-4 { width: 300px; height: 300px; top: -8%; right: -4%; background: rgba(147,181,198,0.08); animation: floatSlow 18s ease-in-out infinite; }
.shape-5 { width: 200px; height: 200px; bottom: -5%; left: 10%; background: rgba(147,181,198,0.06); animation: floatSlow 14s ease-in-out 4s infinite; }
.shape-6 { width: 350px; height: 350px; top: -12%; left: -5%; animation: floatSlow 16s ease-in-out infinite; }
.shape-7 { width: 200px; height: 200px; bottom: -5%; right: 5%; animation: floatSlow 13s ease-in-out 5s infinite; }

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -12px); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
/* Hero logo */
.hero-logo {
  height: 140px; width: auto; margin-bottom: 28px; display: block;
}

.hero h1 { color: #fff; }
.hero h1 .h1-accent { color: #F2C4A4; }
.hero-sub { font-size: 1.2rem; margin-top: 18px; max-width: 460px; line-height: 1.75; color: rgba(255,255,255,0.88); }
.hero-sub em { color: #fff; font-style: normal; font-weight: 700; }
.hero-cta { margin-top: 32px; }
.hero-wave {
  display: block; width: 100%; height: 60px; position: absolute; bottom: -1px; left: 0; z-index: 2;
}
.hero-wave path { fill: var(--cream); }

/* ========== Email Signup Form ========== */
.signup-form {
  display: flex; gap: 0; max-width: 460px;
  background: rgba(255,255,255,0.92);
  border-radius: 60px; padding: 5px 5px 5px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.3);
  align-items: center;
}
.signup-input {
  flex: 1; padding: 12px 4px; border-radius: 0; border: none;
  background: transparent; color: var(--text);
  font-size: 0.95rem; font-family: inherit; font-weight: 500;
  outline: none; min-width: 0;
}
.signup-input::placeholder { color: var(--text-light); }
.signup-btn {
  padding: 12px 24px; border-radius: 60px; border: none;
  background: var(--blue-dark); color: #fff;
  font-size: 0.88rem; font-weight: 700; font-family: inherit;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(122,157,176,0.3);
}
.signup-btn:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(122,157,176,0.4); }
.signup-btn:disabled { opacity: 0.7; cursor: default; transform: none; }
.signup-btn.signup-success { background: #38a169; }
.signup-note {
  font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 12px; font-weight: 500;
}

/* CTA signup form variant */
.signup-form-cta { max-width: 460px; margin: 0 auto; }
.signup-form-cta .signup-input { color: var(--text); }
.cta-signup-note { color: rgba(255,255,255,0.6); }

@media (max-width: 480px) {
  .signup-form {
    flex-direction: column; border-radius: 20px; padding: 6px;
    gap: 4px;
  }
  .signup-input { padding: 12px 16px; text-align: center; }
  .signup-btn { width: 100%; text-align: center; border-radius: 16px; }
}

/* ========== Phone Mockup ========== */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-frame {
  width: 270px; border-radius: 36px; background: #2C2C34;
  padding: 8px; position: relative; z-index: 2;
  box-shadow: 0 30px 80px rgba(44,44,52,0.2), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-notch {
  width: 100px; height: 22px; background: #2C2C34; border-radius: 0 0 16px 16px;
  margin: 0 auto; position: relative; z-index: 3;
}
.phone-screen {
  background: #2C2C34; border-radius: 28px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 460px;
  margin-top: -12px;
}
.phone-header {
  background: #FAF9F7; padding: 16px 12px 10px; display: flex; gap: 6px; align-items: center;
  border-radius: 28px 28px 0 0;
}
.phone-pill {
  background: #FAF9F7; color: rgba(44,44,52,0.35);
  padding: 5px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 600;
  border: 1px solid rgba(44,44,52,0.08);
}
.phone-pill.active { background: #D4956A; color: #fff; border-color: transparent; }
.phone-pill.add {
  width: 26px; height: 26px; padding: 0; display: flex; align-items: center;
  justify-content: center; border-radius: 50%; font-size: 0.85rem; color: rgba(44,44,52,0.3);
  border: 1px solid rgba(44,44,52,0.08); background: #FAF9F7;
}
.phone-content {
  flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 8px;
  background: #FAF9F7;
}
.chat-bubble {
  padding: 10px 13px; border-radius: 16px; font-size: 0.72rem; line-height: 1.5;
  max-width: 85%;
}
.chat-bubble.assistant {
  background: var(--white); color: #2C2C34; align-self: flex-start;
  border-bottom-left-radius: 4px; box-shadow: 0 1px 6px rgba(44,44,52,0.04);
}
.chat-bubble.user {
  background: #7A9DB0; color: var(--white); align-self: flex-end;
  border-bottom-right-radius: 4px; min-width: 40px; min-height: 30px;
}
.chat-bubble.response { opacity: 0; transition: opacity 0.4s 0.2s; }
.chat-bubble.response.show { opacity: 1; }
.cursor { animation: blink 0.8s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.log-card { display: flex; align-items: center; gap: 8px; }
.log-card .log-icon { font-size: 1rem; }
.log-card div { display: flex; flex-direction: column; flex: 1; }
.log-card strong { font-size: 0.72rem; font-weight: 700; color: #2C2C34; }
.log-card span { font-size: 0.62rem; color: rgba(44,44,52,0.45); }
.log-check { color: #D4956A; font-size: 0.8rem; font-weight: 800; }

.quick-chips {
  display: flex; gap: 4px; padding: 5px 8px; overflow: hidden;
  background: #FAF9F7;
}
.chip {
  flex-shrink: 0; padding: 4px 10px; border-radius: 20px;
  background: #FFFFFF; color: #2C2C34;
  font-size: 0.52rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 1px 4px rgba(44,44,52,0.06);
}

.phone-input-bar {
  display: flex; align-items: center; gap: 5px; padding: 7px 8px;
  background: #FAF9F7;
}
.mic-btn {
  width: 28px; height: 28px; border-radius: 50%; background: #F0EEEA;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
}
.input-placeholder {
  flex: 1; background: var(--white); border-radius: 14px; padding: 6px 10px;
  font-size: 0.6rem; color: rgba(44,44,52,0.35);
  box-shadow: 0 1px 4px rgba(44,44,52,0.04);
}
.send-btn {
  width: 28px; height: 28px; border-radius: 50%; background: #D4956A;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; box-shadow: 0 2px 6px rgba(212,149,106,0.3);
}

/* Floating decorations */
.float-icon {
  position: absolute; font-size: 1.6rem; z-index: 1;
}
.float-1 { top: 12%; right: 3%; opacity: 0.2; animation: floatY 4s ease-in-out infinite; }
.float-2 { bottom: 22%; right: -1%; opacity: 0.15; animation: floatY 5s ease-in-out 1s infinite; }
.float-3 { top: 20%; left: 4%; opacity: 0.12; animation: floatY 3.5s ease-in-out 0.5s infinite; }
.float-4 { bottom: 35%; left: 0%; opacity: 0.15; animation: floatY 4.5s ease-in-out 2s infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .hero { padding: 60px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { display: flex; justify-content: center; }
  .hero-logo { margin-left: auto; margin-right: auto; }
  .hero-visual { margin-top: 32px; }
  .phone-frame { width: 230px; }
  .phone-screen { min-height: 380px; }
  .float-icon { display: none; }
}

/* ========== Section Header ========== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { margin-top: 10px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ========== How It Works ========== */
.how-section {
  padding: 100px 0 90px; position: relative; overflow: hidden;
  background: var(--cream);
  color: var(--text);
}
.how-section h2, .how-section h3 { color: var(--text); }
.how-section p { color: var(--text-muted); }
.how-section .section-header p { color: var(--text-muted); }
.how-section .section-tag { background: var(--blue-soft); color: var(--blue-dark); }

.how-steps-row {
  display: flex; align-items: stretch; justify-content: center; gap: 0;
  max-width: 760px; margin: 0 auto 36px;
}
.how-step {
  flex: 1; text-align: center; padding: 28px 20px 24px;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(147,181,198,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.how-step-icon { font-size: 36px; margin-bottom: 14px; }
.how-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 0.88rem; line-height: 1.5; color: var(--text-muted); }
.how-step-arrow {
  font-size: 22px; color: var(--blue-dark); opacity: 0.6;
  padding-top: 50px; flex-shrink: 0; padding-left: 10px; padding-right: 10px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .how-steps-row { flex-direction: column; align-items: center; gap: 16px; }
  .how-step-arrow { display: none; }
  .how-step { max-width: 300px; width: 100%; }
}

.how-extras {
  display: flex; justify-content: center; gap: 16px;
  max-width: 680px; margin: 0 auto;
  flex-wrap: wrap;
}
.how-extra {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border-radius: 30px; padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 0.85rem; color: var(--text-muted);
  border: 1px solid rgba(147,181,198,0.1);
}
.how-extra span:first-child { font-size: 1.1rem; }
.how-extra strong { color: var(--text); margin-right: 2px; }

/* ========== Pain Points (We Get It) ========== */
.pain-points {
  padding: 100px 0; background: var(--white);
}
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pain-card {
  background: var(--white); border-radius: var(--radius); padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid rgba(147,181,198,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover {
  transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.pain-quote {
  padding: 20px 28px 16px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem;
  color: var(--blue-dark); font-style: italic;
  border-bottom: 1px solid rgba(147,181,198,0.1);
  background: var(--blue-soft);
}
.pain-body { padding: 24px 28px 20px; flex: 1; }
.pain-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.pain-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.pain-solution {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--cream);
  border-top: 1px solid rgba(147,181,198,0.08);
  font-size: 0.82rem; font-weight: 600; color: var(--text);
}
.pain-solution-icon { font-size: 1.1rem; flex-shrink: 0; }
.pain-card-link {
  display: block; padding: 10px 28px; text-align: center;
  font-size: 0.82rem; font-weight: 700; color: var(--blue-dark);
  border-top: 1px solid rgba(147,181,198,0.08);
  transition: color 0.2s;
}
.pain-card-link:hover { color: var(--navy); }
.pain-card:nth-child(2) .pain-quote { background: var(--peach-soft); color: #B8764A; }
.pain-card:nth-child(3) .pain-quote { background: #F0E4EB; color: #8A5A6E; }

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; margin: 0 auto; }
}

/* ========== Partner Sync Section ========== */
.sync-section {
  padding: 100px 0; background: var(--white);
}
.sync-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.sync-visual {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.sync-phone {
  width: 150px; background: #3A5565; border-radius: 28px; padding: 5px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  position: relative;
}
.sync-phone-notch {
  width: 56px; height: 16px; background: #3A5565; border-radius: 0 0 10px 10px;
  margin: 0 auto; position: relative; z-index: 2;
}
.sync-phone-screen {
  background: var(--beige); border-radius: 22px; padding: 12px 10px 24px;
  margin-top: -8px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 280px;
}
.sync-header {
  font-size: 0.65rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sync-entry {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border-radius: 10px; padding: 8px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.sync-entry-icon { font-size: 0.9rem; flex-shrink: 0; }
.sync-entry div { display: flex; flex-direction: column; }
.sync-entry strong { font-size: 0.62rem; font-weight: 700; color: var(--text); }
.sync-entry span { font-size: 0.55rem; color: var(--text-muted); }
.sync-connector {
  display: flex; align-items: center; justify-content: center;
  width: 40px; flex-shrink: 0;
}
.sync-pulse {
  width: 12px; height: 12px; border-radius: 50%; background: var(--blue);
  animation: syncPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(147,181,198,0.4);
}
@keyframes syncPulse {
  0% { box-shadow: 0 0 0 0 rgba(147,181,198,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(147,181,198,0); }
  100% { box-shadow: 0 0 0 0 rgba(147,181,198,0); }
}
.sync-copy .section-tag { margin-bottom: 14px; }
.sync-copy h2 { margin-bottom: 12px; }
.sync-copy > p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.sync-perks { display: flex; flex-direction: column; gap: 12px; }
.sync-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 500; color: var(--text);
}
.sync-perks li span { font-size: 1rem; flex-shrink: 0; }

@media (max-width: 768px) {
  .sync-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .sync-visual { order: 2; }
  .sync-copy { order: 1; }
  .sync-perks { align-items: center; }
}

/* ========== Doctor Ready Section ========== */
.doctor-section {
  padding: 100px 0; background: var(--cream);
}
.doctor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.doctor-copy .section-tag { margin-bottom: 14px; }
.doctor-copy h2 { margin-bottom: 12px; }
.doctor-copy > p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.doctor-preview {
  background: var(--white); border-radius: 14px; padding: 20px 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(147,181,198,0.12);
}
.doctor-preview-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.doctor-preview-row:last-child { border-bottom: none; }
.dp-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.dp-value { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.doctor-link {
  display: inline-block; font-weight: 700; color: var(--blue-dark);
  font-size: 0.95rem; transition: color 0.2s;
}
.doctor-link:hover { color: var(--navy); }

.doctor-visual { display: flex; justify-content: center; }
.doctor-card-stack { position: relative; width: 260px; }
.doctor-card-bg {
  position: absolute; top: 12px; left: 12px; right: -12px; bottom: -12px;
  background: var(--blue-soft); border-radius: 18px; opacity: 0.5;
}
.doctor-card-front {
  position: relative; background: var(--white); border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid rgba(147,181,198,0.15);
}
.doctor-card-header {
  padding: 18px 22px; font-weight: 700; font-size: 0.95rem;
  color: var(--text); display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.doctor-card-header span { font-size: 1.2rem; }
.doctor-card-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; }
.visit-date { font-size: 0.7rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.03em; }
.visit-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.visit-stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--beige); border-radius: 12px; padding: 12px 8px;
}
.visit-stat-icon { font-size: 1.1rem; }
.visit-stat-val { font-size: 1.15rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.visit-stat-label { font-size: 0.65rem; font-weight: 600; color: var(--text-muted); }
.visit-divider { height: 1px; background: rgba(0,0,0,0.06); }
.visit-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; color: var(--text-light);
}
.visit-note-icon { font-size: 0.9rem; }

@media (max-width: 768px) {
  .doctor-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .doctor-visual { order: 2; }
  .doctor-copy { order: 1; }
  .doctor-preview-row { justify-content: center; gap: 16px; }
}

/* ========== Trust & Privacy Section ========== */
.trust-section {
  padding: 80px 0; background: var(--white);
}
.trust-content { text-align: center; max-width: 720px; margin: 0 auto; }
.trust-content .section-tag { margin-bottom: 14px; }
.trust-content h2 { margin-bottom: 12px; }
.trust-content > p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.trust-badges {
  display: flex; flex-direction: column; gap: 16px; max-width: 460px; margin: 0 auto;
}
.trust-badge {
  display: flex; align-items: flex-start; gap: 14px; text-align: left;
  background: var(--cream); border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid rgba(147,181,198,0.1);
}
.trust-badge-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.trust-badge div { display: flex; flex-direction: column; gap: 2px; }
.trust-badge strong { font-size: 0.88rem; color: var(--text); }
.trust-badge span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

@media (max-width: 480px) {
  .trust-badges { gap: 12px; }
}

/* ========== Origin Story / Social Proof ========== */
.origin-section {
  padding: 80px 0; background: var(--cream);
}
.origin-content {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.origin-quote {
  margin-bottom: 28px;
}
.origin-quote-mark {
  font-size: 4rem; line-height: 1; color: var(--blue); opacity: 0.3;
  font-family: Georgia, serif; display: block; margin-bottom: -16px;
}
.origin-quote blockquote {
  font-family: 'Nunito', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: var(--text); font-style: italic; line-height: 1.3;
  margin: 0 0 10px;
}
.origin-quote cite {
  font-size: 0.88rem; font-style: normal; color: var(--text-muted); font-weight: 500;
}
.origin-story {
  font-size: 1rem; line-height: 1.75; color: var(--text-muted);
  margin-bottom: 24px;
}
.origin-byline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700; color: var(--text);
  background: var(--white); padding: 10px 20px; border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}


/* ========== Final CTA ========== */
.final-cta {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #DBA07A 0%, #F2C4A4 40%, #FDDCBF 100%);
  color: #fff; text-align: center;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: #fff; margin-bottom: 14px; }
.cta-content p { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 400px; margin: 0 auto 32px; }
/* ========== Footer ========== */
.footer { padding: 48px 0; background: var(--navy); color: rgba(255,255,255,0.55); }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.footer-logo { height: 64px; width: auto; display: block; margin: 0 auto; }
.footer-brand p { font-size: 0.85rem; margin-top: 4px; color: rgba(255,255,255,0.4); }
.footer-trust {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; opacity: 0.35; }

/* ========== Blog Preview Section ========== */
.blog-preview-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: #fff;
}
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.blog-preview-card {
  display: flex;
  flex-direction: column;
  background: var(--cream, #FAF9F7);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  border: 1px solid rgba(44,62,80,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,62,80,0.1);
}
.blog-preview-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  margin-bottom: 0.85rem;
  width: fit-content;
}
.blog-preview-cat.sleep { background: rgba(122,157,176,0.12); color: #4a7a94; }
.blog-preview-cat.feeding { background: rgba(212,149,106,0.12); color: #a06a3a; }
.blog-preview-cat.milestones { background: rgba(92,184,92,0.12); color: #2d7a2d; }
.blog-preview-cat.tips { background: rgba(139,126,200,0.12); color: #5a4f8a; }
.blog-preview-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.blog-preview-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.blog-preview-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--blue-dark);
  transition: background 0.15s, color 0.15s;
}
.blog-preview-all:hover { background: var(--blue-dark); color: #fff; }
@media (max-width: 900px) {
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-preview-grid { grid-template-columns: 1fr; }
}

/* ========== What Pippy Tracks Section ========== */
.tracks-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: linear-gradient(170deg, #f0f5f8 0%, #faf6f2 100%);
}
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.track-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem 2rem;
  border: 1px solid rgba(122,157,176,0.08);
  box-shadow: 0 4px 20px rgba(44,62,80,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,62,80,0.1);
}
.track-icon {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 1rem;
  line-height: 1;
  background: linear-gradient(135deg, rgba(122,157,176,0.1) 0%, rgba(212,149,106,0.1) 100%);
}
.track-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy, #2C3E50);
  margin-bottom: 0.4rem;
}
.track-card p {
  font-size: 0.88rem;
  color: var(--text-muted, #5a6978);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .tracks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tracks-grid { grid-template-columns: 1fr; }
}
