/* ══════════════════════════════════════════════════════
   אירה פרלמן | מיילדת
   1:1 inspired by midwifejo.com.au
   RTL · Mobile-first · WCAG 2.1 AA
   ══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  /* Exact colors from Midwife Jo */
  --cream:   #FFF4EC;   /* nav + main bg */
  --blush:   #E2BFB2;   /* intro, extra-service, instagram */
  --teal:    #395C65;   /* services, credentials, footer */
  --gold:    #F0C87A;   /* about section */
  --copper:  #C9963E;   /* accent / links */
  --dark:    #2C2C2C;
  --mid:     #6B6B6B;
  --white:   #FFFFFF;

  /* Typography */
  --serif:   'Frank Ruhl Libre', 'David', Georgia, serif;
  --sans:    'Heebo', 'Arial Hebrew', Arial, sans-serif;

  --nav-h: 72px;
}

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

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

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  direction: rtl;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
h1, h2, h3 { font-weight: inherit; }

/* ── ACCESSIBILITY ───────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -200%;
  right: 1rem;
  z-index: 9999;
  background: var(--teal);
  color: var(--white);
  padding: .6em 1.2em;
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .1em;
}
.skip-link:focus { top: .5rem; }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #1e1515;
}

/* Slides fill the full hero */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--bg) center / cover no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
/* Photo slide — portrait image, cover fills mobile naturally */
.hero-slide--photo {
  background: var(--bg) center 5% / cover no-repeat;
  background-color: #2a1e1e;
}
/* Video card in services overview — same look as other cards */
.service-card-vid {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.hero-slide.active { opacity: 1; }

/* Gradient overlay — dark at bottom, fades out toward face */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.55) 30%,
    rgba(0,0,0,.15) 55%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* Text — sits over gradient at the bottom */
.hero-content {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: clamp(5.5rem, 10svh, 9rem);
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1.5rem, 6vw, 4rem);
  pointer-events: none;
}
/* שירותים — כותרת ראשית גדולה */
.hero-main {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  color: var(--white);
  line-height: 1.35;
  letter-spacing: .01em;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
  margin-bottom: 0;
}
/* רשימת שירותים בהירו */
.hero-services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .65rem;
  margin-top: 1.4rem;
  pointer-events: auto;
  flex-wrap: nowrap;
}
.hero-services a {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(.78rem, 1.8vw, .9rem);
  color: rgba(255,255,255,.88);
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
  pointer-events: auto;
  white-space: nowrap;
  /* touch target min 44px */
  padding: .8rem .15rem;
}
.hero-services a:hover { color: var(--gold); }
.hero-services span {
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  flex-shrink: 0;
}

/* שם + תפקיד — עדין */
.hero-tagline {
  font-family: var(--sans);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(.78rem, 1.6vw, .92rem);
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
  margin-top: .9rem;
}
/* כפתור — עדין, משני */
.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: .55rem 1.6rem;
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.7);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.72rem, 1.3vw, .8rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: all;
  transition: background .25s, color .25s, border-color .25s;
}
.hero-cta:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}

