/* ===== Makor Hateva - design tokens ===== */
:root {
  /* Brand navy (from logo) */
  --navy-900: #075E66;
  --navy-800: #0A7C86;
  --navy-700: #0A7C86;
  --navy-600: #2FA9B4;
  --navy-500: #3FBFC9;
  --navy-300: #7FC9D0;

  /* Subtle warm clay accent — used sparingly for eyebrows / micro-details */
  --accent-700: #0A7C86;
  --accent-600: #0CA3AF;
  --accent-500: #3FBFC9;
  --accent-200: #DCE8E8;

  /* Legacy gold tokens now alias to clay/navy so primary CTAs use navy */
  --gold-700: #0A7C86;
  --gold-600: #0A7C86;
  --gold-500: #0A7C86;
  --gold-400: #2FA9B4;
  --gold-200: #DCE2EE;

  /* Warm cream backgrounds */
  --cream-50:  #FBFDFD;
  --cream-100: #EEF6F6;
  --cream-200: #DCE8E8;
  --cream-300: #C9DCDC;

  --ink-900: #3F4D4F;
  --ink-700: #4C5A5C;
  --ink-500: #5C6677;
  --ink-400: #8A93A4;
  --ink-300: #B6BCC8;

  --line: rgba(10, 124, 134, 0.10);
  --line-strong: rgba(10, 124, 134, 0.18);
  --line-on-navy: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 1px 2px rgba(10, 124, 134, 0.06), 0 1px 3px rgba(10, 124, 134, 0.04);
  --shadow-md: 0 4px 14px rgba(10, 124, 134, 0.08), 0 2px 4px rgba(10, 124, 134, 0.04);
  --shadow-lg: 0 18px 48px rgba(10, 124, 134, 0.18), 0 4px 12px rgba(10, 124, 134, 0.06);
  --shadow-xl: 0 32px 80px rgba(10, 124, 134, 0.24);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --max-w: 1400px;
  --container-x: clamp(20px, 5vw, 64px);

  --font-sans: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Rubik', 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --heading-weight: 800;

  /* Makor sun accent */
  --sun: #FFB12E;
  --sun-dark: #FF8A1F;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream-50);
  color: var(--ink-900);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ===== Layout helpers ===== */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-x);
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-600);
}
.eyebrow.on-navy { color: var(--gold-400); }
.eyebrow.on-navy::before { background: var(--gold-400); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 16px 0 16px;
  color: var(--navy-800);
  text-wrap: balance;
}
.section-title.on-navy { color: var(--cream-100); }

.section-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-500);
  max-width: 60ch;
  text-wrap: pretty;
  margin: 0;
}
.section-lede.on-navy { color: var(--ink-300); }

.section {
  padding-block: clamp(56px, 7vw, 96px);
}
.section.tight { padding-block: clamp(40px, 5vw, 64px); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 40px;
  max-width: 720px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15.5px;
  border: 1px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.btn:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gold-600);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(182, 153, 84, 0.30);
}
.btn-primary:hover {
  background: var(--gold-500);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(182, 153, 84, 0.38);
}

.btn-secondary {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-secondary:hover {
  background: var(--navy-800);
  color: var(--cream-100);
}
.btn-secondary.on-navy {
  color: var(--cream-100);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-secondary.on-navy:hover {
  background: var(--cream-100);
  color: var(--navy-800);
  border-color: var(--cream-100);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  padding: 10px 4px;
}
.btn-ghost:hover { color: var(--gold-700); }

.btn-whatsapp {
  background: #128C4A;
  color: white;
}
.btn-whatsapp:hover {
  background: #0F7A40;
  transform: translateY(-1px);
}

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}
.reveal.pre {
  opacity: 0;
  transform: translateY(18px);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Cards baseline ===== */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
  text-decoration: none;
}
.brand-logo {
  height: 76px;
  width: auto;
  display: block;
}
.topnav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topnav-links li { position: relative; }
.topnav-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  transition: color .2s, background .2s;
}
.topnav-links a:hover { color: var(--navy-800); background: rgba(10, 124, 134, 0.04); }
.topnav-links a.active { color: var(--gold-700); }
.topnav-links li.has-dropdown > a { cursor: pointer; }

/* Services dropdown */
.topnav-drop {
  position: absolute;
  top: 100%;
  inset-inline-end: 0;
  min-width: 240px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  z-index: 60;
}
.topnav-drop::before {
  /* invisible bridge to prevent hover loss across the 8px margin */
  content: "";
  position: absolute;
  top: -12px;
  inset-inline: 0;
  height: 16px;
}
.topnav-drop.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.topnav-drop a {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 6px;
  color: var(--ink-700);
}
.topnav-drop a:hover {
  background: var(--cream-100);
  color: var(--navy-800);
}
.topnav-cta { display: flex; gap: 10px; align-items: center; }
.topnav-cta .btn { padding: 10px 18px; font-size: 14px; }

.drawer-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: white;
  align-items: center; justify-content: center;
}

/* mobile menu */
.drawer {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--cream-50);
  z-index: 40;
  padding: 32px var(--container-x);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.drawer.open { opacity: 1; transform: none; pointer-events: auto; }
.drawer a {
  display: block;
  font-size: 22px;
  font-family: var(--font-serif);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy-800);
}
.drawer .btn {
  margin-top: 24px;
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 128px;
  padding-bottom: 64px;
  background:
    radial-gradient(1100px 500px at 50% -100px, rgba(10, 124, 134, 0.10), transparent 60%),
    linear-gradient(to bottom, var(--cream-50) 0%, var(--cream-100) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream-50));
  pointer-events: none;
}
.hero-box {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(10, 124, 134, 0.18);
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 900;
  letter-spacing: -0.025em;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy-800);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--gold-700);
  font-weight: 900;
}
.hero h1 .underline {
  display: block;
  position: relative;
  margin: 0.12em auto 0;
  width: fit-content;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  inset-inline: 4%;
  bottom: 4px;
  height: 8px;
  background: rgba(10, 124, 134, 0.25);
  z-index: -1;
  border-radius: 4px;
}
.hero p.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-500);
  max-width: 56ch;
  margin: 0 auto 36px;
  text-wrap: pretty;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 500;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-item svg { color: var(--gold-600); }

