/* ============================================================================
   Kol Bina — landing page
   Written RTL-first: every directional rule uses logical properties so the
   Hebrew (rtl) and English (ltr) renderings share one stylesheet.
   ==========================================================================*/

/* ---------------------------------------------------------------- tokens -- */
:root {
  /* Brand — sampled from the logo */
  --navy-900: #071528;
  --navy-800: #0a1f3d;
  --navy-700: #10305c;
  --teal-500: #20b2aa;
  --teal-600: #12968f;
  --teal-700: #0a7a74;

  /* Neutrals */
  --ink: #0f2340;
  --ink-soft: #33465f;
  --muted: #5f7189;
  --line: #e2e9f1;
  --line-soft: #eef3f8;
  --surface: #ffffff;
  --surface-2: #f7fafc;
  --bg: #f4f7fa;

  /* On dark */
  --on-dark: #eef5fb;
  --on-dark-muted: #a8bdd4;
  --on-dark-line: rgba(255, 255, 255, 0.14);

  --grad-brand: linear-gradient(135deg, var(--navy-800) 0%, var(--teal-600) 100%);
  --grad-teal: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);

  --shadow-sm: 0 1px 2px rgba(10, 31, 61, 0.06), 0 2px 8px rgba(10, 31, 61, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 31, 61, 0.07), 0 12px 32px rgba(10, 31, 61, 0.06);
  --shadow-lg: 0 12px 28px rgba(10, 31, 61, 0.10), 0 32px 64px rgba(10, 31, 61, 0.10);
  --shadow-teal: 0 8px 24px rgba(18, 150, 143, 0.32);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --container: 1160px;
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------------ base -- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body { overflow-x: clip; }
}

body {
  font-family: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
picture,
video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(32, 178, 170, 0.24);
  color: var(--navy-900);
}

/* Numbers, phone numbers and Latin fragments stay LTR inside Hebrew text */
.ltr { direction: ltr; unicode-bidi: isolate; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  inset-block-start: -100%;
  inset-inline-start: 12px;
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
}
.skip-link:focus { inset-block-start: 0; }