/* Bottom strip */
.hero-strip {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
}
.hero-strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.hero-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 72px);
  line-height: 1;
  opacity: .9;
  min-width: 2.5ch;
}
.hero-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(.65rem, 1.1vw, .8rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.35);
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .95rem;
  opacity: .8;
}
.hero-prev, .hero-next {
  color: var(--white);
  padding: .7rem .9rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.hero-prev:hover, .hero-next:hover { opacity: .6; }

/* ══════════════════════════════════════════════════════
   NAV — sticky below hero
   ══════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.nav-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  letter-spacing: .02em;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.15;
}
.nav-logo-name {
  display: block;
}
.nav-logo-title {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .5;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .95rem .6rem;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Full-screen nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--teal);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.nav-drawer.open {
  opacity: 1;
  visibility: visible;
}
.nav-drawer ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.nav-drawer a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .75;
  transition: opacity .2s;
}
.nav-drawer a:hover,
.nav-drawer a.active { opacity: 1; }

.nav-drawer-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: var(--white);
  font-size: 1.4rem;
  padding: .5rem .75rem;
  opacity: .65;
  transition: opacity .2s;
}
.nav-drawer-close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════════════════════ */

/* Outlined CTA button — matches MJ's "LET'S MEET" */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;   /* never stretch in flex columns */
  padding: .85em 2.8em;
  min-height: 44px;
  border: 1.5px solid var(--dark);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  transition: background .25s, color .25s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

/* ══════════════════════════════════════════════════════
   02 · INTRO — blush, split layout
   ══════════════════════════════════════════════════════ */
.intro {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 100vh;
  background: var(--blush);
}

/* Photo fills left column (RTL: right column) */
.intro-photo {
  background: linear-gradient(160deg, #c4a898 0%, #a88878 100%);
  /* placeholder — replace with: background-image: url(intro.jpg); background-size: cover; background-position: center; */
  min-height: 400px;
}

.intro-text {
  position: relative;
  padding: clamp(4rem, 9vw, 9rem) clamp(2.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  overflow: hidden;
}

/* Large decorative & — like MJ's background ampersand */
.deco-amp {
  position: absolute;
  top: -5%;
  left: -8%;        /* left in RTL = near the text column start */
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(14rem, 28vw, 380px);
  color: rgba(0,0,0,.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.intro-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 80px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.intro-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  color: var(--dark);
  max-width: 36ch;
  position: relative;
  z-index: 1;
}

.intro-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.intro-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .65;
  transition: opacity .2s;
}
.intro-links a:hover { opacity: 1; }
.intro-links span { color: var(--dark); opacity: .3; }


/* ══════════════════════════════════════════════════════
   03 · SERVICES — teal background
   ══════════════════════════════════════════════════════ */
.services-block {
  background: var(--teal);
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3.5rem;
}

.services-header {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.services-main {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1;
}
.services-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.9rem, 1.4vw, 1.1rem);
  opacity: .7;
  letter-spacing: .05em;
}
.services-sub-italic {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  opacity: .65;
}

/* 3-column video cards */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg) center / cover no-repeat;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.04);
}

/* Teal overlay */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(57, 92, 101, .52);
  transition: background .3s;
}
.service-card:hover::after {
  background: rgba(57, 92, 101, .35);
}

.service-card-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  padding: 1rem;
}

/* ── עיבוד לידה strip card ── */
.service-strip-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card--strip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2.5rem 2rem;
  background: #2b454e;
  cursor: pointer;
  transition: background .3s;
}
.service-card--strip:hover { background: #3d6470; }
.service-card-strip-label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
}

/* Ghost / outline decorative number */
.services-deco-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(7rem, 20vw, 260px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.2);
  text-stroke: 1px rgba(255,255,255,.2);
  line-height: 1;
  letter-spacing: -.02em;
  user-select: none;
  pointer-events: none;
  margin-top: -1rem;
}

/* ══════════════════════════════════════════════════════
   SERVICES MARQUEE — ticker strip above service details
   ══════════════════════════════════════════════════════ */
.services-marquee {
  background: var(--teal);
  overflow: hidden;
  padding: .7rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.services-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  white-space: nowrap;
  animation: svc-ticker 22s linear infinite;
}
.services-marquee-track span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.sm-dot {
  color: var(--gold) !important;
  opacity: .7;
  font-size: .65rem !important;
  letter-spacing: 0 !important;
}
@keyframes svc-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   03b · SERVICE DETAIL — cream / white alternating
   ══════════════════════════════════════════════════════ */
.svc-detail {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.svc-detail--cream { background: var(--cream); }
.svc-detail--white { background: var(--white); }

.svc-detail-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

/* Ghost decorative number */
.svc-detail-num {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(9rem, 25vw, 280px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(57,92,101,.1);
  text-stroke: 1px rgba(57,92,101,.1);
  line-height: 1;
  letter-spacing: -.02em;
  user-select: none;
  pointer-events: none;
  position: absolute;
  inset-inline-start: -1.5rem;
  top: -2.5rem;
  z-index: 0;
}

.svc-detail-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.svc-detail-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--dark);
  padding-top: clamp(5rem, 12vw, 9rem); /* clear the ghost number */
  /* slide-in from right */
  opacity: 0;
  transform: translateX(72px);
  transition: opacity 1.5s cubic-bezier(.22,1,.36,1), transform 1.5s cubic-bezier(.22,1,.36,1);
}
.svc-detail-title.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Italic fear-quotes opening */
.svc-detail-quotes {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.25rem 1.5rem;
  border-inline-start: 3px solid var(--teal);
  background: rgba(57,92,101,.05);
  border-radius: 0 4px 4px 0;
}
.svc-detail-quotes p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: var(--teal);
}

.svc-detail-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  line-height: 1.9;
  color: var(--dark);
}

.svc-detail-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(.75rem, 1.1vw, .85rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: .5rem;
}

.svc-fit-heading {
  margin-top: 2.5rem;
}

