/* =========================================================
   Calcium Revive — שפה ויזואלית v3 ("קליני-פרימיום נקי")
   רקע כמעט-לבן, כרטיסים לבנים עם מסגרת דקה, כחול-נייבי רפואי.
   כותרות: Heebo (עברית/אנגלית) / Cairo (ערבית) — פתר את נפילת
   Playfair ל-Times בעברית. Playfair נשאר לוורדמארק הלטיני בלבד.
   שכבת התנועה ב-design.css; המבנה וה-class-ים לא השתנו.
   ========================================================= */
:root {
  /* Brand */
  --brand-navy: #17557f;
  --brand-blue: #2f7fb5;
  --brand-sky: #9fd8f2;
  --brand-dark: #0e2436;
  --brand-silver: #c3cad2;
  --brand-gradient: linear-gradient(90deg, var(--brand-navy), var(--brand-blue), var(--brand-sky));
  --brand-gradient-text: linear-gradient(90deg, var(--brand-navy), var(--brand-blue));
  --brand-gradient-deep: linear-gradient(135deg, #144a70, #2a6f9e);
  --brand-gradient-soft: linear-gradient(135deg, rgba(23, 85, 127, 0.07), rgba(159, 216, 242, 0.14));

  /* Surfaces & text */
  --bg-base: #f7fafc;
  --bg-elevated: #edf3f8;
  --surface-card: #ffffff;
  --surface-card-hover: #fbfdfe;
  --border-subtle: #e2ebf2;
  --border-strong: #c6d7e3;
  --text-primary: #152b3d;
  --text-secondary: #435c70;
  --text-muted: #5b7183;

  /* Effects */
  --accent-cyan: #9fd8f2;
  --accent-blue: var(--brand-blue);
  --accent-navy: var(--brand-navy);
  --accent-silver: var(--brand-silver);
  --accent-gradient: var(--brand-gradient);
  --sheen-silver: linear-gradient(135deg, #eef1f4, #c9d2da, #eef1f4);
  --shadow-card: 0 1px 2px rgba(15, 42, 62, 0.05), 0 2px 8px rgba(15, 42, 62, 0.05);
  --shadow-lift: 0 14px 34px -14px rgba(15, 42, 62, 0.22);
  --shadow-glow-accent: 0 8px 28px -10px rgba(23, 85, 127, 0.35);
  --focus-ring: 0 0 0 3px rgba(47, 127, 181, 0.35);

  /* Type */
  --font-brand: 'Playfair Display', 'LocalSerif', Georgia, serif;
  --font-heading: 'Heebo', 'LocalSans', 'Segoe UI', Roboto, Arial, sans-serif;
  --font-body: 'Heebo', 'LocalSans', 'Segoe UI', Roboto, Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

/* ערבית — Cairo לכל הטקסט */
html[lang='ar'] {
  --font-heading: 'Cairo', 'LocalSans', 'Segoe UI', Tahoma, Arial, sans-serif;
  --font-body: 'Cairo', 'LocalSans', 'Segoe UI', Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--bg-base);
  /* נגיעת עומק עדינה בראש הדף בלבד — בלי "חלב" על כל העמוד */
  background-image: radial-gradient(1100px 420px at 80% -12%, rgba(159, 216, 242, 0.22), transparent 62%);
  background-repeat: no-repeat;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* ביטוח נגד גלישה אופקית במובייל */
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.logo,
.footer-logo {
  font-family: var(--font-brand);
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 22px;
  background: rgba(252, 254, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
html {
  scroll-padding-top: calc(var(--header-h, 64px) + 12px);
}
body {
  padding-top: var(--header-h, 64px);
}
.logo {
  font-size: 23px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  color: var(--brand-navy);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}
.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav a:hover,
.nav a:focus-visible {
  background: rgba(47, 127, 181, 0.08);
  color: var(--brand-navy);
}
.nav a[aria-current='page'] {
  color: var(--brand-navy);
  font-weight: 700;
  background: rgba(47, 127, 181, 0.1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border-strong);
  background: var(--surface-card);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 64px;
}
.hero-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  flex: 1;
  min-width: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--brand-navy);
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
}
.badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
}
h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 12px;
}
.hero-sub {
  font-family: var(--font-brand);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  color: var(--brand-blue);
}
.lead {
  color: var(--text-secondary);
  font-size: 17.5px;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 34em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-visual {
  width: 380px;
  flex: 0 0 380px;
  max-width: 100%;
}
.product-card {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-card), var(--shadow-lift);
  border: 1px solid var(--border-subtle);
}
.product-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
}
.stat {
  flex: 1 1 130px;
  min-width: 0;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 14px 12px;
  text-align: center;
}
.stat dt {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin: 0;
  color: var(--brand-navy);
}
.stat dd {
  margin: 3px 0 0;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
}

