/* ====================================================
   PROSPECT HOME BABY CARE
   Immersive, Photo-First Experience
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rose: #2B6CB0;
  --rose-dark: #1A4F8A;
  --rose-light: #EEF4FB;
  --cream: #FAF7F2;
  --sand: #F0EBE1;
  --warm-grey: #8B7D74;
  --charcoal: #2C2826;
  --text: #3D3530;
  --border: rgba(44, 40, 38, 0.12);
  --white: #FFFFFF;
  --gold: #C9A84C;
  --teal: #2E8B7A;
  --navy: #1A2A3A;
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.10);
  --shadow-sm: 0 3px 12px rgba(0, 0, 0, 0.07);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================
   TOP STRIP
   ========================================= */
.top-strip {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  padding: 9px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-strip strong {
  color: #fff;
}

.top-strip a {
  color: #C8DEFF;
  font-weight: 600;
  transition: color 0.2s;
}

.top-strip a:hover {
  color: #fff;
}

.strip-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 60px);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--rose);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  line-height: 1.2;
}

.logo-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  font-family: 'Nunito', sans-serif;
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.01em;
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn-rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 20px rgba(43, 108, 176, 0.30);
}

.btn-rose:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43, 108, 176, 0.40);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
}

.btn-xl {
  padding: 18px 48px;
  font-size: 1.08rem;
}

/* =========================================
   HERO — FULL BLEED IMAGE
   ========================================= */
.hero {
  position: relative;
  min-height: 96vh;
  overflow: clip;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero.loaded .hero-image {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(20, 18, 16, 0.92) 0%,
      rgba(20, 18, 16, 0.75) 35%,
      rgba(20, 18, 16, 0.20) 100%);
}

.hero-overlay-bottom {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 100px clamp(20px, 6vw, 100px) 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  padding: 0;
  max-width: 760px;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: #C8DEFF;
}

.hero-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s var(--ease);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  background: #20BF5C;
}

/* ---- Hero Form Card ---- */
.hero-form-card {
  flex: 0 0 380px;
  background: rgba(88, 86, 214, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.hero-form-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.3;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  background: #f0f0f0;
  border: none;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  box-sizing: border-box;
}

.hero-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.hero-form textarea {
  resize: none;
  margin-bottom: 12px;
}

.hero-form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  margin-bottom: 16px;
  cursor: pointer;
}

.hero-form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
  accent-color: #fff;
}

.hero-form-check a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.hero-form-btn {
  width: 100%;
  background: #f5222d;
  color: #fff;
  border: 2px solid #f5222d;
  border-radius: 6px;
  padding: 13px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-form-btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-form-msg {
  font-size: 0.82rem;
  margin: 6px 0 0;
  min-height: 18px;
  text-align: center;
}

/* ---- end Hero Form Card ---- */

.hero-social-proof {
  display: none;
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: 90px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 220px;
}

.proof-pill {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3.5s ease-in-out infinite;
}

.proof-pill:nth-child(2) {
  animation-delay: 1s;
  margin-left: 12px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.proof-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.proof-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.proof-text span {
  font-size: 0.72rem;
  color: var(--warm-grey);
}

/* =========================================
   TRUST STRIP (below hero)
   ========================================= */
.trust-strip {
  background: var(--charcoal);
  padding: 0 clamp(16px, 4vw, 60px);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-pill {
  flex: 1;
  min-width: 140px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.trust-pill:last-child {
  border-right: none;
}

.trust-pill-num {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #C8DEFF;
  line-height: 1;
  margin-bottom: 3px;
}

.trust-pill-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* =========================================
   SHARED SECTION STYLES
   ========================================= */
section {
  position: relative;
}

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--rose);
  border-radius: 2px;
}

h2.headline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h2.headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

.subheadline {
  font-size: 1.05rem;
  color: var(--warm-grey);
  max-width: 620px;
  line-height: 1.72;
}

/* =========================================
   FOUNDER SECTION — EDITORIAL SPLIT
   ========================================= */
.founder-section {
  background: var(--cream);
  overflow: hidden;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 540px;
}

.founder-photo-side {
  position: relative;
  overflow: hidden;
}

.founder-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
}

.founder-photo-side:hover img {
  transform: scale(1.04);
}

.founder-photo-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
}