/* video block */
.video-block {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  background: var(--navy-800);
  isolation: isolate;
}
.video-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(10, 124, 134, 0.08) 0,
      rgba(10, 124, 134, 0.08) 2px,
      transparent 2px,
      transparent 14px
    ),
    radial-gradient(800px 400px at 50% 50%, rgba(10, 124, 134, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  z-index: 0;
}
.video-block-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  z-index: 1;
  color: var(--cream-100);
}
.video-block-label {
  font-family: 'JetBrains Mono', 'SF Mono', 'Menlo', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(10, 124, 134, 0.12);
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(10, 124, 134, 0.25);
}
.video-play-btn {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold-600);
  color: var(--navy-900);
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(10, 124, 134, 0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-block:hover .video-play-btn {
  transform: scale(1.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 14px rgba(10, 124, 134, 0.18);
}
.video-block-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  margin: 0;
  text-align: center;
  padding: 0 24px;
}
.video-block-sub {
  font-size: 13px;
  color: var(--ink-300);
  margin: 0;
}

/* ===== Why us - feature cards ===== */
.benefit-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  transition: all .28s ease;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 60%; height: 1px;
  background: linear-gradient(to var(--logical-end, left), var(--gold-500), transparent);
  transform: scaleX(0);
  transform-origin: var(--logical-start, right);
  transition: transform .4s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.why-card:hover::before { transform: scaleX(1); }
.why-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold-700);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy-800);
  margin: 0 0 12px;
}
.why-card p {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

/* ===== Services ===== */
.services-section {
  background: var(--cream-100);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}
.service-card-header {
  padding: 32px 32px 0;
  position: relative;
}
.service-num {
  position: absolute;
  top: 24px;
  inset-inline-end: 32px;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--ink-400);
  letter-spacing: 0.05em;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cream-100), var(--cream-200));
  border: 1px solid var(--gold-200);
  display: grid;
  place-items: center;
  color: var(--gold-700);
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--navy-800);
  line-height: 1.2;
}
.service-card .service-desc {
  font-size: 15.5px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0 0 24px;
}
.service-features {
  list-style: none;
  margin: 0;
  padding: 24px 32px 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.service-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-700);
}
.service-features li svg {
  flex-shrink: 0;
  color: var(--gold-600);
  margin-top: 4px;
}

/* ===== Stats / proof bar (light, between dark sections) ===== */
.stats-section {
  background: var(--cream-50);
  color: var(--navy-800);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat {
  padding: 8px 32px;
  border-inline-start: 1px solid var(--line);
}
.stat:first-child { border-inline-start: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: var(--navy-800);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.stat-num .accent { color: var(--gold-700); }
.stat-label {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.5;
  max-width: 24ch;
}

/* ===== Webinars / community ===== */
.webinars-section {
  background:
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.webinars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(10, 124, 134, 0.08), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(10, 124, 134, 0.05), transparent 60%);
}
.webinars-section::after {
  content: "";
  position: absolute;
  top: calc(-16% + 60px);
  bottom: auto;
  inset-inline-end: calc(6% + 10px);
  width: 38vw;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  background-image: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.06;
  transform: rotate(-4deg);
  pointer-events: none;
  z-index: 0;
}
.webinars-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.webinars-text h2 { color: var(--cream-100); }
.webinars-text p.section-lede { color: var(--ink-300); }
.webinars-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.webinars-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--cream-200);
}
.webinars-features svg {
  flex-shrink: 0;
  color: var(--gold-400);
  margin-top: 4px;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-700);
  border: 1px solid rgba(10, 124, 134, 0.18);
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease;
}
.reel:nth-child(2) { transform: translateY(28px); }
.reel:hover { transform: translateY(-4px); border-color: var(--gold-500); }
.reel:nth-child(2):hover { transform: translateY(24px); }
.reel-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(10, 124, 134, 0.06) 0,
      rgba(10, 124, 134, 0.06) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(180deg, var(--navy-600) 0%, var(--navy-900) 100%);
}
.reel:nth-child(1) .reel-bg {
  background:
    repeating-linear-gradient(45deg, rgba(10, 124, 134, 0.06), rgba(10, 124, 134, 0.06) 1px, transparent 1px, transparent 12px),
    linear-gradient(180deg, #1A2B47 0%, #0E2A2E 100%);
}
.reel:nth-child(2) .reel-bg {
  background:
    repeating-linear-gradient(135deg, rgba(10, 124, 134, 0.07), rgba(10, 124, 134, 0.07) 1px, transparent 1px, transparent 12px),
    linear-gradient(180deg, #1F3252 0%, #0F1B2D 100%);
}
.reel:nth-child(3) .reel-bg {
  background:
    repeating-linear-gradient(90deg, rgba(10, 124, 134, 0.06), rgba(10, 124, 134, 0.06) 1px, transparent 1px, transparent 14px),
    linear-gradient(180deg, #16263F 0%, #0E2A2E 100%);
}
.reel-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}
.reel-tag {
  align-self: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(11, 22, 38, 0.6);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(10, 124, 134, 0.25);
  backdrop-filter: blur(6px);
}
.reel-play {
  align-self: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-800);
  border: none;
  display: grid;
  place-items: center;
  margin: auto;
  transition: transform .25s ease, background .25s ease;
}
.reel:hover .reel-play { background: var(--gold-500); transform: scale(1.1); }
.reel-meta { display: flex; flex-direction: column; gap: 6px; }
.reel-title {
  color: var(--cream-100);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-wrap: pretty;
}
.reel-sub {
  font-size: 11.5px;
  color: var(--ink-300);
  display: flex;
  align-items: center;
  gap: 8px;
}
.reel-sub::before { content: "•"; color: var(--gold-500); }

/* ===== Audience ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: white;
  transition: all .25s ease;
  overflow: hidden;
}
.audience-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.audience-card:hover::after { transform: scaleX(1); }
.audience-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream-100);
  border: 1px solid var(--gold-200);
  display: grid;
  place-items: center;
  color: var(--gold-700);
  margin-bottom: 20px;
}
.audience-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-800);
  margin: 0 0 8px;
}
.audience-card p {
  font-size: 14.5px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.55;
}

/* ===== Process ===== */
.process-section { background: var(--cream-100); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  padding-top: 8px;
}
/* Process line dashes — works in both directions since it's symmetric */
.process-line {
  position: absolute;
  top: 40px;
  inset-inline: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    to left,
    var(--gold-500) 0,
    var(--gold-500) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream-100);
  border: 2px solid var(--gold-500);
  color: var(--navy-800);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px var(--cream-100);
  transition: all .25s ease;
}
.process-step:hover .process-num {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: scale(1.05);
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-800);
  margin: 0 0 10px;
  line-height: 1.25;
}
.process-step p {
  font-size: 14.5px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.55;
  max-width: 28ch;
}
/* (legacy block kept commented above) */

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all .25s ease;
  position: relative;
}
.tcard:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tcard .quote-mark {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 0.6;
  color: var(--gold-500);
  height: 24px;
}
.tcard blockquote {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
  font-weight: 400;
  flex: 1;
  text-wrap: pretty;
}
.tcard footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 4px;
}
.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-200), var(--gold-200));
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 800;
  color: var(--navy-800);
  font-size: 16px;
  flex-shrink: 0;
}
.tcard-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.2;
}
.tcard-role {
  font-size: 12.5px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.tcard-placeholder {
  border-style: dashed;
  background: rgba(255,255,255,0.6);
}
.tcard-placeholder blockquote {
  color: var(--ink-400);
  font-style: italic;
}

/* ===== FAQ ===== */
.qa-sec { background: var(--cream-100); }
.qa-listb {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 880px;
  margin-inline: auto;
}
.qa-item {
  border-bottom: 1px solid var(--line);
}
.qa-q {
  width: 100%;
  background: none;
  border: none;
  text-align: start;
  padding: 26px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-800);
  transition: color .2s;
}
.qa-q:hover { color: var(--gold-700); }
.qa-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(10, 124, 134, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-700);
  transition: transform .3s ease, background .25s;
}
.qa-item.open .qa-toggle {
  transform: rotate(45deg);
  background: var(--gold-500);
  color: var(--navy-900);
}
.qa-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.qa-item.open .qa-a { grid-template-rows: 1fr; }
.qa-a > div { overflow: hidden; }
.qa-a p {
  margin: 0;
  padding: 0 4px 26px;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}

