/* === Once shared stylesheet ============================================ */

:root {
  --coral: #FF7A5C;
  --coral-deep: #E55A40;
  --coral-100: #FFF0EA;
  --coral-150: #FFE3D6;
  --coral-border: rgba(255, 122, 92, 0.16);
  --coral-border-2: rgba(255, 122, 92, 0.28);
  --bg: #FFF8F5;
  --text: #1A1411;
  --text-2: #5A4F47;
  --text-3: #8B7E72;
  --shadow-soft: 0 18px 48px -18px rgba(255, 122, 92, 0.22), 0 2px 6px rgba(31, 26, 22, 0.03);
  --shadow-cta: 0 12px 28px -6px rgba(255, 122, 92, 0.55), 0 2px 8px rgba(255, 122, 92, 0.3);
  --font: 'Noto Sans Hebrew', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(60vw 70vw at 90% -10%, rgba(255, 122, 92, 0.13), transparent 55%),
    radial-gradient(50vw 60vw at -10% 30%, rgba(255, 122, 92, 0.08), transparent 60%),
    radial-gradient(45vw 55vw at 95% 70%, rgba(255, 122, 92, 0.07), transparent 60%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--coral); color: #fff; }

/* === Header (shared on every page) === */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 245, 0.7);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
}
.header-inner {
  max-width: 1080px; margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: inline-flex; align-items: center; transition: opacity .15s ease; }
.brand:hover { opacity: 0.75; }
.brand-name { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); }

.lang-switcher { position: relative; }
.lang-btn {
  font-size: 13px; font-weight: 600; color: var(--text-2);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--coral-border); border-radius: 999px;
  padding: 8px 14px; cursor: pointer; transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit;
}
.lang-btn:hover, .lang-btn[aria-expanded="true"] {
  border-color: var(--coral); color: var(--coral); background: var(--coral-100);
}
.lang-chevron { transition: transform .15s ease; flex-shrink: 0; }
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px);
  inset-inline-end: 0;
  background: #fff;
  border: 1px solid var(--coral-border);
  border-radius: 14px;
  list-style: none; padding: 6px;
  min-width: 160px;
  box-shadow: 0 16px 40px -12px rgba(255, 122, 92, 0.18), 0 2px 8px rgba(31, 26, 22, 0.06);
  z-index: 100;
}
.lang-menu[hidden] { display: none; }
.lang-menu li { margin: 0; padding: 0; list-style: none; }
.lang-menu button {
  background: none; border: none;
  width: 100%;
  text-align: start;
  padding: 10px 14px;
  border-radius: 9px;
  cursor: pointer;
  font: inherit;
  font-size: 14px; font-weight: 500;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.lang-menu button:hover { background: var(--coral-100); color: var(--coral); }
.lang-menu button.active { color: var(--coral); font-weight: 700; }
.lang-check { opacity: 0; flex-shrink: 0; }
.lang-menu button.active .lang-check { opacity: 1; }

/* === Section + typography defaults === */
section { padding: 80px 28px; position: relative; }
.container { max-width: 1080px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
}

h1 {
  font-size: 72px; font-weight: 800; letter-spacing: -2.4px;
  line-height: 1.04; color: var(--text);
}
h2 {
  font-size: 48px; font-weight: 800; letter-spacing: -1.4px;
  line-height: 1.1; color: var(--text);
}
h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.4px;
  color: var(--text); margin-bottom: 8px;
}
p { color: var(--text-2); }

/* === Buttons === */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--coral); color: #fff;
  padding: 0 32px; height: 56px; border-radius: 999px;
  font-weight: 700; font-size: 16px; border: none;
  box-shadow: var(--shadow-cta);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background .15s ease;
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(229, 90, 64, 0.6), 0 4px 12px rgba(229, 90, 64, 0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-2); font-weight: 600; font-size: 15px;
  padding: 16px 8px;
  transition: color .15s ease;
}
.btn-link:hover { color: var(--coral); }

/* === Pills === */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--coral-deep);
  background: var(--coral-100);
  border: 1px solid var(--coral-border);
  border-radius: 999px;
  padding: 9px 16px;
}
.pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--coral);
}