.founder-photo-caption strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}

.founder-photo-caption span {
  font-size: 0.75rem;
  color: var(--warm-grey);
}

.founder-content-side {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.founder-quote-mark {
  font-family: 'Nunito', sans-serif;
  font-size: 8rem;
  line-height: 0.7;
  color: var(--rose);
  opacity: 0.2;
  margin-bottom: -16px;
  padding-left: 4px;
}

.founder-quote {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 28px;
}

.founder-sig {
  font-size: 0.85rem;
  color: var(--warm-grey);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.founder-sig strong {
  display: block;
  color: var(--charcoal);
  font-size: 1rem;
  margin-bottom: 2px;
}

/* =========================================
   PROBLEM SECTION — DARK IMMERSIVE
   ========================================= */
.problem-section {
  background: var(--charcoal);
  overflow: hidden;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.problem-content {
  padding: clamp(50px, 6vw, 96px) clamp(30px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-content .eyebrow {
  color: #C8DEFF;
}

.problem-content .eyebrow::after {
  background: #C8DEFF;
}

.problem-content h2.headline {
  color: #fff;
}

.problem-content .subheadline {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-style: italic;
  transition: all 0.25s;
  cursor: default;
}

.pain-list li:hover {
  background: rgba(43, 108, 176, 0.12);
  border-color: rgba(43, 108, 176, 0.3);
}

.pain-list li .p-em {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.problem-photo-side {
  position: relative;
  overflow: hidden;
}

.problem-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.problem-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44, 40, 38, 0.7) 0%, transparent 60%);
}

.problem-stat-card {
  position: absolute;
  bottom: 32px;
  right: 28px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.problem-stat-card .big-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}

.problem-stat-card .big-label {
  font-size: 0.75rem;
  color: var(--warm-grey);
  margin-top: 4px;
}

/* =========================================
   SERVICES — MAGAZINE GRID
   ========================================= */
.services-section {
  background: var(--white);
}

.services-intro {
  margin-bottom: 28px;
}

.services-slider-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 16px;
  cursor: grab;
}

.services-slider-container:active {
  cursor: grabbing;
}

.services-slider {
  display: flex;
  gap: 24px;
  padding: 0 clamp(20px, 6vw, 100px);
  will-change: transform;
}

.svc-card-new {
  flex: 0 0 clamp(280px, 30vw, 360px);
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.svc-card-new:hover {
  transform: translateY(-8px);
}

.svc-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.svc-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.95) 100%
  );
  border-radius: 20px;
  pointer-events: none;
}

.svc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

.svc-card-new:hover .svc-img-box img {
  transform: scale(1.05);
}

.svc-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 20px;
  z-index: 1;
  text-align: left;
}

.svc-card-new h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
}

.svc-card-new .svc-range {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.svc-card-new .svc-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0;
}

.svc-body p {
  font-size: 0.87rem;
  color: var(--warm-grey);
  line-height: 1.65;
  margin-bottom: 12px;
}

.svc-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.svc-features li {
  font-size: 0.82rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}

.svc-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-weight: 700;
}

/* Overlay-style card (image with text over) */
.svc-card.overlay-style {
  background: var(--charcoal);
  color: #fff;
}

.svc-card.overlay-style .svc-body-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: #fff;
}

.svc-card.overlay-style .svc-body-overlay h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.svc-card.overlay-style .svc-body-overlay p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.svc-card.overlay-style .svc-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
}

.svc-card.overlay-style .svc-photo {
  height: 100%;
  min-height: 220px;
  filter: brightness(0.75);
}