/* ===== Contact ===== */
.contact-section {
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -120px;
  inset-inline: -10%;
  height: 320px;
  background: radial-gradient(closest-side, rgba(10, 124, 134, 0.10), transparent 70%);
  pointer-events: none;
}
.contact-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-head .section-title { margin-top: 12px; }
.contact-head .section-lede { margin: 0 auto; }

.contact-channels-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 44px;
}
.contact-chip {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all .25s ease;
  text-align: start;
}
.contact-chip:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-chip-icon {
  grid-row: 1 / span 2;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream-100);
  border: 1px solid var(--gold-200);
  color: var(--gold-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-chip-icon.whatsapp {
  background: rgba(18, 140, 74, 0.10);
  border-color: rgba(18, 140, 74, 0.25);
  color: #128C4A;
}
.contact-chip-label {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-size: 11.5px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
.contact-chip-val {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-size: 15px;
  color: var(--navy-800);
  font-weight: 600;
  text-align: start;
  line-height: 1.2;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.contact-chip-val bdi { unicode-bidi: isolate; }

.contact-divider {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 580px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-400);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}

.contact-form-pane {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.contact-form-pane .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-submit {
  margin-top: 8px;
  align-self: stretch;
  width: 100%;
}
.form-success {
  background: linear-gradient(135deg, var(--cream-100) 0%, var(--cream-50) 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-on-navy);
  transition: all .25s ease;
}
.contact-channel:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(10, 124, 134, 0.3);
  transform: translateX(2px);
}
.contact-channel-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(10, 124, 134, 0.14);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-channel-label {
  font-size: 12.5px;
  color: var(--ink-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-channel-val {
  font-size: 16px;
  color: var(--cream-100);
  font-weight: 500;
  direction: ltr;
  text-align: start;
}

/* form */
.contact-form {
  background: var(--cream-50);
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--navy-800);
}
.contact-form p.form-sub {
  color: var(--ink-500);
  margin: 0 0 28px;
  font-size: 15px;
}
.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.field label .req { color: var(--gold-700); margin-inline-start: 3px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: white;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(10, 124, 134, 0.16);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-400); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%235C6677' stroke-width='1.5' d='M1 1.5l5 5 5-5'/></svg>"); background-repeat: no-repeat; background-position: left 16px center; padding-inline-start: 16px; padding-inline-end: 40px; }
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #B84B45;
  background: #EFFAFB;
}
.field-error {
  font-size: 12.5px;
  color: #B84B45;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 24px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-wrap input {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--gold-600);
}
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.form-actions .btn { flex: 1; min-width: 160px; }
.form-fineprint {
  font-size: 12px;
  color: var(--ink-400);
  margin-top: 16px;
  line-height: 1.5;
}
.form-success {
  background: linear-gradient(135deg, #FFF3DF 0%, var(--cream-100) 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
}
.form-success h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--navy-800);
}
.form-success p { margin: 0; color: var(--ink-500); }

/* ===== Footer ===== */
.footer {
  background: var(--navy-900);
  color: var(--ink-300);
  padding-block: 64px 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-on-navy);
}
.foot-brand {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream-100);
  margin-bottom: 16px;
}
.foot-tagline {
  font-size: 14.5px;
  color: var(--ink-300);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 32ch;
}
.foot-col h4 {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
}
.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-col a {
  font-size: 14.5px;
  color: var(--ink-300);
  transition: color .2s;
}
.foot-col a:hover { color: var(--gold-400); }
.foot-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--ink-500);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.foot-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: var(--ink-300);
  transition: all .2s;
  border: 1px solid var(--line-on-navy);
}
.foot-social:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

/* ===== WhatsApp FAB ===== */
.wabubble-btn {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #128C4A;
  color: white;
  border-radius: 999px;
  border: none;
  box-shadow: 0 12px 32px rgba(18, 140, 74, 0.4);
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s;
}
.wabubble-btn:hover {
  background: #0F7A40;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(18, 140, 74, 0.5);
}
.wabubble-btn svg { flex-shrink: 0; }

/* ===== Video modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 22, 38, 0.86);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-video {
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(.96);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.modal-overlay.open .modal-video { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px; inset-inline-start: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream-100);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.2); }
.modal-content {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--cream-100);
  font-family: var(--font-serif);
  font-size: 22px;
  text-align: center;
  padding: 32px;
}

/* ===== Mobile view toggle ===== */
.viewport-toggle {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 30;
  display: flex;
  background: rgba(15, 27, 45, 0.92);
  border-radius: 999px;
  padding: 4px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.viewport-toggle button {
  background: none;
  border: none;
  color: var(--ink-300);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}
.viewport-toggle button.active {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* mobile preview frame */

/* ===== Responsive (real) ===== */
@media (max-width: 1024px) {
  .benefit-wrap { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat { padding: 16px; border-inline-start: none; }
  .stat:nth-child(odd) { border-inline-end: 1px solid var(--line-on-navy); }
  .webinars-inner { grid-template-columns: 1fr; gap: 56px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .process-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-channels-row { grid-template-columns: 1fr; }
  .contact-form-pane { padding: 32px 24px; }
  .contact-form-pane .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .topnav-links { display: none; }
  .drawer-btn { display: inline-flex; }
  .topnav-cta .btn-secondary { display: none; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .benefit-wrap { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: 1fr 1fr; }
  .reel:nth-child(2) { transform: none; }
  .reel:nth-child(3) { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
}


/* ===== About section ===== */
.intro-section { background: var(--cream-50); }
.intro-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 64px;
  align-items: center;
}
.intro-text .section-title { margin-top: 12px; }
.intro-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 8px 0 16px;
  font-weight: 500;
  text-wrap: pretty;
}
.intro-detail {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0;
  text-wrap: pretty;
}
.intro-mark {
  display: none;
}
.intro-quote {
  background: var(--navy-800);
  color: var(--cream-50);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.intro-quote::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-600);
}
.intro-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  line-height: 0.5;
  color: var(--accent-500);
  margin-bottom: 8px;
  opacity: 0.7;
}
.intro-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 24px;
  color: var(--cream-50);
  font-weight: 500;
  text-wrap: pretty;
}
.intro-quote-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.intro-quote-line {
  width: 36px;
  height: 1px;
  background: var(--accent-500);
}

/* ===== WhyUs updated card layout ===== */
.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream-100);
  border: 1px solid var(--gold-200);
  display: grid;
  place-items: center;
  color: var(--gold-700);
}