/* ---------- Sections ---------- */
.section {
  padding: 68px 0;
}
.page-hero {
  padding: 56px 0 8px;
}
.section-head {
  max-width: 660px;
  margin-bottom: 36px;
}
.section-head h1,
.section-head h2 {
  margin: 0 0 12px;
}
h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 14px;
}
.section-sub {
  display: inline-block;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.section p {
  line-height: 1.8;
}
.section-head > p:last-child {
  color: var(--text-secondary);
  font-size: 17px;
  margin: 0;
}
.section-highlight {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  padding: 44px 34px;
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* ---------- Grids & cards ---------- */
.feature-grid,
.benefit-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}
.result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  background: var(--surface-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  flex: 1;
}
.feature-card {
  padding: 24px 22px;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-navy);
}
.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Science steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.step {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 22px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: var(--brand-gradient-deep);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 18.5px;
  font-weight: 700;
  color: var(--brand-navy);
}
.step p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
}
.compare-list li {
  position: relative;
  padding-inline-start: 1.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.compare-list li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(47, 127, 181, 0.12);
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.trust-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  text-align: center;
}
.trust-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-navy);
}
.trust-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- כרטיס צף על תמונה (הירו/מדע) ---------- */
.float-card {
  position: absolute;
  bottom: 26px;
  inset-inline-start: 26px;
  display: flex;
  flex-direction: column;
  max-width: 200px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
}
.float-card-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.float-card-value {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--brand-navy);
}
.float-card-sub {
  font-size: 12.5px;
  color: var(--text-secondary);
}
.float-card-bar {
  display: block;
  height: 6px;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(47, 127, 181, 0.14);
  overflow: hidden;
}
.float-card-bar i {
  display: block;
  height: 100%;
  width: 55.7%; /* ריכוז הסידן הפעיל — הערך המוצג בכרטיס */
  border-radius: 999px;
  background: var(--brand-gradient-deep);
}

/* ---------- רצועת תמונה עם קריאה לפעולה ---------- */
.image-strip {
  position: relative;
  margin-top: 30px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.image-strip img {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 480px);
  object-fit: cover;
  object-position: top;
}
.image-strip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 8%;
  background: linear-gradient(to left, rgba(11, 30, 46, 0.9), rgba(11, 30, 46, 0.45) 48%, rgba(11, 30, 46, 0) 75%);
}
html[dir='ltr'] .image-strip-overlay {
  background: linear-gradient(to right, rgba(11, 30, 46, 0.9), rgba(11, 30, 46, 0.45) 48%, rgba(11, 30, 46, 0) 75%);
}
.image-strip-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.22;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

/* ---------- ויז'ואל המדע ---------- */
.science-visual {
  position: relative;
  margin: 10px 0 32px;
}
.science-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.science-float {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-width: none;
}
.molecule-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient-deep);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.float-card-text {
  display: flex;
  flex-direction: column;
}
.float-card-strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ---------- Showcase מוצר ---------- */
.product-showcase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-top: 30px;
  padding: 34px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.product-showcase img {
  flex: 0 0 auto;
  width: min(300px, 100%);
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
}
.product-showcase-copy {
  flex: 1 1 300px;
}
.product-showcase-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.6vw, 29px);
  font-weight: 700;
}
.product-showcase-copy p {
  margin: 0 0 18px;
  max-width: 34em;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------- Strip (למה ללא ניתוח) ---------- */
.strip {
  position: relative;
  background: var(--brand-gradient-deep);
  border-radius: var(--radius-xl);
  color: #fff;
  padding: 34px 30px;
  margin: 44px 0;
  box-shadow: var(--shadow-glow-accent);
  overflow: hidden;
}
.strip h2 {
  color: #fff;
  font-size: clamp(21px, 2.4vw, 26px);
  margin: 0 0 18px;
}
.strip-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.strip-list li {
  background: rgba(10, 28, 43, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

/* ---------- Treatments ---------- */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}
.treatment,
.treatment-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 0;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.treatment h2,
.treatment-card h2,
.treatment-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-navy);
}
.treatment-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
}
.t-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.t-meta li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-navy);
  background: rgba(47, 127, 181, 0.08);
  border: 1px solid rgba(47, 127, 181, 0.18);
  border-radius: 999px;
  padding: 4px 11px;
}