.svc-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.svc-detail-list li {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  color: var(--dark);
  padding-inline-start: 1.5rem;
  position: relative;
}
.svc-detail-list li::before {
  content: '—';
  position: absolute;
  inset-inline-start: 0;
  color: var(--copper);
  font-weight: 400;
}

/* ── TOOL CARDS (s01) ──────────────────────────────── */
.tools-section { margin: 1.5rem 0 2rem; }
.tools-label {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: .9rem;
}
.tool-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.tool-card {
  background: rgba(57,92,101,.07);
  border-radius: 6px;
  padding: .9rem .7rem;
  text-align: center;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--dark);
  line-height: 1.3;
}
.decision-card {
  background: var(--teal);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: 1.5rem;
}
.decision-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
}
.decision-sub {
  font-family: var(--sans);
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

/* ── TAKEAWAY CARDS (s01) ───────────────────────────── */
.takeaway-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin: 1rem 0 2rem;
}
.takeaway-card {
  border: 1px solid rgba(57,92,101,.15);
  border-radius: 6px;
  padding: .9rem 1rem;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--dark);
  line-height: 1.5;
}
@media (max-width: 540px) {
  .tool-cards { grid-template-columns: repeat(2, 1fr); }
  .takeaway-cards { grid-template-columns: 1fr; }
}

/* ── BONUS CARD ──────────────────────────────────────── */
.svc-bonus-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--dark);
  margin: 2.5rem 0 .4rem;
  line-height: 1.3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.svc-bonus-heading::before,
.svc-bonus-heading::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1.5px;
  background: var(--blush);
}

.svc-bonus-card {
  margin: 2.5rem 0;
  background: linear-gradient(135deg, #2b3e42 0%, var(--teal) 100%);
  border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2.2rem) clamp(1.5rem, 5vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

/* decorative circle in the corner */
.svc-bonus-card::before {
  content: '';
  position: absolute;
  inset-inline-end: -2rem;
  top: -2.5rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.svc-bonus-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .65rem;
}

.svc-bonus-label::before {
  content: '★';
  font-size: .9rem;
  line-height: 1;
}

.svc-bonus-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.4;
}

.svc-bonus-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.88rem, 1.6vw, .98rem);
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin: 0;
}
.svc-bonus-list {
  list-style: none;
  margin-top: .9rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.svc-bonus-list li {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.83rem, 1.5vw, .92rem);
  color: rgba(255,255,255,.7);
  padding-inline-start: 1.1rem;
  position: relative;
}
.svc-bonus-list li::before {
  content: '—';
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-weight: 400;
}

.svc-detail-price {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.82rem, 1.2vw, .95rem);
  line-height: 1.7;
  color: var(--mid);
}
.svc-detail-price p:first-child {
  font-weight: 500;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: var(--dark);
}

/* svc-components removed — now uses shared .fit-section/.fit-list/.fit-item */

.s02-how-heading {
  font-family: var(--serif) !important;
  font-weight: 400 !important;
  font-size: clamp(1.5rem, 3.5vw, 2rem) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--dark) !important;
  margin-top: 3rem !important;
  margin-bottom: .25rem !important;
}

.s02-phase-num {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
  color: var(--teal);
  opacity: .22;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}

/* ── s02-outcome — Aurora K1 ── */
.s02-outcome {
  margin: 3rem 0 2.5rem;
  background: #0b1c22;
  padding: 4rem 2.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.s02-outcome-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}
.s02-outcome-blob1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(57,92,101,.9), transparent 70%);
  top: -90px; right: -110px;
  animation: s02-blob1 9s ease-in-out infinite;
}
.s02-outcome-blob2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,150,62,.75), transparent 70%);
  bottom: -70px; left: -90px;
  animation: s02-blob2 11s ease-in-out infinite;
}
.s02-outcome-blob3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(240,200,122,.5), transparent 70%);
  top: 45%; right: 32%;
  animation: s02-blob3 13s ease-in-out infinite;
}
@keyframes s02-blob1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(-45px, 55px) scale(1.18); }
  66%       { transform: translate(28px, -28px) scale(.88); }
}
@keyframes s02-blob2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(55px, -45px) scale(1.12); }
  66%       { transform: translate(-28px, 28px) scale(1.22); }
}
@keyframes s02-blob3 {
  0%, 100% { transform: translate(0,0) scale(1);    opacity: .45; }
  50%       { transform: translate(45px, -55px) scale(1.35); opacity: 1; }
}
.s02-outcome-text {
  position: relative;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, rgba(240,200,122,1) 52%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 250% 100%;
  animation: s02-shimmer 3s ease-in-out infinite;
  margin: 0;
}
@keyframes s02-shimmer {
  0%   { background-position: 120% 0; }
  50%  { background-position: -20% 0; }
  100% { background-position: 120% 0; }
}
.s02-outcome-sub {
  position: relative;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.8rem, 1.5vw, .92rem);
  color: rgba(255,255,255,.5);
  line-height: 1.95;
  letter-spacing: .04em;
  animation: s02-float 5s ease-in-out infinite;
}
@keyframes s02-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