/* ===== Services accordion ===== */
.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1080px;
  margin-inline: auto;
}
.service-row {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
}
.service-row.open {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}
.service-row-head {
  width: 100%;
  background: none;
  border: none;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  text-align: start;
  cursor: pointer;
  transition: background .2s;
}
.service-row-head:hover { background: var(--cream-50); }
.service-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-700);
}
.service-row-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--cream-100);
  border: 1px solid var(--gold-200);
  display: grid;
  place-items: center;
  color: var(--gold-700);
  flex-shrink: 0;
}
.service-row-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-row-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.2;
}
.service-row-sub {
  font-size: 13.5px;
  color: var(--ink-500);
  letter-spacing: 0.01em;
}
.service-row-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(10, 124, 134, 0.12);
  display: grid;
  place-items: center;
  color: var(--gold-700);
  transition: transform .3s ease, background .25s;
  flex-shrink: 0;
}
.service-row.open .service-row-toggle {
  transform: rotate(45deg);
  background: var(--gold-500);
  color: var(--navy-900);
}
.service-row-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}
.service-row.open .service-row-body { grid-template-rows: 1fr; }
.service-row-body > .service-row-body-inner {
  overflow: hidden;
}
.service-row-body-inner {
  padding: 0;
}
.service-row.open .service-row-body-inner {
  padding: 0 28px 28px;
}
.service-row-desc {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.65;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  max-width: 70ch;
}
.service-features-grid {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.service-features-grid li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.feature-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.feature-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
  margin-bottom: 4px;
}
.feature-desc {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}
.service-row-cta {
  display: flex;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* ===== Gallery ===== */
.fieldgal-section { background: var(--cream-50); }
.fieldgal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.fieldgal-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.fieldgal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.fieldgal-card.g-1 { grid-column: span 2; grid-row: span 2; }
.fieldgal-card.g-2 { grid-column: span 1; grid-row: span 1; }
.fieldgal-card.g-3 { grid-column: span 1; grid-row: span 1; }
.fieldgal-card.g-4 { grid-column: span 1; grid-row: span 1; }
.fieldgal-card.g-5 { grid-column: span 1; grid-row: span 1; }
.fieldgal-card.g-6 { grid-column: span 1; grid-row: span 1; }

.fieldgal-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.fieldgal-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 18px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 18px);
}
.fieldgal-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.18);
}
.fieldgal-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(7, 94, 102, 0.92) 20%, transparent 100%);
  color: white;
}
.fieldgal-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(10, 124, 134, 0.18);
  color: var(--gold-400);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px solid rgba(10, 124, 134, 0.3);
  backdrop-filter: blur(6px);
}
.fieldgal-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  text-wrap: pretty;
}
.fieldgal-card.g-1 .fieldgal-title { font-size: 22px; }

/* ===== Knowledge / Blog ===== */
.kb-section { background: var(--cream-100); }
.kb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.kbcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.kbcard:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.kbcard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.kbcard-cat {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: rgba(10, 124, 134, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
}
.kbcard-read {
  font-size: 12.5px;
  color: var(--ink-400);
}
.kbcard-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-800);
  margin: 0 0 12px;
  line-height: 1.25;
  text-wrap: balance;
}
.kbcard-excerpt {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}
.kbcard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-700);
  font-size: 14px;
  font-weight: 600;
  transition: gap .2s;
}
.kbcard-link:hover {
  gap: 12px;
  color: var(--navy-800);
}
.kb-footer {
  display: flex;
  justify-content: center;
}

/* ===== Footer brand row ===== */
.foot-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.foot-mark {
  width: 48px;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.9);
}
.foot-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--cream-100);
  margin: 0;
}

/* ===== Responsive overrides for new sections ===== */
@media (max-width: 1024px) {
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-mark { max-width: 360px; margin-inline: auto; }
  .fieldgal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .fieldgal-card.g-1 { grid-column: span 2; grid-row: span 1; }
  .kb-grid { grid-template-columns: 1fr; }
  .service-features-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-row-head { padding: 18px 20px; grid-template-columns: auto 1fr auto; }
  .service-row-icon { display: none; }
  .service-row.open .service-row-body-inner { padding: 0 20px 20px; }
}
@media (max-width: 640px) {
  .fieldgal-grid { grid-template-columns: 1fr; }
  .fieldgal-card.g-1 { grid-column: span 1; }
  .fieldgal-card { grid-column: span 1 !important; }
}


/* ============================================================
 * Palette refresh - Makor Hateva monochromatic navy + cream
 * Override prominent "gold" usage with refined accents
 * ============================================================ */

/* Primary CTA: navy bg on cream sections (no more gold) */
.btn-primary {
  background: var(--navy-800);
  color: var(--cream-50);
  box-shadow: 0 8px 22px rgba(10, 124, 134, 0.22);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(10, 124, 134, 0.30);
}
/* On navy backgrounds, flip to cream */
.contact-section .btn-primary,
.stats-section .btn-primary,
section.webinars-section .btn-primary {
  background: var(--cream-50);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.30);
}
.contact-section .btn-primary:hover,
.stats-section .btn-primary:hover {
  background: var(--cream-100);
  color: var(--navy-900);
}

/* Eyebrow: refined warm clay accent (small and elegant) */
.eyebrow {
  color: var(--accent-600);
}
.eyebrow::before {
  background: var(--accent-600);
}
.eyebrow.on-navy {
  color: var(--accent-500);
}
.eyebrow.on-navy::before {
  background: var(--accent-500);
}

/* Hero eyebrow pill — navy bg with cream text, no gold */
.hero-kicker {
  background: var(--navy-800);
  border-color: var(--navy-700);
  color: var(--cream-50);
}
.hero-kicker .dot {
  background: var(--accent-600);
  box-shadow: 0 0 0 4px rgba(10, 124, 134, 0.25);
}