/* ---------- Contact form ---------- */
.section-contact .contact-form,
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 24px;
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.contact-form label.full {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface-card);
  font-size: 15.5px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: var(--focus-ring);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.hp {
  position: absolute;
  inset-inline-start: -9999px;
}
.form-actions {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.form-message {
  color: var(--text-secondary);
  font-weight: 500;
}
.form-message.success {
  color: #177a4c;
}
.form-message.error {
  color: #b3403a;
}
.form-disclaimer {
  grid-column: 1/-1;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 4px 0 0;
}
.contact-form label.consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  line-height: 1.6;
}
.contact-form .consent input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-blue);
}
.contact-form .consent a {
  color: var(--brand-navy);
  text-decoration: underline;
}

/* ---------- עמודים משפטיים ---------- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  margin-top: 34px;
  font-size: 1.3rem;
}
.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  line-height: 1.85;
}
.legal-content ul {
  padding-inline-start: 22px;
}
.legal-content .updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 36px;
}
.contact-details {
  margin-top: 36px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 26px;
}
.contact-details h2 {
  font-size: 21px;
  margin-top: 0;
}
.contact-details a {
  color: var(--brand-navy);
  font-weight: 600;
}

/* ---------- Buttons ---------- */
button:focus-visible,
.nav a:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(47, 127, 181, 0.5);
  outline-offset: 2px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: var(--shadow-glow-accent);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1d639a;
  color: #fff;
}
.btn-outline {
  background: var(--surface-card);
  border: 1.5px solid var(--border-strong);
  color: var(--text-primary);
  padding: 10.5px 20px;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--brand-blue);
  color: var(--brand-navy);
  background: rgba(47, 127, 181, 0.05);
}
.btn-ghost {
  background: transparent;
  color: var(--brand-navy);
  border: 0;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(47, 127, 181, 0.08);
}
.btn-light {
  background: #fff;
  color: var(--brand-dark);
  border-radius: 999px;
}
.btn-light:hover {
  background: #eaf3fa;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 10px;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 56px;
  padding: 48px 0 26px;
  background: var(--brand-dark);
  color: #c6d9e6;
  text-align: start;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  text-align: start;
  padding-bottom: 28px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-logo {
  font-size: 25px;
  font-weight: 700;
  color: #eaf3fa;
}
.footer-tagline {
  margin: 0;
  color: var(--brand-sky);
  font-weight: 500;
}
.footer-brand .footer-disclaimer {
  margin: 0;
  max-width: 34em;
  text-align: start;
}
.footer-contact a {
  color: var(--brand-sky);
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7e9ab0;
  margin: 0 0 6px;
}
.footer-col-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-col-inner + .footer-col-inner {
  margin-top: 24px;
}
.footer-col a,
.footer-langs span {
  color: #c6d9e6;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  font-size: 14.5px;
}
.footer-col a:hover {
  color: #ffffff;
}
.footer-langs span[aria-current='true'] {
  color: #ffffff;
  font-weight: 600;
}
.footer-legal {
  margin: 6px 0 0;
  font-size: 13.5px;
  color: #7e9ab0;
}
.footer-legal a {
  color: var(--brand-sky);
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: #6c8397;
  max-width: 560px;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(159, 216, 242, 0.14);
  padding-top: 18px;
  text-align: center;
}

/* ---------- Misc content blocks ---------- */
.faq-item,
.clinic-location,
.doctor-benefit,
.about-block {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.faq-item h2,
.clinic-location h2,
.doctor-benefit h2,
.about-block h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-navy);
}
.faq-item p,
.clinic-location p,
.doctor-benefit p,
.about-block p {
  color: var(--text-secondary);
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-list li {
  margin-bottom: 0.9rem;
  padding-inline-start: 1.6rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
}
.benefits-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
}
.cta {
  margin-top: 18px;
}
.cta .btn {
  padding: 13px 26px;
}

/* ---------- בלוג ---------- */
.post-body {
  max-width: 720px;
  margin: 0 auto;
}
.post-body p,
.post-body li {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 16.5px;
}
.post-body h2 {
  margin-top: 36px;
  font-size: 1.45rem;
}
.post-body h3 {
  margin-top: 26px;
  font-size: 1.15rem;
}

/* ---------- תמונות עמוד ---------- */
.page-figure {
  margin: 10px 0 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}
.page-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
.page-figure--tall img {
  aspect-ratio: 16 / 9;
}

/* ---------- באנר הסכמה ---------- */
.cookie-banner {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 620px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 16px 18px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(11, 30, 46, 0.22);
}
.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.cookie-banner a {
  color: var(--brand-navy);
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
}