.svc-detail-cta-block {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .5rem;
}
.svc-detail-cta-lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--dark);
}
.svc-detail-cta-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.85rem, 1.2vw, 1rem);
  color: var(--mid);
  margin-bottom: .5rem;
}

@media (max-width: 600px) {
  .svc-detail-num { font-size: clamp(7rem, 30vw, 180px); }
}

/* ══════════════════════════════════════════════════════
   04 · ABOUT — gold background
   ══════════════════════════════════════════════════════ */
.about {
  background: #8AAFB8;
  padding: clamp(3rem, 9vw, 8rem) clamp(1.25rem, 5vw, 4rem);
}


.about-text {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

/* Floating circle photo */
.about-photo-float {
  margin-bottom: .5rem;
}
.about-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--bg) center 20% / cover no-repeat;
  box-shadow:
    0 20px 50px rgba(0,0,0,.22),
    0 6px 18px rgba(0,0,0,.14);
  animation: floatBob 5s ease-in-out infinite;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Section eyebrow label */
.about-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .6;
}

/* "My approach" style italic label */
.about-script {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--dark);
  opacity: .7;
}

.about-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.25;
  color: var(--dark);
}

.about-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height: 1.85;
  color: var(--dark);
  max-width: 52ch;
  text-align: center;
}

/* ══════════════════════════════════════════════════════
   05 · CREDENTIALS — teal logo strip
   ══════════════════════════════════════════════════════ */
.credentials {
  background: var(--teal);
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem);
}
.credentials-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
  color: var(--white);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: .02em;
}
/* תיבות הסמכה — ביטוי שלם בשורה אחת */
.stat-item--cert {
  justify-content: center;
}
.stat-cert {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.75rem, 1.3vw, 1rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-align: center;
  line-height: 1.5;
}
.stat-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.7rem, 1.1vw, .78rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
  max-width: 12ch;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   06 · QUOTE — full-bleed dark photo
   ══════════════════════════════════════════════════════ */
.quote-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background: var(--bg) center / cover no-repeat;
}
.quote-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
}
.quote-block {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem clamp(2rem, 10vw, 12rem);
  max-width: 900px;
}
.quote-block p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.quote-block cite {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-style: normal;
}

/* ══════════════════════════════════════════════════════
   07 · EXTRA SERVICE (עיבוד לידה) — blush, split
   ══════════════════════════════════════════════════════ */
.extra-service {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--blush);
}
.extra-service--no-media {
  grid-template-columns: 1fr;
}
.extra-service--no-media .extra-text {
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .extra-service {
    grid-template-columns: 1fr 1fr;
  }
  .extra-service--no-media {
    grid-template-columns: 1fr;
  }
}
.extra-photo {
  background: #1a2a30;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}
.extra-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.extra-text {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) clamp(2.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  overflow: hidden;
}
.extra-deco-num {
  position: absolute;
  top: 1rem;
  inset-inline-end: clamp(2.5rem, 6vw, 6rem);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(5rem, 12vw, 150px);
  color: rgba(0,0,0,.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.extra-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 64px);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--dark);
  position: relative;
  z-index: 1;
  /* slide-in from right — same as svc-detail-title */
  opacity: 0;
  transform: translateX(72px);
  transition: opacity 1.5s cubic-bezier(.22,1,.36,1), transform 1.5s cubic-bezier(.22,1,.36,1);
}
.extra-heading.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.extra-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  max-width: 38ch;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════
   08 · INSTAGRAM — blush, split
   ══════════════════════════════════════════════════════ */
.instagram-section {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 70vh;
  background: var(--blush);
  border-top: 1px solid rgba(0,0,0,.06);
}
.ig-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 1.5rem;
}
.ig-placeholder {
  width: min(300px, 75%);
  aspect-ratio: 1;
  background: rgba(0,0,0,.12);
  border-radius: 3px;
}
.ig-follow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .6;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity .2s;
}
.ig-follow:hover { opacity: 1; }

.ig-text {
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}
.ig-sub {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  opacity: .6;
  color: var(--dark);
}
.ig-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 110px);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: .9;
  color: var(--dark);
}