/* =========================================
   WHY US — EVIDENCE-BASED
   ========================================= */
.why-section {
  background: var(--cream);
  overflow: hidden;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.why-image-side {
  position: relative;
  overflow: hidden;
}

.why-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.why-image-side:hover img {
  transform: scale(1.04);
}

.why-guarantee-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 100px;
  height: 100px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px;
  line-height: 1.4;
}

.why-guarantee-badge b {
  font-size: 1.2rem;
  display: block;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
}

.why-content-side {
  padding: clamp(40px, 6vw, 80px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: all 0.2s;
}

.why-point:first-child {
  padding-top: 0;
}

.why-point:last-child {
  border-bottom: none;
}

.why-point:hover {
  padding-left: 6px;
}

.why-point-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.why-point:hover .why-point-icon {
  background: var(--rose);
  box-shadow: 0 4px 16px rgba(43, 108, 176, 0.35);
}

.why-point-text h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.why-point-text p {
  font-size: 0.85rem;
  color: var(--warm-grey);
  line-height: 1.6;
}

/* =========================================
   TESTIMONIALS — PHOTO CARDS
   ========================================= */
.testimonials-section {
  background: #fff;
}

.testimonials-section .eyebrow {
  color: var(--rose);
}

.testimonials-section .eyebrow::after {
  background: var(--rose);
}

.testimonials-section h2.headline {
  color: var(--charcoal);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.tcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.tcard::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: rgba(43, 108, 176, 0.15);
  line-height: 1;
}

.tcard:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(43, 108, 176, 0.35);
}

.testimonials-marquee {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
  overflow: hidden;
  padding: 20px 0;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
}

.marquee-left {
  animation: scroll-left 50s linear infinite;
}

.marquee-right {
  animation: scroll-right 50s linear infinite;
}

.testimonials-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 2)); }
}

@keyframes scroll-right {
  0% { transform: translateX(calc(-100% / 2)); }
  100% { transform: translateX(0); }
}

.tcard-new {
  flex: 0 0 clamp(300px, 35vw, 420px);
  background: #fcfcfc;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 16px;
  white-space: normal;
}

.t-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 48px;
  height: 48px;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.t-info strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #1a1a1a;
}

.t-info span {
  font-size: 0.8rem;
  color: #666;
}

.tcard-new p {
  font-size: 0.95rem;
  color: #222;
  line-height: 1.6;
  font-style: italic;
}

.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tcard-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.tcard-author-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.testimonials-rating {
  margin-top: 40px;
  text-align: center;
  padding: 24px;
  border-top: 1px solid #eee;
  color: #555;
  font-size: 0.95rem;
}

.testimonials-rating strong {
  color: #1a1a1a;
  font-size: 1.05rem;
}

/* =========================================
   AREAS
   ========================================= */
.areas-section {
  background: var(--cream);
}

.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}

.area-tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.87rem;
  color: var(--text);
  font-weight: 500;
  cursor: default;
  transition: all 0.2s var(--ease);
}

.area-tag:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(43, 108, 176, 0.28);
}

.areas-note {
  padding: 18px 24px;
  background: #fff;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--warm-grey);
  border-left: 3px solid var(--rose);
}

.areas-note strong {
  color: var(--charcoal);
}

/* =========================================
   PRICING
   ========================================= */
.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.price-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.price-card.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

.price-card.featured .price-label {
  color: rgba(255, 255, 255, 0.55);
}

.price-card.featured h3 {
  color: #fff;
}

.price-card.featured .price-amount {
  color: #C8DEFF;
}

.price-card.featured .price-note {
  color: rgba(255, 255, 255, 0.5);
}

.featured-ribbon {
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--rose);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(38deg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 8px;
}

.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.25;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 4px;
}

.price-note {
  font-size: 0.78rem;
  color: var(--warm-grey);
  margin-bottom: 18px;
}