/* --------------------------------------------------------------- layout -- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

@media (max-width: 600px) {
  .container { width: min(var(--container), 100% - 2rem); }
}

.section {
  padding-block: clamp(64px, 9vw, 116px);
  position: relative;
}

.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section-head {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
  margin-block-end: clamp(40px, 5vw, 64px);
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: rgba(32, 178, 170, 0.10);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-block-end: 18px;
}

.on-dark .eyebrow {
  color: #7fe3dc;
  background: rgba(32, 178, 170, 0.16);
}

/* ----------------------------------------------------------- typography -- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 900; line-height: 1.14; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.12rem, 1.8vw, 1.3rem); }

.lead {
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
  color: var(--muted);
  font-weight: 400;
  text-wrap: pretty;
}

.on-dark .lead { color: var(--on-dark-muted); }

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.on-dark .grad-text {
  background: linear-gradient(120deg, #ffffff 0%, #7fe3dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s var(--ease), box-shadow 0.24s var(--ease),
              background-color 0.2s var(--ease), border-color 0.2s var(--ease),
              opacity 0.2s var(--ease);
  white-space: nowrap;
}

.btn svg { flex: none; width: 20px; height: 20px; }

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-teal);
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover { box-shadow: 0 12px 30px rgba(18, 150, 143, 0.42); }

.btn--dark {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 8px 22px rgba(10, 31, 61, 0.26);
}
.btn--dark:hover { background: var(--navy-700); }

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--teal-500); background: rgba(32, 178, 170, 0.06); }

.on-dark .btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.on-dark .btn--ghost:hover {
  border-color: #7fe3dc;
  background: rgba(255, 255, 255, 0.08);
}

.btn--sm { padding: 10px 18px; font-size: 0.92rem; }
.btn--block { width: 100%; }

.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-block-end: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-stuck {
  border-block-end-color: var(--line);
  box-shadow: 0 4px 20px rgba(10, 31, 61, 0.05);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand { display: flex; align-items: center; flex: none; }
.brand img {
  height: 40px;
  width: auto;
}

.site-nav { margin-inline-start: auto; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.6vw, 22px);
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 8px 10px;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.site-nav a:hover { color: var(--teal-700); background: rgba(32, 178, 170, 0.08); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-toggle:hover { border-color: var(--teal-500); color: var(--teal-700); }
.lang-toggle svg { width: 17px; height: 17px; flex: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded='true'] .icon-close { display: block; }
.nav-toggle[aria-expanded='true'] .icon-open { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .header-actions { margin-inline-start: auto; }

  .site-nav {
    position: absolute;
    inset-inline: 0;
    inset-block-start: 100%;
    margin: 0;
    background: var(--surface);
    border-block-end: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px clamp(1rem, 4vw, 2rem) 20px;
  }
  .site-nav a { padding: 12px 14px; font-size: 1.05rem; }
  .header-cta { display: none; }
}

@media (max-width: 360px) {
  .brand img { height: 32px; }
  .lang-toggle { padding: 9px 12px; }
  .lang-toggle .lang-label { display: none; }
}

/* ----------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(32, 178, 170, 0.30), transparent 60%),
    radial-gradient(900px 480px at 8% 108%, rgba(16, 48, 92, 0.85), transparent 62%),
    linear-gradient(165deg, #08192f 0%, var(--navy-800) 48%, #0b2748 100%);
  color: var(--on-dark);
  padding-block: clamp(56px, 8vw, 104px) clamp(72px, 10vw, 128px);
  isolation: isolate;
}

/* Soft aurora blobs.
   Drawn as radial gradients rather than blurred solids: a large `filter: blur()`
   forces a full-size offscreen buffer on every composite, which stalled the
   compositor while scrolling. Gradients render for free and look the same. */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  width: clamp(320px, 52vw, 680px);
  aspect-ratio: 1;
  background: radial-gradient(circle closest-side, rgba(32, 178, 170, 0.55), transparent 100%);
  inset-block-start: -20%;
  inset-inline-end: -12%;
}
.hero::after {
  width: clamp(300px, 44vw, 580px);
  aspect-ratio: 1;
  background: radial-gradient(circle closest-side, rgba(27, 75, 143, 0.6), transparent 100%);
  inset-block-end: -24%;
  inset-inline-start: -14%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-actions, .hero-badges { justify-content: center; }
}

.hero h1 { margin-block-end: 20px; color: #fff; }

.hero .lead {
  max-width: 54ch;
  margin-block-end: 32px;
  font-size: clamp(1.06rem, 1.9vw, 1.24rem);
}
@media (max-width: 940px) { .hero .lead { margin-inline: auto; } }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 8px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--on-dark-line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--on-dark);
  margin-block-end: 26px;
}
.hero-pill span.tagchip {
  background: var(--grad-teal);
  color: #fff;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 3px 11px;
  border-radius: var(--r-pill);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block-end: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  font-size: 0.93rem;
  color: var(--on-dark-muted);
}
.hero-badges li { display: flex; align-items: center; gap: 8px; }
.hero-badges svg { width: 18px; height: 18px; color: #7fe3dc; flex: none; }

/* ----------------------------------------------- hero: live call screen -- */
/* The product is a phone call, not a chat. Every element here is chosen to say
   "voice": a running call timer, a pulsing speaking orb, waveforms, speech as a
   transcript with speaker labels, and real call controls. */
.call-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-xl);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px rgba(3, 12, 26, 0.45);
  padding: 18px 20px 20px;
  max-width: 440px;
  margin-inline: auto;
  width: 100%;
}

/* --- top bar: live status + running timer ------------------------------- */
.call-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block-end: 11px;
  border-block-end: 1px solid var(--on-dark-line);
}

.call-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #7fe3dc;
  background: rgba(32, 178, 170, 0.14);
  border: 1px solid rgba(127, 227, 220, 0.28);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex: none;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.call-timer {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--on-dark);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* --- stage: the speaking orb -------------------------------------------- */