/* ══════════════════════════════════════════════════════
   08 · YOUTUBE
   ══════════════════════════════════════════════════════ */
.yt-section {
  background: var(--teal);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 5rem);
}
.yt-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.yt-eyebrow {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.yt-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.25;
}
.yt-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.88rem, 1.3vw, 1rem);
  color: rgba(255,255,255,.65);
  margin-bottom: .5rem;
}
.yt-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}
.yt-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Instagram strip ── */
.ig-strip {
  background: var(--cream);
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,.07);
}
.ig-strip-text {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  color: var(--dark);
  opacity: .7;
  flex: 1;
  min-width: 180px;
}
.ig-strip-mid {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.ig-strip-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
}
.ig-strip-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mid);
}
.ig-strip-btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ig-strip { justify-content: center; text-align: center; }
  .ig-strip-text { text-align: center; }
}

/* ══════════════════════════════════════════════════════
   08b · PRODUCTS — מוצרים מומלצים
   ══════════════════════════════════════════════════════ */
.products-section {
  background: var(--white);
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 6vw, 5rem);
}
.products-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.products-eyebrow {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
}
.products-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  color: var(--dark);
  text-align: center;
  margin-bottom: 2rem;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}
.product-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg) center / cover no-repeat;
}
.product-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.product-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--dark);
}
.product-desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.88rem, 1.2vw, 1rem);
  line-height: 1.8;
  color: var(--dark);
  flex: 1;
}
.product-coupon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .75rem;
  background: rgba(57,92,101,.08);
  border-inline-start: 3px solid var(--teal);
  padding: .75rem 1rem;
  border-radius: 0 4px 4px 0;
}
.product-coupon-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  width: 100%;
}
.product-coupon-code {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: var(--teal);
  letter-spacing: .05em;
  direction: ltr;
}
.product-coupon-benefit {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .85rem;
  color: var(--dark);
}
.product-btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   09 · TESTIMONIALS
   ══════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2rem, 4vw, 3.5rem);
  overflow-x: clip;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}
.testimonials-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--dark);
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}

/* ── WhatsApp gallery ── */
.wa-gallery-wrap {
  margin-top: .5rem;
}
.wa-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1.4rem;
  padding: 1rem clamp(1.5rem, 6vw, 5rem) 2rem;
  scrollbar-width: none;
}
.wa-gallery::-webkit-scrollbar { display: none; }

.wa-frame {
  flex: 0 0 min(68vw, 210px);
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(0,0,0,.2), 0 4px 12px rgba(0,0,0,.12);
  transform: rotate(-2deg);
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.wa-frame:nth-child(2n)   { transform: rotate(1.5deg);  }
.wa-frame:nth-child(3n)   { transform: rotate(-0.8deg); }
.wa-frame:nth-child(4n)   { transform: rotate(2.2deg);  }
.wa-frame:nth-child(5n)   { transform: rotate(-1.8deg); }
.wa-frame:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  z-index: 2;
}
.wa-frame img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.wa-hint {
  text-align: center;
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--dark);
  opacity: .38;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .25rem;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.testimonials-ig-btn {
  display: block;
  text-align: center;
  margin: 1.75rem auto 0;
  width: fit-content;
  text-decoration: none;

  /* ── Liquid glass ── */
  padding: .75rem 1.5rem;
  border-radius: 50px;
  white-space: nowrap;
  background:
    linear-gradient(145deg, rgba(255,255,255,.22) 0%, transparent 55%),
    linear-gradient(145deg, rgba(43,69,78,.82) 0%, rgba(30,52,60,.72) 100%);
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow:
    0 10px 36px rgba(43,69,78,.38),
    0 3px 10px rgba(0,0,0,.16),
    inset 0 1.5px 0 rgba(255,255,255,.35),
    inset 0 -1px 0 rgba(0,0,0,.12);
  transform: translateY(0);
  transition: transform .3s ease, box-shadow .3s ease;

  /* ── Text ── */
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(.85rem, 1.5vw, .95rem);
  color: rgba(255,255,255,.92);
  letter-spacing: .08em;
}
.testimonials-ig-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 48px rgba(43,69,78,.48),
    0 5px 16px rgba(0,0,0,.2),
    inset 0 1.5px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.12);
  color: #fff;
}