/* === Hero === */
.hero {
  padding: 40px 28px 56px;
  text-align: center;
}
.hero-slogan {
  font-size: 13px; font-weight: 700; color: var(--coral);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-slogan::before, .hero-slogan::after {
  content: ''; width: 28px; height: 1px; background: var(--coral); opacity: .55;
}
.hero h1 {
  max-width: 820px; margin: 0 auto;
  font-size: 60px; letter-spacing: -2px;
}
.hero p {
  max-width: 580px; margin: 26px auto 0;
  font-size: 19px; color: var(--text-2); line-height: 1.6;
}
.hero-cta {
  margin-top: 36px;
  display: flex; gap: 12px;
  justify-content: center; align-items: center;
}
.hero-secondary-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px; font-weight: 500;
  color: var(--text-3);
  border-bottom: 1px dashed rgba(139, 126, 114, 0.4);
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease;
}
.hero-secondary-link:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}
.hero-pills {
  margin: 36px auto 0;
  max-width: 460px;
  display: flex; flex-wrap: wrap;
  gap: 8px; justify-content: center;
}

/* === Problem === */
.problem h2 { max-width: 760px; }
.problem .section-visual img { max-width: 540px; }
.problem .section-visual { padding-top: 8px; }
.problem-body {
  margin-top: 24px;
  font-size: 19px; color: var(--text-2); line-height: 1.65;
  max-width: 660px;
}
.problem-points {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.problem-point {
  font-size: 15px; font-weight: 600;
  color: var(--text);
  background: var(--coral-100);
  border: 1px solid var(--coral-border);
  border-radius: 999px;
  padding: 14px 22px;
}

/* === Asymmetric section split (text + visual) === */
.section-split {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.section-split.flip .section-visual { order: -1; }

.section-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.section-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-mask-image: radial-gradient(circle closest-side at 50% 50%, #000 16%, transparent 100%);
          mask-image: radial-gradient(circle closest-side at 50% 50%, #000 16%, transparent 100%);
  mix-blend-mode: multiply;
}
.section-visual::before {
  content: "";
  position: absolute;
  inset: 18% 28%;
  background: rgba(255, 122, 92, 0.28);
  filter: blur(70px);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

/* Solution text body + points (also used inside .section-split) */
.solution-text .solution-body {
  margin-top: 24px;
  font-size: 18px; color: var(--text-2); line-height: 1.65;
  max-width: 520px;
}
.solution-points {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.solution-point {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 600; color: var(--text);
}
.solution-point::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%; background: var(--coral); flex-shrink: 0;
}

/* === Hero illustration === */
.hero-visual {
  margin: 12px auto 0;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 700px;
}
.hero-visual img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-mask-image: radial-gradient(circle closest-side at 50% 50%, #000 14%, transparent 100%);
          mask-image: radial-gradient(circle closest-side at 50% 50%, #000 14%, transparent 100%);
  mix-blend-mode: multiply;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14% 28%;
  background: rgba(255, 122, 92, 0.34);
  filter: blur(80px);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

/* === Small section visuals (how / cta lead-in) === */
.lead-visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.how .how-grid + .lead-visual { margin: 36px 0 0; }
.lead-visual img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-mask-image: radial-gradient(circle closest-side at 50% 50%, #000 18%, transparent 100%);
          mask-image: radial-gradient(circle closest-side at 50% 50%, #000 18%, transparent 100%);
  mix-blend-mode: multiply;
}
.lead-visual::before {
  content: "";
  position: absolute;
  inset: 16% 28%;
  background: rgba(255, 122, 92, 0.3);
  filter: blur(60px);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

/* === When .why is split, stack items vertically === */
.why .section-split .why-grid {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why .section-split h2 { font-size: 48px; letter-spacing: -1.4px; }

/* === How it works === */
.how h2 { max-width: 720px; }
.how-grid {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.how-card {
  background: rgba(255, 240, 234, 0.55);
  border: 1px solid rgba(255, 122, 92, 0.1);
  border-radius: 28px;
  padding: 28px 28px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s ease, border-color .25s ease;
}
.how-card:hover {
  transform: translateY(-2px);
  background: var(--coral-100);
  border-color: var(--coral-border);
}
.how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--coral); color: #fff;
  font-size: 12px; font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px -3px rgba(255, 122, 92, 0.5);
}
.how-card h3 { font-size: 19px; margin-bottom: 6px; }
.how-card p { font-size: 14px; line-height: 1.55; }

/* === Why (open typography, no cards) === */
.why h2 { max-width: 700px; font-size: 56px; letter-spacing: -1.6px; }
.why-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 72px;
}
.why-item {
  position: relative;
  padding-inline-start: 22px;
}
.why-item::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
}
.why-item h3 { font-size: 22px; margin-bottom: 8px; }
.why-item p { font-size: 16px; line-height: 1.65; }

/* === Trust === */
.trust h2 { max-width: 600px; }
.trust-body {
  margin-top: 24px;
  font-size: 18px; color: var(--text-2); line-height: 1.65;
  max-width: 620px;
}
.trust-list {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; padding: 0;
}
.trust-list li {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 240, 234, 0.5);
  border: 1px solid rgba(255, 122, 92, 0.12);
  border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--text);
}
.trust-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background-color: var(--coral);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 6-6' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  flex-shrink: 0;
}
.trust .section-visual { margin: 24px auto 8px; }
.trust .section-visual + .trust-list { margin-top: 16px; }

/* === Final CTA === */
.cta {
  text-align: center;
  padding: 96px 28px;
}
.cta h2 {
  max-width: 660px; margin: 0 auto;
  font-size: 56px; letter-spacing: -1.8px;
}
.cta p {
  margin-top: 22px; max-width: 560px; margin-inline: auto;
  font-size: 19px; line-height: 1.6;
}
.cta .btn-primary { margin-top: 40px; height: 60px; padding: 0 36px; font-size: 17px; }

/* === Footer === */
.footer {
  padding: 56px 28px 72px;
  text-align: center;
  color: var(--text-3); font-size: 13px;
}
.cta-contact {
  margin: 64px auto 0;
  padding: 22px 28px;
  border-radius: 28px;
  background: var(--coral-100);
  border: 1px solid var(--coral-border);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  box-shadow: var(--shadow-soft);
  display: inline-block;
  max-width: 580px;
}
.cta-contact a {
  color: var(--coral);
  font-weight: 700;
  margin-inline-start: 4px;
}
.cta-contact a:hover {
  color: var(--coral-deep);
  text-decoration: underline;
}
.footer-links {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 18px;
}
.footer-links a {
  color: rgba(229, 90, 64, 0.85);
  font-weight: 500;
  font-size: 13px;
}
.footer-links a:hover { color: var(--coral-deep); text-decoration: underline; }
.footer-links .sep { color: var(--text-3); opacity: 0.4; }

/* === Legal pages (privacy / terms / child-safety) === */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 28px 96px;
  line-height: 1.75;
}
.legal h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--text);
}
.legal .updated {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.4px;
  margin-bottom: 56px;
  padding: 8px 16px;
  background: var(--coral-100);
  border: 1px solid var(--coral-border);
  border-radius: 999px;
}
.legal .updated::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.4px;
}
.legal p { margin-bottom: 14px; font-size: 16px; color: var(--text-2); line-height: 1.75; }
.legal ul { padding-inline-start: 22px; margin-bottom: 14px; }
.legal li { font-size: 16px; margin-bottom: 8px; color: var(--text-2); line-height: 1.75; }
.legal strong { color: var(--text); font-weight: 700; }
.legal a { color: var(--coral); font-weight: 600; }
.legal a:hover { color: var(--coral-deep); text-decoration: underline; }
.legal .contact {
  margin-top: 64px;
  padding: 28px 32px;
  border-radius: 28px;
  background: var(--coral-100);
  border: 1px solid var(--coral-border);
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  box-shadow: var(--shadow-soft);
}
.legal .contact a { color: var(--coral); font-weight: 700; }
.legal .contact a:hover { color: var(--coral-deep); text-decoration: underline; }