.call-stage {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding-block: 14px 12px;
}

.orb {
  position: relative;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  margin-block-end: 5px;
}

.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(127, 227, 220, 0.55);
  animation: orb-pulse 2.8s ease-out infinite;
}
.orb-ring:nth-child(2) { animation-delay: 1.4s; }

.orb-core {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-teal);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(18, 150, 143, 0.5);
}
.orb-core svg { width: 22px; height: 22px; color: #fff; }

.orb-name {
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.3;
}

.orb-state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--on-dark-muted);
}

/* --- animated voice bars ------------------------------------------------ */
.wave {
  display: inline-flex;
  align-items: center;
  gap: 2.5px;
  height: 16px;
  flex: none;
}
.wave i {
  display: block;
  width: 2.5px;
  border-radius: 2px;
  background: #7fe3dc;
  transform-origin: center;
  animation: wave-bar 1.1s ease-in-out infinite;
}
.wave i:nth-child(1) { height: 34%; animation-delay: 0s; }
.wave i:nth-child(2) { height: 68%; animation-delay: 0.11s; }
.wave i:nth-child(3) { height: 100%; animation-delay: 0.22s; }
.wave i:nth-child(4) { height: 55%; animation-delay: 0.33s; }
.wave i:nth-child(5) { height: 86%; animation-delay: 0.44s; }
.wave i:nth-child(6) { height: 40%; animation-delay: 0.55s; }
.wave i:nth-child(7) { height: 62%; animation-delay: 0.66s; }

.wave--live { height: 20px; }
.wave--live i { width: 3px; }

/* --- captions: speech as a transcript, not as messages ------------------ */
.captions {
  list-style: none;
  display: grid;
  gap: 12px;
  padding-block: 15px;
  border-block-start: 1px solid var(--on-dark-line);
  align-content: start;
}

.caption {
  padding-inline-start: 13px;
  border-inline-start: 2px solid;
  opacity: 0;
  transform: translateY(8px);
  animation: caption-in 0.55s var(--ease) forwards;
}
.caption:nth-child(1) { animation-delay: 0.4s; }
.caption:nth-child(2) { animation-delay: 1.3s; }
.caption:nth-child(3) { animation-delay: 2.3s; }

.caption--user { border-inline-start-color: rgba(255, 255, 255, 0.3); }
.caption--bot { border-inline-start-color: var(--teal-500); }

.cap-who {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-block-end: 3px;
}
.cap-who svg { width: 13px; height: 13px; flex: none; }
.caption--user .cap-who { color: rgba(255, 255, 255, 0.62); }
.caption--bot .cap-who { color: #7fe3dc; }

.caption p {
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--on-dark);
}
.caption--user p { color: rgba(255, 255, 255, 0.9); }

/* --- call controls ------------------------------------------------------ */
.call-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-block-start: 13px;
  border-block-start: 1px solid var(--on-dark-line);
}

.cbtn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--on-dark-line);
  color: var(--on-dark);
}
.cbtn svg { width: 17px; height: 17px; }

.cbtn--end {
  background: #e5484d;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(229, 72, 77, 0.4);
}
.cbtn--end svg { transform: rotate(135deg); }

@media (max-width: 940px) {
  .call-card { max-width: 400px; }
}

/* ------------------------------------------------------------ trust bar -- */
.trust {
  background: var(--surface);
  border-block-end: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
}

@media (max-width: 780px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
}

.trust-item strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.trust-item span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  margin-block-start: 6px;
}

/* ---------------------------------------------------------------- steps -- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  counter-reset: step;
}

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

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(32, 178, 170, 0.45);
}

.step-num {
  counter-increment: step;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin-block-end: 18px;
  box-shadow: var(--shadow-teal);
}
.step-num::before { content: counter(step); }

.step h3 { margin-block-end: 8px; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ------------------------------------------------- what you can ask -- */
/* Real spoken sentences do the selling here: most visitors have never used a
   voice assistant and cannot picture what "talk freely" means in practice. */