/* Hero h1 accent → cleaned up */
.hero h1 .accent {
  color: var(--accent-600);
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}
.hero h1 .underline::after {
  background: rgba(10, 124, 134, 0.22);
}

/* Hero meta check icons → navy (not gold) */
.hero-meta-item svg { color: var(--accent-600); }

/* Video block — navy on cream variant (not navy-on-navy gradient) */
.video-block {
  background: var(--navy-900);
}
.video-block::before {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 14px),
    radial-gradient(800px 400px at 50% 50%, rgba(255, 255, 255, 0.10), transparent 60%),
    linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
}
.video-block-label {
  color: var(--cream-100);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}
.video-play-btn {
  background: var(--cream-50);
  color: var(--navy-900);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(255, 255, 255, 0.12);
}
.video-block:hover .video-play-btn {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 14px rgba(255, 255, 255, 0.16);
}

/* Why-us cards: navy num, navy icon */
.why-num { color: var(--navy-800); }
.why-icon {
  background: var(--cream-100);
  border-color: var(--line);
  color: var(--navy-800);
}
.why-card::before {
  background: linear-gradient(to var(--logical-end, left), var(--navy-800), transparent);
}

/* Service cards: all gold → navy/clay accents */
.service-icon-wrap {
  background: var(--cream-100);
  border-color: var(--line);
  color: var(--navy-800);
}
.service-num { color: var(--ink-400); }
.service-features li svg { color: var(--navy-700); }
.service-card:hover {
  border-color: var(--navy-300);
}

/* Service accordion */
.service-row.open {
  border-color: var(--navy-300);
}
.service-row-num {
  color: var(--accent-600);
}
.service-row-icon {
  background: var(--cream-100);
  border-color: var(--line);
  color: var(--navy-800);
}
.service-row-toggle {
  background: rgba(10, 124, 134, 0.08);
  color: var(--navy-800);
}
.service-row.open .service-row-toggle {
  background: var(--navy-800);
  color: var(--cream-50);
}
.feature-check {
  background: var(--navy-800);
  color: var(--cream-50);
}

/* Stats — clean cream section, navy numbers */
.stats-section {
  background: var(--cream-100);
}
.stat-num {
  color: var(--navy-800);
}

/* Process — navy circles */
.process-num {
  background: var(--cream-50);
  border-color: var(--navy-800);
  color: var(--navy-800);
  box-shadow: 0 0 0 8px var(--cream-100);
}
.process-line {
  background: repeating-linear-gradient(
    to left,
    var(--navy-500) 0,
    var(--navy-500) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.4;
}
.process-step:hover .process-num {
  background: var(--navy-800);
  color: var(--cream-50);
}

/* Testimonials — clay quotemark */
.tcard .quote-mark { color: var(--accent-500); }
.tcard-avatar {
  background: linear-gradient(135deg, var(--cream-200), var(--accent-200));
  color: var(--navy-800);
}

/* Gallery — already navy, but soften the gold tag */
.fieldgal-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream-100);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Knowledge cards */
.kbcard-cat {
  color: var(--accent-700);
  background: rgba(10, 124, 134, 0.10);
}
.kbcard:hover {
  border-color: var(--navy-300);
}
.kbcard-link { color: var(--navy-800); }
.kbcard-link:hover { color: var(--accent-600); }

/* FAQ */
.qa-toggle {
  background: rgba(10, 124, 134, 0.08);
  color: var(--navy-800);
}
.qa-item.open .qa-toggle {
  background: var(--navy-800);
  color: var(--cream-50);
}
.qa-q:hover { color: var(--accent-700); }

/* Form — focus ring navy */
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 4px rgba(10, 124, 134, 0.12);
}
.field input,
.field select,
.field textarea {
  background: white;
}
.field label .req { color: var(--accent-600); }

/* Contact chip — clay accent icon */
.contact-chip:hover {
  border-color: var(--navy-300);
}
.contact-chip-icon {
  background: var(--cream-100);
  border-color: var(--line);
  color: var(--navy-800);
}
.contact-section::before {
  background: radial-gradient(closest-side, rgba(10, 124, 134, 0.06), transparent 70%);
}

/* Form success */
.form-success {
  background: var(--cream-50);
  border-color: var(--navy-300);
}
.form-success-icon {
  background: var(--navy-800);
  color: var(--cream-50);
}

/* Buttons-secondary on navy — keep readable */
.btn-secondary {
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-secondary:hover {
  background: var(--navy-800);
  color: var(--cream-50);
}

/* Audience card hover accent */
.audience-icon {
  background: var(--cream-100);
  border-color: var(--line);
  color: var(--navy-800);
}
.audience-card::after { background: var(--navy-700); }

/* Hero stage gradient cleanup */
.hero {
  background:
    radial-gradient(1100px 500px at 50% -100px, rgba(10, 124, 134, 0.08), transparent 60%),
    linear-gradient(to bottom, var(--cream-50) 0%, var(--cream-100) 100%);
}

/* Navbar links active */
.topnav-links a.active { color: var(--accent-700); }

/* Stats grid number — full navy */
.stat-num .accent { color: var(--navy-800); }

/* Webinars (if used) */
.webinars-section { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%); }

/* Brand tagline — clay color */
.brand-tagline { color: var(--accent-600); }

/* Nav dropdown — navy active */
.topnav-drop a:hover {
  background: var(--cream-100);
  color: var(--navy-800);
}