/* ══════════════════════════════════════════════════════
   10 · CTA — cream background
   ══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--cream);
  padding: clamp(6rem, 12vw, 14rem) clamp(2rem, 8vw, 12rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: .01em;
  color: var(--dark);
  line-height: 1.3;
}
.cta-script {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 2.2rem);
  color: var(--dark);
  line-height: 1.5;
}
.cta-script em {
  font-style: italic;
}
.btn-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 1em 3.5em;
  border: 1.5px solid var(--dark);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark);
  transition: background .25s, color .25s;
}
.btn-cta:hover {
  background: var(--dark);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════
   FOOTER — teal background
   ══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--teal);
  color: var(--white);
  position: relative;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4.5rem) 0;
}

/* Decorative arc at top (matches MJ's rounded footer top) */
.footer-arc {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 64px;
  background: var(--teal);
  border-radius: 64px 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact column */
.footer-phone {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: .04em;
  min-height: 1.5em; /* placeholder space */
}
.footer-role {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .55;
  margin-top: .3rem;
}
.footer-loc-label {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  opacity: .65;
  margin-top: 1.75rem;
}
.footer-loc {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.9;
  opacity: .5;
  margin-top: .4rem;
  min-height: 2em;
}
.footer-socials {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.75rem;
}
.footer-socials a {
  color: var(--white);
  opacity: .6;
  transition: opacity .2s;
  /* touch target min 44px */
  padding: .7rem;
  margin: -.7rem;
}
.footer-socials a:hover { opacity: 1; }

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
}
.footer-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 64px);
  color: var(--white);
  line-height: 1;
  letter-spacing: .02em;
}
.footer-tagline {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(.95rem, 1.6vw, 1.3rem);
  opacity: .6;
  line-height: 1.5;
}

/* Nav column */
.footer-nav-col {}
.footer-nav-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.25rem;
  opacity: .65;
  margin-bottom: 1.25rem;
  padding-right: 0;
}
.footer-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
}
.footer-nav-cols a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .55;
  transition: opacity .2s;
  /* touch target min 44×44 */
  padding: .5rem .4rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
}
.footer-nav-cols a:hover { opacity: 1; }

.footer-copy {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .45;
}

.footer-accessibility {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem) 2rem;
  text-align: center;
  font-family: var(--sans);
  font-size: .72rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
}
.footer-accessibility a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;       /* left = prominent in RTL reading flow */
  z-index: 50;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  transform: scale(1.09);
  box-shadow: 0 6px 26px rgba(37,211,102,.55);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — tablet & mobile
   ══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Stack all split sections */
  .intro,
  .extra-service,
  .instagram-section {
    grid-template-columns: 1fr;
  }

  /* Photos get fixed height when stacked */
  .intro-photo,
  .extra-photo {
    height: 56vw;
    min-height: 260px;
  }
  /* Services: single column */
  .services-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  /* Deco amp smaller */
  .deco-amp {
    font-size: 45vw;
    top: -2%;
    left: -12%;
  }

  /* Instagram: stack reversed (image below heading on mobile) */
  .ig-text { order: 1; padding-bottom: 1rem; }
  .ig-card  { order: 2; }

  /* Footer: single column */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand { order: -1; }
  .footer-socials { justify-content: center; }
  .footer-nav-cols { justify-items: center; }
}

/* Services tablet: 3 columns */
@media (min-width: 601px) and (max-width: 960px) {
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
  }
}

@media (max-width: 600px) {
  .hero-main { font-size: clamp(1.8rem, 7.5vw, 2.8rem); }
  .services-cards { max-width: 100%; }
  .quote-block { padding: 3.5rem 1.5rem; }
  .cta-section { padding: 5rem 1.5rem; }
  .footer-arc { display: none; }

  /* Credentials: 2 columns on mobile */
  .credentials-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
  }
  .stat-num { font-size: clamp(1.4rem, 6vw, 2rem); }
  .stat-item--cert { grid-column: 1 / -1; }
  .stat-cert { font-size: .78rem; letter-spacing: .1em; }
}

/* ══════════════════════════════════════════════════════
   MOTION + HIGH-CONTRAST
   ══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-slide { transition: none; }
}

@media (forced-colors: active) {
  .btn-outline, .btn-cta { border: 2px solid ButtonText; }
  .hero-strip-inner, .hero-btns { forced-color-adjust: none; }
}

/* ══════════════════════════════════════════════════════
   LEGAL COMPLIANCE — Cookie Banner · Dialogs · Footer
   ══════════════════════════════════════════════════════ */