.asks-wrap { margin-block-end: clamp(48px, 6vw, 72px); }

/* Grouped by area of life rather than one long chip list: the point is to show
   breadth ("it does all of this?"), and six labelled cards make the categories
   scannable in a way a flat cloud of quotes never was. */
.askgrid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.askgroup {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.askgroup:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(32, 178, 170, 0.45);
}

.askgroup-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-end: 16px;
}
.askgroup-icon {
  width: 40px; height: 40px;
  flex: none;
  border-radius: var(--r-sm);
  background: linear-gradient(140deg, rgba(32, 178, 170, 0.14), rgba(10, 31, 61, 0.10));
  border: 1px solid rgba(32, 178, 170, 0.22);
  display: grid;
  place-items: center;
}
.askgroup-icon svg { width: 21px; height: 21px; color: var(--teal-700); }
.askgroup-head h3 { font-size: 1.06rem; line-height: 1.3; }

.asklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* The quotes carry the message, so they get body-text contrast, not muted grey. */
.asklist li {
  position: relative;
  padding-inline-start: 24px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
  /* Keeps a closing quote mark from being stranded alone on the last line. */
  text-wrap: pretty;
}
/* Speech marker: a small teal dot with a soft halo, so each line reads as
   something said out loud rather than a feature bullet. */
.asklist li::before {
  content: '';
  position: absolute;
  inset-inline-start: 6px;
  inset-block-start: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.16);
}

/* Filled pill, not quiet grey text: "paid plans only" is the single most
   important qualifier on these cards and has to survive a skim. */
.askgroup-note {
  margin-block-start: auto;
  padding-block-start: 18px;
}
.askgroup-note span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: var(--grad-teal);
  border-radius: var(--r-pill);
  padding: 5px 13px;
}

.asks-more {
  text-align: center;
  margin-block-start: 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.subhead {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--ink);
  margin-block-end: clamp(26px, 3vw, 36px);
}
.subhead::after {
  content: '';
  display: block;
  width: 46px; height: 3px;
  border-radius: 2px;
  background: var(--grad-teal);
  margin: 12px auto 0;
}