/* Gallery tones — monochromatic navy */
.fieldgal-card.tone-deep .fieldgal-bg {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.fieldgal-card.tone-mid .fieldgal-bg {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
}
.fieldgal-card.tone-light .fieldgal-bg {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
}

/* Cleanup unused brand-row footer */
.foot-brand-row { display: none; }
.foot-mark { display: none; }


/* ============================================================
 * Final palette: navy + white + charcoal (no clay/gold/orange)
 * ============================================================ */
:root {
  --accent-700: #0E2A2E;   /* charcoal */
  --accent-600: #143438;
  --accent-500: #3A4555;
  --accent-200: #DDE2EE;

  --cream-50:  #FFFFFF;
  --cream-100: #F4F6FA;
  --cream-200: #E8ECF3;
  --cream-300: #D5DCE8;
}

/* Eyebrow → navy with letterspace (no clay) */
.eyebrow { color: var(--navy-800); }
.eyebrow::before { background: var(--navy-800); opacity: 0.4; }
.eyebrow.on-navy { color: var(--cream-100); opacity: 0.7; }
.eyebrow.on-navy::before { background: var(--cream-100); opacity: 0.5; }

/* Hero pill → solid navy */
.hero-kicker {
  background: var(--navy-900);
  border-color: var(--navy-800);
  color: white;
}
.hero-kicker .dot {
  background: white;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
}

/* Hero accent → navy (no clay) */
.hero h1 .accent {
  color: var(--navy-800);
}
.hero h1 .underline::after {
  background: rgba(10, 124, 134, 0.12);
}

/* Hero check icons → navy */
.hero-meta-item svg { color: var(--navy-800); }

/* Service accordion num → navy */
.service-row-num { color: var(--navy-800); }
.feature-check { background: var(--navy-800); color: white; }

/* Testimonial quote-mark → navy */
.tcard .quote-mark { color: var(--navy-300); }
.tcard-avatar {
  background: var(--cream-100);
  color: var(--navy-800);
  border: 1px solid var(--line);
}

/* Knowledge card categories → navy bg */
.kbcard-cat {
  color: var(--navy-800);
  background: var(--cream-100);
}
.kbcard-link { color: var(--navy-800); }
.kbcard-link:hover { color: var(--navy-600); }

/* Form req asterisk */
.field label .req { color: var(--navy-800); }

/* Brand tagline (if shown) → ink-500 */
.brand-tagline { color: var(--ink-500); }

/* Nav active link → navy */
.topnav-links a.active { color: var(--navy-800); }

/* Gallery tag → cream on navy */
.fieldgal-tag {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}

/* Process line opacity */
.process-line {
  background: repeating-linear-gradient(
    to left,
    var(--navy-500) 0,
    var(--navy-500) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.35;
}

/* Hero background — clean cream → white */
.hero {
  background:
    radial-gradient(1100px 500px at 50% -100px, rgba(10, 124, 134, 0.06), transparent 60%),
    linear-gradient(to bottom, var(--cream-50) 0%, var(--cream-100) 100%);
}

/* About video block */
.intro-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  isolation: isolate;
}
.intro-video-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 16px),
    radial-gradient(800px 500px at 50% 40%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(180deg, var(--navy-700) 0%, var(--navy-900) 100%);
}
.intro-video-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px;
  color: white;
  text-align: center;
}
.intro-video-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.10);
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.intro-video-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}
.intro-video-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Hide old intro-quote */
.intro-quote { display: none; }

/* Stats — pure white */
.stats-section { background: white; }
.stat-num { color: var(--navy-900); }

/* Service icon wrap → navy outline subtle */
.service-icon-wrap,
.service-row-icon,
.audience-icon,
.why-icon,
.contact-chip-icon {
  background: var(--cream-100);
  border-color: var(--line);
  color: var(--navy-800);
}
.contact-chip-icon.whatsapp {
  background: rgba(18, 140, 74, 0.10);
  border-color: rgba(18, 140, 74, 0.25);
  color: #128C4A;
}

/* Why card hover ::before — navy */
.why-card::before {
  background: linear-gradient(to var(--logical-end, left), var(--navy-800), transparent);
}

/* Service row toggle — navy */
.service-row-toggle {
  background: var(--cream-100);
  color: var(--navy-800);
}
.service-row.open .service-row-toggle {
  background: var(--navy-800);
  color: white;
}

/* FAQ toggle — navy */
.qa-toggle {
  background: var(--cream-100);
  color: var(--navy-800);
}
.qa-item.open .qa-toggle {
  background: var(--navy-800);
  color: white;
}
.qa-q:hover { color: var(--navy-800); }

/* Audience card underline */
.audience-card::after { background: var(--navy-800); }

/* Process num */
.process-num {
  background: white;
  border-color: var(--navy-800);
  color: var(--navy-800);
  box-shadow: 0 0 0 8px var(--cream-100);
}
.process-step:hover .process-num {
  background: var(--navy-800);
  color: white;
}

/* Form focus ring */
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-800);
  box-shadow: 0 0 0 4px rgba(10, 124, 134, 0.12);
}

/* Reels border */
.reel { border-color: rgba(255,255,255,0.10); }
.reel:hover { border-color: white; }
.reel-tag {
  color: white;
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.22);
}
.reel-sub::before { color: white; }


/* ============================================================
 * FINAL palette — Navy + White + Cool Grays only
 * No warm tones, no cream, no gold
 * ============================================================ */
:root {
  /* Cool, neutral surface tones (replacing all cream) */
  --cream-50:  #FFFFFF;       /* pure white */
  --cream-100: #F4F6F9;       /* cool light gray (was cream) */
  --cream-200: #E6EBF2;       /* light cool gray */
  --cream-300: #C9D2DE;

  /* Subtle accent → just darker navy or charcoal */
  --accent-700: #0E2A2E;
  --accent-600: #143438;
  --accent-500: #44516A;
  --accent-200: #DDE2EE;

  /* Charcoal scale for typography hierarchy */
  --ink-900: #3F4D4F;
  --ink-700: #4C5A5C;
  --ink-500: #5C6677;
  --ink-400: #8A93A4;
  --ink-300: #B6BCC8;
}