/* ── Cookie consent banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 9000;
  background: var(--teal);
  color: var(--white);
  padding: 1rem clamp(1rem, 5vw, 3rem);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.cookie-banner[hidden] { display: none; }

.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner-inner p {
  flex: 1 1 280px;
  font-family: var(--sans);
  font-size: .85rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,.92);
}
.cookie-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .08em;
  padding: .55rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.5);
  min-height: 44px;
  min-width: 44px;
}
.cookie-btn--accept {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.cookie-btn--accept:hover { background: var(--cream); }
.cookie-btn--decline {
  background: transparent;
  color: var(--white);
}
.cookie-btn--decline:hover { background: rgba(255,255,255,.1); }

/* ── YouTube consent overlay ── */
.yt-embed { position: relative; }
.yt-consent-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(26,34,40,.88);
  text-align: center;
  padding: 2rem;
}
.yt-consent-overlay[hidden] { display: none; }
.yt-consent-overlay p {
  font-family: var(--sans);
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin: 0;
}

/* ── Legal dialogs ── */
.legal-dialog {
  width: min(90vw, 620px);
  max-height: 80vh;
  overflow-y: auto;
  border: none;
  border-radius: 4px;
  padding: 2.5rem 2.5rem 2rem;
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  font-family: var(--sans);
  font-size: .9rem;
  line-height: 1.75;
  direction: rtl;
}
.legal-dialog::backdrop {
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
}
.legal-dialog h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin: 0 0 1.25rem;
  color: var(--teal);
}
.legal-dialog h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .7;
  margin: 1.25rem 0 .4rem;
}
.legal-dialog p { margin: 0 0 .6rem; }
.legal-dialog a { color: var(--teal); }
.dialog-close {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--dark);
  opacity: .5;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-close:hover { opacity: 1; }

/* ── Footer legal section ── */
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12);
  margin: 1.5rem auto 0;
  max-width: 1100px;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 2rem;
}
.footer-legal-details {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1.25rem;
  font-family: var(--sans);
  font-size: .73rem;
  color: rgba(255,255,255,.55);
}
.footer-legal-details a { color: rgba(255,255,255,.65); }
.footer-legal-details strong.legal-todo {
  color: #ff9;
  font-weight: 500;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
}
.footer-legal-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: .73rem;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: .3rem .2rem;
  min-height: 44px;
}
.footer-legal-btn:hover { color: rgba(255,255,255,.9); }

/* ── Service legal note ── */
.svc-legal-note {
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--dark);
  opacity: .6;
  margin-top: .6rem !important;
}

/* ── Generic text button (inline link style) ── */
.text-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0;
}
.text-btn--light { color: rgba(255,255,255,.85); }

/* ══════════════════════════════════════════════════════
   FIT LIST — "זה בשבילך אם את..." — slide-in from right
   ══════════════════════════════════════════════════════ */
.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem 0 3rem;
}

.fit-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(57, 92, 101, .12);
  position: relative;

  /* slide in from the right (RTL: positive X = right) */
  opacity: 0;
  transform: translateX(70px);
  transition: opacity .5s cubic-bezier(.22,.68,0,1.1),
              transform .5s cubic-bezier(.22,.68,0,1.1);
}

.fit-item:first-child { border-top: 1px solid rgba(57, 92, 101, .12); }

.fit-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fit-num {
  flex-shrink: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--teal);
  opacity: .4;
  min-width: 2.4rem;
  text-align: center;
}

.fit-item strong {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(.93rem, 1.8vw, 1.05rem);
  color: var(--dark);
  display: block;
  margin-bottom: .2rem;
  line-height: 1.4;
}

.fit-item p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.84rem, 1.5vw, .92rem);
  line-height: 1.65;
  color: var(--mid);
  margin: 0;
}

.fit-item p + p { margin-top: .4rem; }