/* ------------------------------------------------------------- features -- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(32, 178, 170, 0.45);
}

.feature-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, rgba(32, 178, 170, 0.14), rgba(10, 31, 61, 0.10));
  border: 1px solid rgba(32, 178, 170, 0.22);
  display: grid;
  place-items: center;
  margin-block-end: 18px;
}
.feature-icon svg { width: 25px; height: 25px; color: var(--teal-700); }

.feature h3 { margin-block-end: 9px; }
.feature p { color: var(--muted); font-size: 0.98rem; }

.feature-note {
  display: inline-block;
  margin-block-start: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-700);
  background: rgba(32, 178, 170, 0.10);
  padding: 4px 11px;
  border-radius: var(--r-pill);
}

/* --------------------------------------------------------- kosher panel -- */
.panel-dark {
  background:
    radial-gradient(900px 420px at 82% 4%, rgba(32, 178, 170, 0.22), transparent 58%),
    linear-gradient(155deg, var(--navy-900) 0%, var(--navy-800) 60%, #0b2a4d 100%);
  color: var(--on-dark);
  overflow: hidden;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .filter-grid { grid-template-columns: 1fr; gap: 40px; } }

.filter-copy h2 { color: #fff; margin-block-end: 18px; }
.filter-copy .lead { margin-block-end: 26px; }

.shield-badge {
  width: 74px; height: 74px;
  border-radius: 22px;
  background: rgba(32, 178, 170, 0.16);
  border: 1px solid rgba(127, 227, 220, 0.35);
  display: grid;
  place-items: center;
  margin-block-end: 24px;
}
@media (max-width: 900px) { .shield-badge { margin-inline: auto; } }
.shield-badge svg { width: 36px; height: 36px; color: #7fe3dc; }

.rules {
  list-style: none;
  display: grid;
  gap: 12px;
}

.rule {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-md);
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.rule:hover { background: rgba(255, 255, 255, 0.10); border-color: rgba(127, 227, 220, 0.4); }

.rule svg { width: 21px; height: 21px; color: #7fe3dc; flex: none; margin-block-start: 3px; }
.rule strong { display: block; color: #fff; font-weight: 700; font-size: 1rem; }
.rule span { display: block; color: var(--on-dark-muted); font-size: 0.92rem; line-height: 1.55; }

/* -------------------------------------------------------------- pricing -- */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(18px, 2.2vw, 24px);
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan--featured {
  border-color: transparent;
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--teal-500);
}
.plan--featured:hover { box-shadow: var(--shadow-lg), 0 0 0 2px var(--teal-600); }

.plan-badge {
  position: absolute;
  inset-block-start: -13px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: var(--grad-teal);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-teal);
}
[dir='rtl'] .plan-badge { transform: translateX(50%); }

.plan-name { font-size: 1.14rem; font-weight: 800; margin-block-end: 4px; }
.plan-tagline { font-size: 0.9rem; color: var(--muted); min-height: 2.6em; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-block: 18px 4px;
  flex-wrap: wrap;
}
.plan-price .amount {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--navy-800);
}
.plan-price .currency { font-size: 1.3rem; font-weight: 800; color: var(--navy-800); }
.plan-price .per { font-size: 0.92rem; color: var(--muted); font-weight: 600; }

.plan-minutes {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--teal-700);
  margin-block-end: 22px;
}

.plan-features,
.plan-limit-list {
  list-style: none;
  display: grid;
  gap: 11px;
}
.plan-features { margin-block-end: 22px; }

.plan-features li,
.plan-limit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.plan-features svg,
.plan-limit-list svg { width: 18px; height: 18px; flex: none; margin-block-start: 4px; }
.plan-features svg { color: var(--teal-600); }

/* Exclusions were previously greyed out, which read as "disabled decoration"
   rather than "this plan does not include it". They now get their own labelled
   block and full-contrast text, with the cross carrying the negative signal. */
.plan-limits {
  margin-block-end: 18px;
  padding: 14px 16px;
  background: #fdf6f4;
  border: 1px solid #f3ddd6;
  border-radius: var(--r-md);
}

.plan-limits-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b0563c;
  margin-block-end: 10px;
}