/* ---------- פיקר שפות ---------- */
.lang-picker {
  position: relative;
}
.lang-picker-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lang-picker-btn:hover,
.lang-picker-btn:focus-visible {
  background: rgba(47, 127, 181, 0.07);
  border-color: var(--border-strong);
}
.lang-picker-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(11, 30, 46, 0.16);
  z-index: 60;
}
/* חשוב: display:flex דורס את [hidden] של הדפדפן — זה מה שגרם לתפריט
   להיתקע פתוח. הכלל הזה מחזיר ל-hidden את הכוח. */
.lang-picker-menu[hidden] {
  display: none;
}
.lang-picker-menu a,
.lang-picker-menu span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
}
.lang-picker-menu a:hover,
.lang-picker-menu a:focus-visible {
  background: rgba(47, 127, 181, 0.08);
}
.lang-picker-menu [aria-current='true'] {
  background: rgba(47, 127, 181, 0.1);
  color: var(--brand-navy);
  font-weight: 700;
}
.lang-picker-menu [aria-current='true']::after {
  content: '✓';
  font-weight: 700;
  color: var(--brand-blue);
}

/* ---------- מתג ערכה בהירה/כהה ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: transparent;
  color: var(--brand-navy);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover {
  background: rgba(47, 127, 181, 0.08);
  border-color: var(--border-strong);
}
.theme-toggle .icon-sun {
  display: none;
}
html[data-theme='dark'] .theme-toggle .icon-sun {
  display: block;
}
html[data-theme='dark'] .theme-toggle .icon-moon {
  display: none;
}
html[data-theme='dark'] .theme-toggle {
  color: #ffd98a;
}

/* ---------- כפתור WhatsApp צף ---------- */
.whatsapp-float {
  position: fixed;
  inset-block-end: 22px;
  inset-inline-start: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.07);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* =========================================================
   ערכה כהה — אותם token-ים, עומק כהה רגוע
   ========================================================= */