.price-includes {
  list-style: none;
  padding: 0;
  font-size: 0.83rem;
  color: var(--warm-grey);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.price-card.featured .price-includes {
  color: rgba(255, 255, 255, 0.55);
}

.price-includes li {
  padding-left: 16px;
  position: relative;
}

.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.pricing-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--r-md);
}

.promise-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--charcoal);
}

.promise-badge span {
  font-size: 1.1rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-image-side {
  position: sticky;
  top: 100px;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
}

.faq-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.active {
  border-color: var(--rose);
  box-shadow: 0 4px 20px rgba(43, 108, 176, 0.12);
}

.faq-q {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--rose);
}

/* ---- Font Awesome icon helpers ---- */
.proof-icon i {
  font-size: 1rem;
  color: var(--rose);
}

.p-em i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.why-point-icon i {
  font-size: 1.15rem;
  color: var(--warm-grey);
  transition: color 0.2s;
}

.why-point:hover .why-point-icon i {
  color: #fff;
}

.tcard-stars i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-right: 1px;
}

.tcard-avatar i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.promise-badge i {
  color: var(--teal);
  font-size: 0.95rem;
}

.cta-box-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-box-icon i {
  font-size: 1rem;
  color: #C8DEFF;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--warm-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.faq-item.active .faq-toggle {
  background: var(--rose);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 22px;
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.72;
}

.faq-item.active .faq-a {
  max-height: 300px;
  padding-bottom: 18px;
}

/* =========================================
   FINAL CTA — FULL BLEED
   ========================================= */
.cta-section {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(26, 20, 18, 0.95) 0%,
      rgba(26, 20, 18, 0.7) 60%,
      rgba(26, 20, 18, 0.5) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 80px clamp(20px, 6vw, 100px);
  width: 100%;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-left h2 em {
  font-style: italic;
  font-weight: 300;
  color: #C8DEFF;
}

.cta-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-phones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-phone-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.cta-phone-box a {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.cta-phone-box span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  display: block;
}

/* Contact Form */
.cta-form-box {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}

.cta-form-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.cta-form-box p {
  font-size: 0.85rem;
  color: var(--warm-grey);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fg {
  margin-bottom: 12px;
}

.fg label {
  display: block;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: all 0.2s;
  outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.08);
}

.fg textarea {
  resize: vertical;
  min-height: 72px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(212, 82, 106, 0.3);
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.form-submit-btn:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 82, 106, 0.40);
}

.form-privacy {
  text-align: center;
  font-size: 0.74rem;
  color: var(--warm-grey);
  margin-top: 10px;
}

#form-success-msg {
  display: none;
  text-align: center;
  padding: 16px;
  background: #E6F9F6;
  border-radius: var(--r-md);
  color: var(--teal);
  font-weight: 600;
  margin-top: 12px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #111010;
  color: rgba(255, 255, 255, 0.55);
  padding: 56px clamp(16px, 5vw, 80px) 28px;
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h5 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #C8DEFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}

/* =========================================
   FLOATING WA
   ========================================= */
.wa-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  font-size: 1.6rem;
  transition: all 0.25s var(--ease);
  animation: wa-float 3s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes wa-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {

  .founder-layout,
  .problem-layout,
  .why-layout,
  .cta-inner,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .founder-photo-side {
    height: 320px;
  }

  .problem-photo-side {
    height: 300px;
  }

  .why-image-side {
    height: 320px;
  }

  .faq-image-side {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-social-proof {
    display: none;
  }
}

@media (max-width: 640px) {
  .navbar {
    height: 62px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    flex-direction: column;
    padding: 90px 20px 40px;
    gap: 28px;
    align-items: stretch;
  }

  .hero-form-card {
    flex: none;
    width: 100%;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  section .section-wrap {
    padding: 36px 20px;
  }

  .trust-strip-inner {
    flex-wrap: wrap;
  }

  .trust-pill {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .top-strip {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-form-box {
    padding: 28px 20px;
  }
}