.plan-limit-list li { color: #7d5546; }
.plan-limit-list svg { color: #d4694a; }

.plan-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
  margin-block-end: 20px;
}
.plan-note svg { width: 16px; height: 16px; flex: none; margin-block-start: 3px; color: var(--muted); }

.plan .btn { margin-block-start: auto; }

.pricing-note {
  margin-block-start: 28px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.pricing-note a { color: var(--teal-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------------------ faq -- */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.faq-item[open] { border-color: rgba(32, 178, 170, 0.45); box-shadow: var(--shadow-sm); }

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
/* Physical borders on purpose: the chevron must point DOWN when closed in both
   directions, and logical borders flip it sideways in RTL. */
.faq-item summary::after {
  content: '';
  margin-inline-start: auto;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--teal-600);
  border-bottom: 2.5px solid var(--teal-600);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex: none;
}
.faq-item[open] summary::after { transform: translateY(3px) rotate(-135deg); }
.faq-item summary:hover { color: var(--teal-700); }

.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* -------------------------------------------------------------- contact -- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-copy h2 { margin-block-end: 16px; }
.contact-copy .lead { margin-block-end: 28px; }

.contact-links { display: grid; gap: 14px; list-style: none; }
.contact-links li { display: flex; align-items: center; gap: 13px; }
.contact-links .ci {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: rgba(32, 178, 170, 0.10);
  border: 1px solid rgba(32, 178, 170, 0.22);
  display: grid; place-items: center;
  flex: none;
}
.contact-links .ci svg { width: 20px; height: 20px; color: var(--teal-700); }
.contact-links small { display: block; color: var(--muted); font-size: 0.84rem; line-height: 1.4; }
.contact-links strong { font-weight: 700; font-size: 1rem; }
.contact-links a:hover strong { color: var(--teal-700); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.2vw, 38px);
  box-shadow: var(--shadow-md);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.field { margin-block-end: 16px; }

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-block-end: 7px;
  color: var(--ink-soft);
}
.field label .req { color: #d0342c; margin-inline-start: 3px; }
.field label .opt { color: var(--muted); font-weight: 500; font-size: 0.84rem; }

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 132px; line-height: 1.6; }

.field input::placeholder,
.field textarea::placeholder { color: #9aa8b8; }

.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.16);
}

.field input[aria-invalid='true'],
.field textarea[aria-invalid='true'] {
  border-color: #d0342c;
  box-shadow: 0 0 0 4px rgba(208, 52, 44, 0.12);
}

/* email + phone always read left-to-right, even inside an RTL form */
input[type='email'],
input[type='tel'] { direction: ltr; }
[dir='rtl'] input[type='email'],
[dir='rtl'] input[type='tel'] { text-align: right; }
[dir='rtl'] input[type='email']::placeholder,
[dir='rtl'] input[type='tel']::placeholder { direction: rtl; text-align: right; }

.field-error {
  display: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: #d0342c;
  margin-block-start: 6px;
}
.field.has-error .field-error { display: block; }

/* honeypot — hidden from humans, reachable by naive bots */
.hp-field {
  position: absolute !important;
  inset-inline-start: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

.turnstile-holder:not(:empty) { margin-block-end: 18px; }

.form-consent {
  font-size: 0.84rem;
  color: var(--muted);
  margin-block: 4px 18px;
  line-height: 1.55;
}
.form-consent a { color: var(--teal-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.form-status {
  margin-block-start: 16px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.94rem;
  display: none;
  align-items: flex-start;
  gap: 10px;
}
.form-status.is-shown { display: flex; }
.form-status svg { width: 20px; height: 20px; flex: none; margin-block-start: 2px; }
.form-status.is-success { background: #e8f7ee; color: #1a6b39; border: 1px solid #b9e4c9; }
.form-status.is-error { background: #fdecea; color: #a52720; border: 1px solid #f5c6c2; }

.spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* --------------------------------------------------------------- footer -- */
.site-footer {
  background: var(--navy-900);
  color: var(--on-dark-muted);
  padding-block: clamp(48px, 6vw, 72px) 30px;
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-block-end: 36px;
  border-block-end: 1px solid rgba(255, 255, 255, 0.10);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-block-end: 16px; }
.footer-brand svg { width: 40px; height: 40px; flex: none; }
.footer-brand .name { color: #fff; font-weight: 900; font-size: 1.2rem; line-height: 1.2; }
.footer-brand .tag { display: block; font-size: 0.8rem; font-weight: 500; color: var(--on-dark-muted); }

.footer-about { max-width: 40ch; line-height: 1.65; }

.footer-col h4 {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-block-end: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #7fe3dc; }

.footer-bottom {
  padding-block-start: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.87rem;
}
.footer-bottom a:hover { color: #7fe3dc; }

/* ------------------------------------------------------------ animation -- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal[data-delay='1'] { transition-delay: 0.08s; }
.reveal[data-delay='2'] { transition-delay: 0.16s; }
.reveal[data-delay='3'] { transition-delay: 0.24s; }
.reveal[data-delay='4'] { transition-delay: 0.32s; }
.reveal[data-delay='5'] { transition-delay: 0.40s; }

@keyframes caption-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes orb-pulse {
  0%   { transform: scale(0.86); opacity: 0.85; }
  100% { transform: scale(1.65); opacity: 0; }
}
@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { opacity: 0.75; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .caption { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- printing -- */
@media print {
  .site-header, .hero::before, .hero::after, .site-footer, .form-card { display: none; }
  body { background: #fff; color: #000; }
}
