/* ==========================================================================
   KABIDE — Homepage stylesheet
   Matches the in-app aesthetic exactly.
   ========================================================================== */

:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;

  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-700: #b45309;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --bg-veil: rgba(255, 255, 255, 0.72);

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hebrew: 'Frank Ruhl Libre', 'Times New Roman', serif;
  --font-hebrew-display: 'David Libre', 'Frank Ruhl Libre', 'Times New Roman', serif;

  --max-w: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 118, 110, 0.06), 0 2px 6px rgba(15, 118, 110, 0.05);
  --shadow-md: 0 6px 20px rgba(15, 118, 110, 0.10), 0 2px 6px rgba(15, 118, 110, 0.06);
  --shadow-lg: 0 18px 40px rgba(15, 118, 110, 0.14), 0 4px 14px rgba(15, 118, 110, 0.08);
  --shadow-glow: 0 12px 36px rgba(20, 184, 166, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--slate-800);
  line-height: 1.6;
  background-color: #eef9fb;
  background-image: url('kabide-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-veil {
  position: fixed;
  inset: 0;
  background: var(--bg-veil);
  pointer-events: none;
  z-index: 0;
}

.site-header, section, .site-footer {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--slate-900);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: rgba(204, 251, 241, 0.55);
  border: 1px solid rgba(20, 184, 166, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
}
.section-sub {
  font-size: 17px;
  color: var(--slate-600);
  max-width: 620px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  transition: transform 150ms ease, box-shadow 200ms ease, background 150ms ease, color 150ms ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.35);
}
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(20, 184, 166, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal-800);
  border-color: rgba(20, 184, 166, 0.22);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 184, 166, 0.4);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 118, 110, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--teal-900);
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-700);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.brand-hebrew {
  font-family: var(--font-hebrew);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-800);
  margin-top: 6px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-dedication {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 22px;
  background: linear-gradient(135deg, rgba(204, 251, 241, 0.7), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 999px;
  box-shadow:
    0 4px 14px rgba(20, 184, 166, 0.22),
    0 0 0 4px rgba(20, 184, 166, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  text-align: center;
  max-width: 540px;
  white-space: nowrap;
}
.header-dedication-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-700);
  line-height: 1;
}
.header-dedication-hebrew {
  font-family: var(--font-hebrew-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: 0.005em;
  line-height: 1.2;
}

.mobile-nav-dedication {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  margin-bottom: 4px;
  background: linear-gradient(135deg, rgba(204, 251, 241, 0.6), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.18);
  text-align: center;
}
.mobile-nav-dedication .header-dedication-hebrew {
  font-size: 15px;
  white-space: normal;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--teal-800);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 184, 166, 0.2);
}
.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.35);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px var(--gutter) 20px;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(15, 118, 110, 0.08);
  font-weight: 600;
  font-size: 15px;
  color: var(--slate-700);
}
.mobile-nav a { padding: 12px 4px; border-radius: 8px; }
.mobile-nav a:hover { background: var(--teal-50); }
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px solid rgba(15, 118, 110, 0.08);
}
.mobile-nav.is-open { display: flex; }