/* Body — pure white */
body { background: #FFFFFF; }

/* Section alternation: white / very light cool gray */
.intro-section,
.fieldgal-section,
.kb-section,
.process-section,
.qa-sec,
.services-section,
.stats-section {
  background: #F4F6F9;
}
/* Override: keep contact white-ish */
.contact-section {
  background: #FAFBFD;
}

/* Eyebrow — neutral gray, no color */
.eyebrow {
  color: var(--ink-500);
  font-weight: 600;
}
.eyebrow::before {
  background: var(--ink-400);
  opacity: 1;
}
.eyebrow.on-navy {
  color: var(--ink-300);
  opacity: 1;
}
.eyebrow.on-navy::before {
  background: var(--ink-300);
  opacity: 1;
}

/* Hero accent — keep navy italic (already updated) */
.hero h1 .accent {
  color: var(--navy-800);
}

/* Card backgrounds — pure white */
.why-card,
.service-card,
.kbcard,
.tcard,
.audience-card,
.contact-chip,
.contact-form-pane,
.service-row {
  background: #FFFFFF;
}
.tcard-placeholder { background: rgba(255,255,255,0.6); }

/* Borders subtle cool */
:root {
  --line: rgba(10, 124, 134, 0.08);
  --line-strong: rgba(10, 124, 134, 0.16);
}

/* Hero gradient — pure neutral */
.hero {
  background:
    radial-gradient(1200px 500px at 50% -100px, rgba(10, 124, 134, 0.05), transparent 60%),
    linear-gradient(to bottom, #FFFFFF 0%, #F4F6F9 100%);
}

/* Stats kept on light gray */
.stats-section { background: #F4F6F9; }
.stat { border-inline-start-color: rgba(10, 124, 134, 0.08); }

/* Form success — neutral */
.form-success {
  background: #F4F6F9;
  border-color: var(--navy-300);
}

/* Footer stays navy-900 (dark) */

/* Mobile preview frame */


/* Hero offset for larger navbar */
.hero { padding-top: 156px; }

/* Final palette adjustment — cool slate grays instead of any cream */
:root {
  --cream-50:  #FFFFFF;
  --cream-100: #F1F4F8;    /* cooler slate gray */
  --cream-200: #DEE4ED;
  --cream-300: #BFC8D6;
}
.intro-section,
.fieldgal-section,
.kb-section,
.process-section,
.qa-sec,
.services-section,
.stats-section { background: #F1F4F8; }
.contact-section { background: #F7F9FC; }
.hero {
  background:
    radial-gradient(1200px 500px at 50% -100px, rgba(10, 124, 134, 0.05), transparent 60%),
    linear-gradient(to bottom, #FFFFFF 0%, #F1F4F8 100%);
}


/* ============================================================
 * ABSOLUTE FINAL PALETTE — Navy + White + Grays
 * Forces all warm accent vars to neutral cool tones
 * ============================================================ */
:root {
  /* Warm accent vars → neutral charcoal grays */
  --accent-700: #1A2330 !important;
  --accent-600: #38494B !important;
  --accent-500: #5C6677 !important;
  --accent-200: #DDE2EE !important;

  /* Cream/cool surface tones */
  --cream-50:  #FFFFFF !important;
  --cream-100: #F1F4F8 !important;
  --cream-200: #DEE4ED !important;
  --cream-300: #BFC8D6 !important;
}

/* Eyebrow: ink-500 gray with letterspace — no color tone */
.eyebrow { color: var(--ink-500) !important; }
.eyebrow::before { background: var(--ink-400) !important; }
.eyebrow.on-navy { color: rgba(255,255,255,0.7) !important; }
.eyebrow.on-navy::before { background: rgba(255,255,255,0.5) !important; }

/* Hero pill: navy bg + white text + white dot */
.hero-kicker {
  background: var(--navy-900) !important;
  border-color: var(--navy-800) !important;
  color: white !important;
}
.hero-kicker .dot {
  background: white !important;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18) !important;
}

/* Hero accent (למצוינות) → solid navy, no italic, no font swap */
.hero h1 .accent {
  color: var(--navy-800) !important;
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: 800 !important;
}

/* Hero meta icons → navy */
.hero-meta-item svg { color: var(--navy-800) !important; }

/* Service row num → ink-400 gray (no accent color) */
.service-row-num { color: var(--ink-400) !important; }

/* Testimonial quote-mark → navy-300 */
.tcard .quote-mark { color: var(--navy-300) !important; }
.tcard-avatar {
  background: #F1F4F8 !important;
  color: var(--navy-800) !important;
  border: 1px solid var(--line) !important;
}

/* Knowledge card cat tag */
.kbcard-cat {
  color: var(--navy-800) !important;
  background: #F1F4F8 !important;
}

/* Form req asterisk */
.field label .req { color: var(--navy-800) !important; }

/* Brand tagline */
.brand-tagline { color: var(--ink-500) !important; }

/* Nav active */
.topnav-links a.active { color: var(--navy-800) !important; }

/* FAQ q hover */
.qa-q:hover { color: var(--navy-800) !important; }

/* Kcard link hover */
.kbcard-link:hover { color: var(--navy-600) !important; }

/* Hide old intro-quote (now using intro-video) */
.intro-quote { display: none !important; }


/* ============================================================
 * Header logo + footer fixes
 * ============================================================ */

/* (logo size is set inline via React style for fine-tuning) */
.hero { padding-top: 180px !important; }

/* Footer brand + logo */
.foot-brand-row { display: flex !important; align-items: center; margin-bottom: 18px; }
.foot-mark {
  display: block !important;
  height: 150px;
  width: auto;
  margin-inline-start: -8px;
  /* Filter logo to white */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* Footer column titles + links: cream on navy bg (not navy on navy!) */
.foot-col h4 {
  color: rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 18px;
}
.foot-col a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14.5px;
  transition: color .2s;
}
.foot-col a:hover {
  color: white !important;
}

/* Footer tagline */
.foot-tagline {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 32ch;
}

/* Phone number — element stays RTL; bdi handles LTR digit rendering */
.foot-tel {
  display: block;
  text-align: start;
}

/* Footer bottom bar */
.foot-bar {
  color: rgba(255, 255, 255, 0.45) !important;
}
.foot-bar a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.foot-bar a:hover { color: white; }
.foot-legal {
  display: flex;
  gap: 18px;
}

/* Footer socials */
.foot-social {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.12);
}
.foot-social:hover {
  background: white;
  color: var(--navy-900);
  border-color: white;
}

/* Mobile preview adjustments */


/* ============================================================
 * Floating social bar — bottom right (above WhatsApp FAB)
 * ============================================================ */
.social-bar {
  position: fixed;
  bottom: 96px;        /* sits above the WhatsApp FAB */
  inset-inline-end: 28px;
  z-index: 31;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-bar-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(10, 124, 134, 0.28);
  transition: all .22s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.social-bar-item:hover {
  background: white;
  color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 124, 134, 0.32);
}


/* Larger header to accommodate bigger logo */
.hero { padding-top: 210px !important; }



/* Reset navbar height for tightly-cropped logo */
.hero { padding-top: 160px !important; }
.foot-mark { height: 110px !important; }



/* Tighter navbar for smaller logo */
.hero { padding-top: 144px !important; }


/* Navbar accommodates 84px logo comfortably */
.hero { padding-top: 168px !important; }
.brand-logo { max-height: none !important; max-width: none !important; }


/* Tighter navbar for smaller logo */
.hero { padding-top: 140px !important; }


/* Navbar fits 97px logo with breathing room */
.hero { padding-top: 184px !important; }


.hero { padding-top: 156px !important; }


.hero { padding-top: 144px !important; }


/* ============================================================
 * Mobile preview header fixes
 * ============================================================ */

/* Hide consultation CTA in mobile preview */


/* ============================================================
 * Hamburger menu — contained within mobile-preview frame
 * ============================================================ */

/* Mobile menu link order — reverse so it reads top-down naturally */
.drawer {
  text-align: start;
}
.drawer .btn { width: 100%; }


/* Desktop navbar restored to 84px logo */
.hero { padding-top: 116px !important; padding-bottom: 0 !important; }

/* ============================================================
   Hero — full-bleed background image with dark overlay
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.66) 52%, rgba(0, 0, 0, 0.80) 100%),
    url("../img/home-hero-bg.jpg") center bottom / cover no-repeat #0E2A2E !important;
  min-height: 94vh;
  display: flex;
  align-items: center;
}
.hero::before { content: none !important; }
.hero::after { content: none !important; }

.hero-box { color: white; }

.hero-kicker {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: white !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-kicker .dot {
  background: white !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2) !important;
}

.hero h1 {
  color: white !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  line-height: 1.14 !important;
}
.hero h1 .accent {
  color: white !important;
}
.hero h1 .underline::after {
  background: rgba(255, 255, 255, 0.55) !important;
}

.hero p.lede {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* CTAs over dark hero */
.hero .btn-primary {
  background: white !important;
  color: var(--navy-900) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35) !important;
}
.hero .btn-primary:hover {
  background: #F1F4F8 !important;
  color: var(--navy-900) !important;
}
.hero .btn-secondary {
  background: transparent !important;
  color: white !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.hero .btn-secondary:hover {
  background: white !important;
  color: var(--navy-900) !important;
  border-color: white !important;
}

.hero-meta { color: rgba(255, 255, 255, 0.82) !important; }
.hero-meta-item { color: rgba(255, 255, 255, 0.82) !important; }
.hero-meta-item svg { color: white !important; }

/* Video block over dark hero — invert chrome */
.hero .video-block {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero .video-block:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.hero .video-block-label {
  color: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.hero .video-block-title { color: white !important; }
.hero .video-block-sub { color: rgba(255, 255, 255, 0.6) !important; }
.hero .video-play-btn {
  background: white !important;
  color: var(--navy-900) !important;
}

/* Navbar — always solid WHITE on all pages (never transparent, never cream) */
.navbar {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: saturate(140%) blur(14px) !important;
  -webkit-backdrop-filter: saturate(140%) blur(14px) !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: 0 6px 24px -18px rgba(7, 94, 102, .28) !important;
}

/* Breadcrumbs — Nir 2026-06-07: kill the wide tracking between Hebrew
   letters (was 0.2-0.32em + uppercase). One global rule for every page. */
.intro-crumb, .sv-crumb, .svr-crumb, .svm-crumb, .svc3-crumb, .svp-crumb,
.kp-crumb, .gp-crumb, .sa-crumb, .cp-crumb {
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  font-size: 13.5px !important;
}

/* ============================================================
   Audience cards — image-based (replaces icon-based layout)
   ============================================================ */
.audience-grid-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience-card-image {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.audience-card-image:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.audience-card-image::after { display: none !important; }

.audience-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
}
.audience-image-pattern {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.audience-card-image.tone-deep .audience-image-pattern {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.audience-card-image.tone-mid .audience-image-pattern {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
}
.audience-card-image.tone-light .audience-image-pattern {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
}
.audience-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
  z-index: 1;
}
.audience-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 16, 40, 0.55) 0%, transparent 60%);
  z-index: 2;
}
.audience-image-tag {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 3;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.audience-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.audience-body h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.3;
  color: var(--navy-900);
  margin: 0;
}
.audience-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
  text-wrap: pretty;
}

@media (max-width: 1024px) {
  .audience-grid-images { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .audience-grid-images { grid-template-columns: 1fr; }
  .audience-image { aspect-ratio: 16 / 9; }
}

/* Eyebrows — small dot bullet instead of dash */
.eyebrow::before,
.eyebrow.on-navy::before {
  display: inline-block !important;
  content: "" !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--ink-400) !important;
  opacity: 1 !important;
  flex-shrink: 0;
}
.eyebrow.on-navy::before {
  background: rgba(255, 255, 255, 0.6) !important;
}
.eyebrow {
  gap: 10px !important;
}

/* WP build: field errors are pre-rendered and toggled via .field.error (JS), not conditionally mounted */
.field-error { display: none; }
.field.error .field-error { display: flex; }
.field.error input,
.field.error select { border-color: #B84B45; }

/* ============================================================
   FOOTER LEAD CTA — cosmetics-express layout, Makor palette.
   Light card sitting on the navy footer; centred head with a gold
   highlight word; one horizontal row of fields + a navy submit.
   Rendered once in footer.php → site-wide. Nir 2026-06-07.
   ============================================================ */
.cta-lead-band {
  position: relative;
  padding: 0 0 clamp(40px, 5vw, 64px);   /* space between the card and the footer columns */
}
.cta-lead {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 40px) clamp(20px, 3vw, 44px) clamp(20px, 2.4vw, 30px);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.6);
}
.cta-lead-head { text-align: center; max-width: 700px; margin: 0 auto clamp(18px, 2.2vw, 28px); }
.cta-lead-head h3 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.18; letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 8px; text-wrap: balance;
}
.cta-lead-head .hl,
.cta-lead-head .cta-comma { color: #FFB12E; }
.cta-lead-head p {
  font-size: clamp(14px, 1.4vw, 15.5px);
  line-height: 1.6; color: var(--ink-500); margin: 0;
}
.cta-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px; align-items: stretch;
}
.cta-lead .cta-field { margin: 0; }
.cta-lead .cta-field input {
  width: 100%; height: 52px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; font: inherit; font-size: 15px; color: var(--navy-900);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cta-lead .cta-field input::placeholder { color: var(--ink-400); }
.cta-lead .cta-field input:focus { outline: none; border-color: #3FBFC9; box-shadow: 0 0 0 4px rgba(42,92,159,0.12); }
.cta-lead .cta-field.error input { border-color: #D9534F; }
.cta-lead-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding: 0 30px;
  border: 0; border-radius: 12px;
  background: linear-gradient(150deg, #0A7C86 0%, #075E66 100%);
  color: #fff; font: inherit; font-size: 15.5px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 16px 30px -16px rgba(7, 94, 102, 0.6);
  transition: transform .2s ease, filter .2s ease;
}
.cta-lead-submit:hover { transform: translateY(-1px); filter: brightness(1.08); }
.cta-lead-submit svg { flex: 0 0 auto; }
.cta-lead-consent {
  display: flex; align-items: flex-start; gap: 9px;
  margin: 14px 2px 0;
  font-size: 13px; line-height: 1.5; color: var(--ink-500);
  cursor: pointer; text-align: right;
}
.cta-lead-consent input[type="checkbox"] {
  flex: 0 0 auto; width: 17px; height: 17px; margin-top: 1px;
  accent-color: #0A7C86; cursor: pointer;
}
.cta-lead-consent a { color: var(--navy-700); text-decoration: underline; }
.cta-lead-consent a:hover { color: #FFB12E; }
.cta-lead-fine { margin: 12px 0 0; text-align: center; font-size: 12.5px; color: var(--ink-400); }
.cta-lead .form-success { text-align: center; padding: 6px 0 8px; }
.cta-lead .form-success-icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 12px; background: rgba(255, 177, 46,0.16); color: #FFB12E; }
.cta-lead .form-success h4 { margin: 0 0 6px; font-size: 20px; color: var(--navy-900); }
.cta-lead .form-success p { margin: 0; color: var(--ink-500); }

@media (max-width: 760px) {
  .cta-lead-row { grid-template-columns: 1fr; gap: 10px; }
  .cta-lead-submit { width: 100%; }
}