/* === Responsive === */
@media (max-width: 880px) {
  section { padding: 56px 24px; }
  .problem { padding-top: 36px; }
  .hero { padding: 24px 24px 40px; }
  .hero h1 { font-size: 38px; letter-spacing: -1.3px; }
  .hero p { font-size: 17px; }
  .hero-pills { gap: 7px; max-width: 360px; }
  .pill { font-size: 12px; padding: 7px 13px; }
  .how-card { padding: 22px 22px; border-radius: 24px; }
  .how-num { width: 28px; height: 28px; margin-bottom: 12px; }
  .how-card h3 { font-size: 18px; }
  h1 { font-size: 36px; letter-spacing: -1.2px; }
  h2 { font-size: 32px; letter-spacing: -0.8px; }
  .why h2, .cta h2 { font-size: 36px; letter-spacing: -1px; }
  .why .section-split h2 { font-size: 36px; letter-spacing: -1px; }
  .section-split,
  .section-split.flip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-split.flip .section-visual { order: 0; }
  .section-visual img { max-width: 420px; margin-inline: auto; }
  .hero-visual { margin-top: 8px; max-width: 520px; }
  .hero-visual img { max-width: 520px; }
  .lead-visual img { max-width: 240px; }
  .how-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta { padding: 72px 24px; }
}
@media (max-width: 760px) {
  .legal { padding: 48px 24px 72px; }
  .legal h1 { font-size: 36px; letter-spacing: -1.2px; }
  .legal h2 { font-size: 19px; margin-top: 40px; }
  .legal .contact { padding: 22px 24px; border-radius: 24px; }
}