.fit-subitems {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(57, 92, 101, .15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.fit-subitem {
  border-right: 3px solid var(--teal);
  padding-right: 1.1rem;
}
.fit-subitem-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .88rem;
  color: var(--teal);
  letter-spacing: .03em;
  margin-bottom: .4rem;
}
.fit-subitem p {
  font-family: var(--sans);
  font-size: .83rem;
  line-height: 1.65;
  color: rgba(44, 44, 44, .78);
  margin: 0;
}

.fit-keyword {
  font-weight: 600;
  color: var(--teal);
  font-style: normal;
}

/* ── COMPARE GRID — ליווי בלידה ───────────────── */
/* ── COMPARE INTRO — 3-line heading ── */
.compare-intro {
  margin: 2.5rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.compare-intro-nots {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}
.compare-intro-nots span {
  font-family: var(--sans);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: .5;
  line-height: 1;
}
.compare-intro-sep { opacity: .25 !important; }
.compare-intro-yes {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.55rem, 4.5vw, 2.3rem);
  line-height: 1.25;
  background: linear-gradient(120deg, var(--teal) 0%, #5a8a96 40%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.compare-wrap {
  overflow-x: auto;
  margin: 0 0 2.5rem;
  -webkit-overflow-scrolling: touch;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, 3.8rem);
  width: 100%;
}
.compare-th {
  padding: .6rem .3rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .04em;
  text-align: center;
  color: var(--dark);
  background: rgba(57, 92, 101, .07);
  border-bottom: 2px solid rgba(57, 92, 101, .15);
  line-height: 1.3;
}
.compare-th--blank {
  background: transparent;
  border-bottom-color: transparent;
}
.compare-th--featured {
  background: var(--teal);
  color: var(--white);
}
.compare-label {
  padding: .65rem 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(.75rem, 1.4vw, .82rem);
  color: var(--dark);
  border-bottom: 1px solid rgba(57, 92, 101, .08);
  display: flex;
  align-items: center;
  line-height: 1.35;
}
.compare-label--last { border-bottom: none; }
.compare-cell {
  padding: .65rem .3rem;
  text-align: center;
  border-bottom: 1px solid rgba(57, 92, 101, .08);
  background: rgba(57, 92, 101, .03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-cell--last { border-bottom: none; }
.compare-feat { background: rgba(57, 92, 101, .09); }
.compare-yes { color: var(--teal); font-size: 1.1rem; font-weight: 700; }
.compare-no  { color: rgba(44, 44, 44, .22); font-size: 1rem; }

/* ══════════════════════════════════════════════════════
   FAQ — שאלות שבטח יש לך
   ══════════════════════════════════════════════════════ */
.faq-section {
  background: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid rgba(44,44,44,.08);
}
.faq-inner {
  max-width: 700px;
  margin: 0 auto;
}
.faq-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--dark);
  margin: 0 0 2.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(44,44,44,.12);

  /* stagger animation */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease, border-color .2s;
}
.faq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-item:first-of-type {
  border-top: 1px solid rgba(44,44,44,.12);
}
.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  color: var(--dark);
  cursor: pointer;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 0 1.25rem;
}
.faq-a p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.9rem, 1.6vw, 1rem);
  line-height: 1.8;
  color: var(--dark);
  opacity: .8;
  margin: 0;
}

/* ── s02 FAQ ── */
.s02-faq {
  margin: 3rem 0 2.5rem;
}
.s02-faq-heading {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: .6;
  margin-bottom: 1.25rem;
}
.s02-faq-item {
  border-bottom: 1px solid rgba(44,44,44,.1);
}
.s02-faq-item:first-of-type {
  border-top: 1px solid rgba(44,44,44,.1);
}
.s02-faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(.9rem, 1.7vw, 1rem);
  color: var(--dark);
  cursor: pointer;
  user-select: none;
}
.s02-faq-q::-webkit-details-marker { display: none; }
.s02-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .25s ease;
  line-height: 1;
}
.s02-faq-item[open] .s02-faq-q::after {
  transform: rotate(45deg);
}
.s02-faq-a {
  padding: 0 0 1.1rem;
}
.s02-faq-a p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.88rem, 1.5vw, .97rem);
  line-height: 1.8;
  color: var(--dark);
  opacity: .75;
  margin: 0 0 .5rem;
}
.s02-faq-a p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════
   FIT SECTION — wrapper עם גוון blush
   ══════════════════════════════════════════════════════ */
.fit-section {
  background: rgba(226, 191, 178, .15);
  border-radius: 10px;
  padding: 1.5rem 1.75rem 1.75rem;
  margin: 2rem 0 2.5rem;
}
.fit-section .svc-fit-heading { margin-top: 0; }
.fit-section .fit-list { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════
   SVC BRIDGE — גשר הכנה ללידה → ליווי בלידה
   ══════════════════════════════════════════════════════ */
.svc-bridge {
  position: relative;
  background-image: url('PHOTO-2025-05-07-12-45-56.jpg');
  background-size: cover;
  background-position: center 35%;
  padding: clamp(5rem, 14vw, 10rem) clamp(1.25rem, 5vw, 4rem);
  text-align: center;
  isolation: isolate;
}

/* dark overlay for text legibility */
.svc-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 30, 33, .55) 0%,
    rgba(20, 30, 33, .65) 100%
  );
  z-index: 0;
}

.svc-bridge-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.svc-bridge-eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(.82rem, 1.5vw, .9rem);
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .7);
}
.svc-bridge-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.25;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.svc-bridge-cta {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 2px;
  padding: .7rem 2rem;
  transition: background .25s, border-color .25s;
}
.svc-bridge-cta:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