/* HERO */
.hero {
  padding-top: clamp(56px, 9vw, 96px);
  padding-bottom: clamp(56px, 9vw, 96px);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-copy {
  animation: fadeUp 700ms ease both;
}
.hero-title {
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 500;
  margin-top: 24px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--teal-700);
  font-weight: 500;
}
.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 6px;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--slate-600);
  margin-top: 20px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-verse {
  margin: 22px 0 0;
  padding: 18px 22px 18px 0;
  border-right: 3px solid var(--teal-500);
  background: linear-gradient(to left, rgba(204, 251, 241, 0.35) 0%, rgba(204, 251, 241, 0.12) 60%, transparent 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
}
.hero-verse::before {
  content: '';
  position: absolute;
  top: 14px;
  right: -3px;
  width: 3px;
  height: 32px;
  background: linear-gradient(to bottom, var(--cyan-500), var(--teal-600));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(20, 184, 166, 0.4);
}
.hero-verse-text {
  font-family: var(--font-hebrew-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1.4;
  letter-spacing: 0.005em;
  margin: 0;
}
.hero-verse-yiddish {
  font-family: var(--font-hebrew);
  font-size: clamp(15px, 1.5vw, 16.5px);
  font-weight: 400;
  color: var(--teal-800);
  line-height: 1.85;
  letter-spacing: 0.005em;
  margin: 12px 0 0;
  opacity: 0.92;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  color: var(--slate-600);
  font-size: 14px;
}
.trust-avatars { display: flex; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: var(--shadow-sm);
}
.avatar:first-child { margin-left: 0; }
.avatar-1 { background: linear-gradient(135deg, #2dd4bf, #06b6d4); }
.avatar-2 { background: linear-gradient(135deg, #f59e0b, #f97316); }
.avatar-3 { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.avatar-4 { background: linear-gradient(135deg, #a855f7, #ec4899); }

.hero-visual {
  position: relative;
  min-height: 480px;
  animation: fadeUp 700ms ease both;
  animation-delay: 150ms;
}
.hero-blob {
  position: absolute;
  inset: -10%;
  background: radial-gradient(closest-side, rgba(45, 212, 191, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  backdrop-filter: blur(8px);
  transition: transform 400ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.visual-card-back {
  width: min(360px, 75%);
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, rgba(204, 251, 241, 0.6), rgba(255, 255, 255, 0.96));
  z-index: 1;
}
.visual-card-front {
  width: min(420px, 90%);
  bottom: 0;
  right: 0;
  transform: rotate(2deg);
  z-index: 2;
}
.visual-card:hover {
  transform: rotate(0) translateY(-2px);
}

.visual-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.visual-card-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-200);
  display: inline-block;
  margin-right: 6px;
}
.visual-card-header .dot:nth-child(1) { background: #fca5a5; }
.visual-card-header .dot:nth-child(2) { background: #fcd34d; }
.visual-card-header .dot:nth-child(3) { background: #86efac; }

.vch-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  font-weight: 700;
}
.vch-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--slate-900);
  margin-top: 4px;
}
.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-ok {
  background: var(--teal-100);
  color: var(--teal-800);
}
.vc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--teal-700);
  margin-bottom: 10px;
}
.vc-row {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid;
}
.vc-row-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-800);
}
.vc-row-meta {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 2px;
}
.vc-open {
  background: rgba(254, 243, 199, 0.5);
  border-color: rgba(252, 211, 77, 0.4);
}
.vc-assigned {
  background: rgba(204, 251, 241, 0.4);
  border-color: rgba(94, 234, 212, 0.4);
}
.vc-msg {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  margin-bottom: 8px;
}
.vc-msg-pending {
  background: rgba(204, 251, 241, 0.4);
}
.vc-author {
  font-weight: 700;
  font-size: 12px;
  color: var(--teal-700);
}
.vc-text {
  font-size: 13px;
  color: var(--slate-700);
}

/* STATS */
.stats {
  padding: 36px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.stat {
  text-align: center;
  border-right: 1px solid rgba(15, 118, 110, 0.1);
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--teal-800);
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 8px;
  font-weight: 500;
}

/* FEATURES */
.features {
  padding: clamp(64px, 9vw, 110px) 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  backdrop-filter: blur(6px);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 184, 166, 0.32);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-400), var(--cyan-500));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(20, 184, 166, 0.28);
}
.feature h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature p {
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
  padding: clamp(64px, 9vw, 110px) 0;
  background: linear-gradient(180deg, transparent, rgba(204, 251, 241, 0.18), transparent);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.32);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(20, 184, 166, 0.3);
  border-radius: 50%;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.step p {
  color: var(--slate-600);
  font-size: 15px;
  max-width: 300px;
  margin: 0 auto;
}

/* FAMILIES */
.families {
  padding: clamp(64px, 9vw, 110px) 0;
}
.families-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.family-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  transition: transform 250ms ease, box-shadow 250ms ease;
  backdrop-filter: blur(6px);
}
.family-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.family-emoji {
  font-size: 44px;
  margin-bottom: 16px;
}
.family-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.family-card p {
  font-size: 15px;
  color: var(--slate-600);
}

/* TESTIMONIAL */
.testimonial {
  padding: clamp(48px, 7vw, 90px) 0;
}
.quote {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.96), rgba(8, 145, 178, 0.96));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px) clamp(32px, 5vw, 64px);
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 118, 110, 0.28);
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
}
.quote-mark {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto 16px;
}
.quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin: 0 auto;
  font-style: italic;
}
.quote figcaption {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.quote figcaption strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.quote figcaption span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* FAQ */
.faq {
  padding: clamp(64px, 9vw, 110px) 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: var(--radius-md);
  padding: 6px 22px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  backdrop-filter: blur(6px);
}
.faq-item[open] {
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--slate-900);
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--teal-600);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding-bottom: 18px;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.65;
}