html[data-theme='dark'] {
  --bg-base: #0a1926;
  --bg-elevated: #0f2334;
  --surface-card: #11283b;
  --surface-card-hover: #16324a;
  --border-subtle: #1f3d54;
  --border-strong: #2f5674;
  --text-primary: #eef6fc;
  --text-secondary: #b4c9d8;
  --text-muted: #8aa3b5;
  --brand-navy: #6db4e2; /* בכהה: הצבע ה"מותגי" לטקסט בהיר מספיק */
  --brand-blue: #4f9fd4;
  --brand-gradient-deep: linear-gradient(135deg, #1c5d8b, #2f7fb5);
  --sheen-silver: linear-gradient(135deg, #f1f4f7, #d3dae2, #a9b6c2);
  --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.35);
  --shadow-lift: 0 16px 40px -14px rgba(0, 0, 0, 0.6);
  --shadow-glow-accent: 0 8px 30px -8px rgba(79, 159, 212, 0.5);
  --focus-ring: 0 0 0 3px rgba(109, 180, 226, 0.4);
  color-scheme: dark;
}
html[data-theme='dark'] body {
  background-image: radial-gradient(1100px 420px at 80% -12%, rgba(47, 127, 181, 0.14), transparent 62%);
}
html[data-theme='dark'] .site-header {
  background: rgba(8, 22, 34, 0.85);
  border-bottom-color: rgba(159, 216, 242, 0.1);
}
html[data-theme='dark'] .nav a {
  color: var(--text-secondary);
}
html[data-theme='dark'] .nav a:hover,
html[data-theme='dark'] .nav a:focus-visible,
html[data-theme='dark'] .nav a[aria-current='page'] {
  color: #a9d8f2;
  background: rgba(79, 159, 212, 0.14);
}
html[data-theme='dark'] .logo {
  color: #a9d8f2;
}
html[data-theme='dark'] .btn-primary {
  background: #2f7fb5;
}
html[data-theme='dark'] .btn-primary:hover,
html[data-theme='dark'] .btn-primary:focus-visible {
  background: #3f8fc5;
}
html[data-theme='dark'] .btn-outline {
  background: transparent;
  color: var(--text-primary);
}
html[data-theme='dark'] .btn-light {
  background: #eaf3fa;
}
html[data-theme='dark'] .float-card {
  background: rgba(13, 32, 47, 0.92);
}
html[data-theme='dark'] .image-strip-overlay {
  background: linear-gradient(to left, rgba(4, 13, 21, 0.92), rgba(4, 13, 21, 0.5) 48%, rgba(4, 13, 21, 0) 75%);
}
html[dir='ltr'][data-theme='dark'] .image-strip-overlay {
  background: linear-gradient(to right, rgba(4, 13, 21, 0.92), rgba(4, 13, 21, 0.5) 48%, rgba(4, 13, 21, 0) 75%);
}
html[data-theme='dark'] .strip-list li {
  background: rgba(4, 16, 26, 0.4);
}
html[data-theme='dark'] .form-message.success {
  color: #59d99a;
}
html[data-theme='dark'] .form-message.error {
  color: #ff8f88;
}
html[data-theme='dark'] .site-footer {
  background: #04101a;
}
html[data-theme='dark'] .step-num,
html[data-theme='dark'] .molecule-chip {
  color: #fff;
}
html[data-theme='dark'] .badge::before {
  background: #6db4e2;
}

/* =========================================================
   רספונסיב
   ========================================================= */
@media (max-width: 1024px) {
  .trust-grid,
  .strip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .treatment-grid,
  .feature-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .hero {
    padding: 48px 0 40px;
  }
  .hero-inner {
    flex-direction: column;
    gap: 32px;
  }
  .hero-visual {
    width: 100%;
    flex-basis: auto;
    order: 2;
    max-width: 440px;
  }
  .section {
    padding: 52px 0;
  }
  .section-highlight {
    padding: 32px 22px;
  }
  .compare-list {
    grid-template-columns: 1fr;
  }

  /* ניווט מובייל */
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 16px 18px;
    background: var(--surface-card);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 18px 30px rgba(11, 30, 46, 0.14);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 16px;
  }
  .header-actions .btn-ghost {
    display: none;
  }
  .logo {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .site-header {
    padding: 10px 14px;
  }
  .feature-grid,
  .benefit-grid,
  .result-grid,
  .treatment-grid,
  .trust-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .strip-list {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form,
  .section-contact .contact-form {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 8px;
  }
  .stat {
    flex-basis: calc(50% - 8px);
    padding: 12px 8px;
  }
  .stat dt {
    font-size: 23px;
  }
  .float-card {
    bottom: 14px;
    inset-inline-start: 14px;
    padding: 10px 12px;
    max-width: 170px;
  }
  .float-card-value {
    font-size: 22px;
  }
  .product-showcase {
    padding: 20px;
  }
  .page-figure img,
  .page-figure--tall img {
    aspect-ratio: 4 / 3;
  }
  .btn {
    padding: 12px 20px;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    inset-block-end: 16px;
    inset-inline-start: 16px;
  }
}

/* ---------- רופאים וקליניקות: כרטיסיות עם כפתורי פעולה ---------- */
.partners-heading {
  margin: 34px 0 16px;
  font-size: 22px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px 20px;
}
.partner-name {
  margin: 0 0 2px;
  font-size: 18.5px;
  font-weight: 700;
  color: var(--brand-navy);
}
.partner-sub {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.partner-meta {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.partner-meta strong {
  color: var(--text-primary);
  font-weight: 600;
}
.partner-sub,
.partner-meta {
  margin-bottom: 8px;
}
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface-card);
  color: var(--brand-navy);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn-action:hover,
.btn-action:focus-visible {
  border-color: var(--brand-blue);
  background: rgba(47, 127, 181, 0.06);
  transform: translateY(-1px);
}
.btn-action-primary {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
}
.btn-action-primary:hover,
.btn-action-primary:focus-visible {
  background: #1d639a;
  border-color: #1d639a;
  color: #fff;
}
.partners-empty {
  background: var(--surface-card);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
}
.partners-empty p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 16px;
}

/* באנר הפניה לרופאים — מפריד בין "מי שכבר איתנו" ל"הצטרפו אלינו" */
.join-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 26px;
  margin-top: 44px;
  padding: 28px 30px;
  background: var(--brand-gradient-deep);
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow-glow-accent);
}
.join-strip-copy {
  flex: 1 1 320px;
}
.join-strip h2 {
  color: #fff;
  font-size: clamp(19px, 2.2vw, 24px);
  margin: 0 0 8px;
}
.join-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 44em;
}
html[data-theme='dark'] .btn-action-primary {
  background: #2f7fb5;
  border-color: #2f7fb5;
}
html[data-theme='dark'] .btn-action-primary:hover {
  background: #3f8fc5;
  border-color: #3f8fc5;
}

/* ---------- reduced-motion: בסיס ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .whatsapp-float {
    transition: none;
  }
}