.faq-link {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 184, 166, 0.4);
  transition: color 150ms ease, border-color 150ms ease;
}
.faq-link:hover {
  color: var(--teal-900);
  border-bottom-color: var(--teal-700);
}

.faq-item p.faq-dedication {
  margin-top: 4px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px dashed rgba(20, 184, 166, 0.25);
  font-size: 13px;
  color: var(--teal-700);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.faq-dedication-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-700);
  font-weight: 700;
  opacity: 0.85;
}
.faq-dedication-hebrew {
  font-family: var(--font-hebrew-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-800);
  letter-spacing: 0.005em;
}

/* CTA */
.cta {
  padding: clamp(48px, 7vw, 90px) 0;
}
.cta-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px) clamp(28px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-decor {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(closest-side, rgba(45, 212, 191, 0.18), transparent);
  filter: blur(40px);
  pointer-events: none;
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  position: relative;
}
.cta-card > p {
  font-size: 17px;
  color: var(--slate-600);
  position: relative;
  margin-bottom: 28px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 16px;
}
.cta-fineprint {
  font-size: 13px;
  color: var(--slate-500);
  position: relative;
}

/* FOOTER */
.site-footer {
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(15, 118, 110, 0.1);
  margin-top: 40px;
  padding: 56px 0 24px;
  backdrop-filter: blur(8px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(15, 118, 110, 0.1);
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--teal-900);
  font-weight: 500;
}
.footer-brand-tagline {
  font-size: 12px;
  color: var(--teal-700);
  font-weight: 600;
  margin-top: 4px;
}
.footer-hebrew {
  font-family: var(--font-hebrew);
  font-size: 13px;
  color: var(--teal-800);
  margin-top: 8px;
  font-weight: 500;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-800);
  margin-bottom: 12px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--slate-600);
  transition: color 150ms ease;
}
.footer-col a:hover {
  color: var(--teal-700);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--slate-500);
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; max-width: 540px; margin: 12px auto 0; width: 100%; }
  .hero-trust { justify-content: flex-start; }
  .header-dedication { display: none; }

  .feature-grid,
  .families-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .stat:nth-child(2) { border-right: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .header-dedication,
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-inner {
    min-height: 64px;
  }
  .brand-tagline,
  .brand-hebrew {
    display: none;
  }

  .hero { padding-top: 40px; padding-bottom: 56px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .feature-grid,
  .families-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }
  .stat { border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(15, 118, 110, 0.1); }
  .stat:last-child { border-right: 0; }

  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .visual-card-back { width: 70%; }
  .visual-card-front { width: 86%; }

  .quote { padding: 36px 24px; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 460px) {
  .hero-title { font-size: 34px; }
  .footer-nav { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; padding-bottom: 16px; border-bottom: 1px solid rgba(15, 118, 110, 0.1); }
  .stat:last-child { border-bottom: 0; padding-bottom: 0; }
}
