/* =========================================================

בית איתן --- ליווי כלכלי למשפחות

Hebrew RTL landing page · mobile-first · light/dark

========================================================= */

/* -- Tokens (Light) -- */

:root {

/* Warm paper palette */

--bg: #F4EFE6; /* cream paper */

--surface: #FBF6EC;

--surface-alt: #ECE3D2;

--border: #D9CFBC;

--text: #1F2A26; /* deep ink */

--text-muted: #5C6661;

--text-faint: #8C9590;

--accent: #2C7A6A; /* deep teal-green */

--accent-strong: #184F4A;

--accent-soft: #DCEFE8;

--accent-warm: #B98735; /* gold, sparingly */

--accent-warm-soft: #F2E4C7;

--shadow-sm: 0 1px 2px rgba(20,30,28,0.05);

--shadow-md: 0 6px 24px rgba(20,30,28,0.08);

--shadow-lg: 0 16px 48px rgba(20,30,28,0.10);

--radius-sm: 8px;

--radius: 14px;

--radius-lg: 22px;

--maxw: 1160px;

--gutter: clamp(20px, 4vw, 40px);

--font-sans: "Assistant", "Heebo", "Noto Sans Hebrew", system-ui,
-apple-system, "Segoe UI", Tahoma, sans-serif;

--t-fast: 160ms cubic-bezier(.2,.7,.3,1);

--t-mid: 260ms cubic-bezier(.2,.7,.3,1);

}

/* Dark theme override */

:root[data-theme="dark"] {

--bg: #14191A;

--surface: #1B2122;

--surface-alt: #232A2B;

--border: #353D3D;

--text: #E9E4D8;

--text-muted: #A6ADA9;

--text-faint: #707873;

--accent: #5BB3A0;

--accent-strong: #8FD2C2;

--accent-soft: #1F3633;

--accent-warm: #E2B973;

--accent-warm-soft: #3A2F1A;

--shadow-sm: 0 1px 2px rgba(0,0,0,0.4);

--shadow-md: 0 6px 24px rgba(0,0,0,0.45);

--shadow-lg: 0 16px 48px rgba(0,0,0,0.55);

}

/* Auto dark via system if user hasn't chosen */

@media (prefers-color-scheme: dark) {

:root:not([data-theme="light"]):not([data-theme="dark"]) {

--bg: #14191A;

--surface: #1B2122;

--surface-alt: #232A2B;

--border: #353D3D;

--text: #E9E4D8;

--text-muted: #A6ADA9;

--text-faint: #707873;

--accent: #5BB3A0;

--accent-strong: #8FD2C2;

--accent-soft: #1F3633;

--accent-warm: #E2B973;

--accent-warm-soft: #3A2F1A;

--shadow-sm: 0 1px 2px rgba(0,0,0,0.4);

--shadow-md: 0 6px 24px rgba(0,0,0,0.45);

--shadow-lg: 0 16px 48px rgba(0,0,0,0.55);

}

}

/* -- Reset -- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {

margin: 0;

font-family: var(--font-sans);

font-size: 17px;

line-height: 1.6;

color: var(--text);

background: var(--bg);

font-feature-settings: "kern" 1;

-webkit-font-smoothing: antialiased;

-moz-osx-font-smoothing: grayscale;

text-rendering: optimizeLegibility;

}

img, svg { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; }

a { color: var(--accent-strong); text-decoration: none; transition:
color var(--t-fast); }

a:hover { color: var(--accent); }

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

.nowrap { white-space: nowrap; }

.num-range {

direction: ltr;

unicode-bidi: isolate;

white-space: nowrap;

}

/* -- Skip link -- */

.skip-link {

position: absolute;

inset-inline-start: 0;

top: 0;

transform: translateY(-140%);

background: var(--accent-strong);

color: #fff;

padding: 8px 14px;

border-radius: 0 0 var(--radius-sm) 0;

z-index: 100;

}

.skip-link:focus { transform: translateY(0); outline: 2px solid
var(--accent-warm); }

/* -- Layout helpers -- */

.container {

width: 100%;

max-width: var(--maxw);

margin: 0 auto;

padding-inline: var(--gutter);

}

.section { padding-block: clamp(64px, 10vw, 112px); }

.section-alt { background: var(--surface); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head h2 {

font-size: clamp(28px, 3.4vw, 40px);

line-height: 1.2;

letter-spacing: -0.01em;

margin: 8px 0 12px;

font-weight: 700;

}

.section-lead {

font-size: clamp(16px, 1.6vw, 18px);

color: var(--text-muted);

margin: 0;

}

.eyebrow {

display: inline-block;

font-size: clamp(15px, 1.25vw, 17px);

font-weight: 700;

letter-spacing: 0.04em;

color: var(--accent);

text-transform: none;

background: var(--accent-soft);

border-radius: 999px;

padding: 6px 14px;

}

/* -- Header -- */

.site-header {

position: sticky;

top: 0;

z-index: 50;

background: color-mix(in srgb, var(--bg) 90%, transparent);

backdrop-filter: saturate(150%) blur(10px);

-webkit-backdrop-filter: saturate(150%) blur(10px);

border-block-end: 1px solid var(--border);

}

.header-inner {

display: flex;

align-items: center;

gap: 18px;

min-height: 82px;

}

.brand-group {

display: flex;

align-items: center;

gap: 14px;

margin-inline-end: auto;

}

.logo {

display: flex;

align-items: center;

gap: 14px;

color: var(--text);

}

.logo:hover { color: var(--text); }

.logo-mark {

width: 48px;

height: 48px;

color: var(--accent-strong);

flex: 0 0 auto;

}

.logo-text { display: flex; flex-direction: column; line-height: 1.14; }

.logo-name { font-weight: 800; font-size: 22px; letter-spacing: -0.01em;
}

.logo-sub { font-size: 15px; color: var(--text-muted); font-weight:
600; }

.logo-owner {

margin-top: 3px;

font-size: 13px;

color: var(--text-muted);

font-weight: 600;

max-width: 360px;

white-space: normal;

line-height: 1.25;

}

.partner-logo {

width: 52px;

height: 52px;

object-fit: contain;

border-radius: 12px;

background: #fff;

padding: 4px;

border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);

box-shadow: var(--shadow-sm);

}

.partner-link {

display: inline-flex;

border-radius: 14px;

}

.partner-link:focus-visible {

outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);

outline-offset: 4px;

}

@media (max-width: 560px) {

.header-inner { min-height: 76px; gap: 10px; }

.brand-group { gap: 10px; }

.logo { gap: 10px; }

.logo-mark { width: 42px; height: 42px; }

.partner-logo { width: 44px; height: 44px; }

.logo-name { font-size: 19px; }

.logo-sub { font-size: 13px; }

.logo-owner { font-size: 11.5px; max-width: 230px; }

}

.site-nav { display: none; gap: 18px; align-items: center; }

.site-nav a {

color: var(--text-muted);

font-weight: 500;

font-size: 15px;

line-height: 1.15;

text-align: center;

display: inline-flex;

align-items: center;

justify-content: center;

}

.site-nav a:hover { color: var(--text); }

.site-nav .nav-cta {

background: var(--accent-strong);

color: #fff;

padding: 9px 18px;

border-radius: 999px;

line-height: 1;

}

.site-nav .nav-cta:hover { background: var(--accent); color: #fff; }

.theme-toggle {

width: 40px; height: 40px;

display: inline-flex; align-items: center; justify-content: center;

background: transparent;

color: var(--text-muted);

border: 1px solid var(--border);

border-radius: 999px;

transition: background var(--t-fast), color var(--t-fast),
border-color var(--t-fast);

}

.theme-toggle:hover { color: var(--text); background: var(--surface);
}

/* Default: in light mode, show moon (click → switch to dark) */
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }

/* In dark mode (explicit), show sun (click → switch to light) */
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Auto dark via system if user hasn't chosen */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not([data-theme="dark"]) .theme-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]):not([data-theme="dark"]) .theme-toggle .icon-moon { display: none; }
}

@media (min-width: 820px) {

.site-nav { display: flex; }

}

/* -- Mobile nav toggle (hamburger) -- */
.nav-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.nav-toggle:hover { color: var(--text); background: var(--surface); }
.nav-toggle .icon-close { display: none; }
.site-header.nav-open .nav-toggle .icon-open { display: none; }
.site-header.nav-open .nav-toggle .icon-close { display: block; }

@media (min-width: 820px) {
  .nav-toggle { display: none; }
}

/* Mobile nav drawer (lives outside .site-header to avoid backdrop-filter containing-block) */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 95;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.mobile-nav {
  position: fixed;
  top: 64px;
  inset-inline: 12px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 16px 20px 20px;
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.35);
  z-index: 96;
}
.mobile-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  text-align: start;
  padding: 12px 8px;
  border-radius: 10px;
  text-decoration: none;
}
.mobile-nav a:hover { background: color-mix(in srgb, var(--text) 8%, transparent); }
.mobile-nav .nav-cta {
  background: var(--accent-strong);
  color: #fff;
  text-align: center;
  margin-top: 6px;
  padding: 12px 18px;
  border-radius: 999px;
}
.mobile-nav .nav-cta:hover { background: var(--accent); color: #fff; }

body.nav-open .mobile-nav { display: flex; }
body.nav-open .mobile-nav-backdrop { display: block; opacity: 1; }

/* Floating menu icon swap when open */
body.nav-open .floating-menu .icon-open { display: none; }
body.nav-open .floating-menu .icon-close { display: block; }

@media (min-width: 820px) {
  .mobile-nav, .mobile-nav-backdrop { display: none !important; }
}

/* -- Buttons -- */

.btn {

display: inline-flex;

align-items: center;

justify-content: center;

gap: 8px;

padding: 14px 24px;

border-radius: 999px;

font-weight: 600;

font-size: 16px;

text-align: center;

border: 1px solid transparent;

transition: transform var(--t-fast), background var(--t-fast), color
var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);

cursor: pointer;

line-height: 1;

}

.btn:active { transform: translateY(1px); }

.btn-primary {

background: var(--accent-strong);

color: #fff;

box-shadow: var(--shadow-sm);

}

.btn-primary:hover { background: var(--accent); color: #fff;
box-shadow: var(--shadow-md); }

.btn-ghost {

background: transparent;

color: var(--text);

border-color: var(--border);

}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent);
}

.btn-sm { padding: 10px 18px; font-size: 14px; }

/* -- Hero -- */

.hero {

padding-block: clamp(48px, 8vw, 96px);

position: relative;

overflow: hidden;

}

.hero::before {

content: "";

position: absolute;

inset: 0;

background:

radial-gradient(60% 60% at 85% 0%, var(--accent-soft) 0%, transparent
60%),

radial-gradient(40% 40% at 0% 100%, var(--accent-warm-soft) 0%,
transparent 60%);

pointer-events: none;

opacity: 0.55;

}

.hero-inner {

position: relative;

display: grid;

gap: clamp(32px, 5vw, 56px);

grid-template-columns: 1fr;

align-items: center;

}

.hero-title {

font-size: clamp(34px, 5.5vw, 60px);

line-height: 1.08;

letter-spacing: -0.02em;

margin: 16px 0 18px;

font-weight: 800;

}

.accent-text {

color: var(--accent-strong);

text-shadow: 0 1px 0 color-mix(in srgb, var(--accent-warm-soft) 65%,
transparent);

}

.hero-lead {

font-size: clamp(17px, 1.8vw, 20px);

color: var(--text-muted);

max-width: 620px;

margin: 0 0 28px;

}

.hero-lead strong {

color: var(--text);

font-weight: 600;

}

.hero-ctas {

display: flex;

flex-wrap: wrap;

gap: 12px;

margin-bottom: 14px;

}

.hero-note {

margin: 0;

font-size: 14px;

color: var(--text-faint);

}

.hero-svg {

width: 100%;

height: auto;

border-radius: var(--radius-lg);

border: 1px solid var(--border);

box-shadow: var(--shadow-md);

}

@media (min-width: 900px) {

.hero-inner { grid-template-columns: 1.1fr 1fr; }

}

/* -- Trust bar -- */

.trust {

background: var(--surface-alt);

border-block: 1px solid var(--border);

}

.trust-inner {

display: grid;

grid-template-columns: 1fr;

gap: 18px;

padding-block: 28px;

text-align: center;

}

.trust-item { display: flex; flex-direction: column; gap: 4px; }

.trust-num {

font-weight: 700;

font-size: 18px;

color: var(--accent-strong);

}

.trust-label {

font-size: 16px;

line-height: 1.45;

font-weight: 600;

color: var(--text-muted);

}

.trust-divider { display: none; }

@media (min-width: 720px) {

.trust-inner {

grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;

text-align: start;

}

.trust-divider {

display: block;

width: 1px;

height: 36px;

background: var(--border);

align-self: center;

}

}

/* -- Cards (problems) -- */

.cards {

display: grid;

grid-template-columns: 1fr;

gap: 16px;

}

@media (min-width: 640px) { .cards { grid-template-columns: repeat(2,
1fr); } }

@media (min-width: 980px) { .cards { grid-template-columns: repeat(3,
1fr); } }

.card {

background: var(--surface);

border: 1px solid var(--border);

border-radius: var(--radius);

padding: 24px;

transition: transform var(--t-mid), box-shadow var(--t-mid),
border-color var(--t-mid);

}

.card .problem-dot {

display: inline-block;

color: #2E7D5B;

font-size: 14px;

line-height: 1;

margin-inline-end: 10px;

vertical-align: 0.08em;

}

:root[data-theme="dark"] .card .problem-dot { color: #6BC79A; }

@media (prefers-color-scheme: dark) {

:root:not([data-theme="light"]) .card .problem-dot { color: #6BC79A; }

}

.card:hover {

transform: translateY(-2px);

box-shadow: var(--shadow-md);

border-color: color-mix(in srgb, var(--accent) 40%, var(--border));

}

.card-bullet {

font-weight: 700;

font-size: 13px;

color: var(--accent);

margin-bottom: 10px;

letter-spacing: 0.05em;

}

.card h3 {

margin: 0 0 8px;

font-size: 19px;

font-weight: 700;

}

.card p { margin: 0; color: var(--text-muted); }

/* -- Value list -- */

.value-list {

list-style: none;

padding: 0;

margin: 0;

display: grid;

grid-template-columns: 1fr;

gap: 22px;

}

@media (min-width: 720px) { .value-list { grid-template-columns:
repeat(2, 1fr); } }

.value-list li {

display: flex;

gap: 14px;

padding: 18px;

background: var(--bg);

border: 1px solid var(--border);

border-radius: var(--radius);

}

.value-mark {

flex: 0 0 auto;

font-weight: 700;

color: var(--accent);

font-size: 22px;

line-height: 1;

margin-top: 2px;

}

:root[dir="rtl"] .value-mark, html[dir="rtl"] .value-mark {
transform: scaleX(-1); }

.value-list h3 { margin: 0 0 4px; font-size: 17px; font-weight: 700; }

.value-list p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* -- Steps -- */

.steps {

list-style: none;

padding: 0;

margin: 0;

display: grid;

grid-template-columns: 1fr;

gap: 16px;

counter-reset: step;

position: relative;

}

@media (min-width: 720px) { .steps { grid-template-columns: repeat(2,
1fr); } }

@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4,
1fr); } }

.step {

position: relative;

background: var(--surface);

border: 1px solid var(--border);

border-radius: var(--radius);

padding: 24px;

transition: transform var(--t-mid), box-shadow var(--t-mid);

}

.step:hover { transform: translateY(-2px); box-shadow:
var(--shadow-md); }

.step-num {

font-size: 28px;

font-weight: 800;

color: var(--accent);

margin-bottom: 8px;

font-variant-numeric: tabular-nums;

}

.step h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; }

.step p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* -- Quiz -- */

.section-quiz {

background: linear-gradient(180deg, var(--bg) 0%, var(--surface)
100%);

}

.quiz {

background: var(--surface);

border: 1px solid var(--border);

border-radius: var(--radius-lg);

padding: clamp(20px, 3vw, 36px);

box-shadow: var(--shadow-sm);

}

.quiz-list { list-style: none; padding: 0; margin: 0; display: grid;
gap: 22px; }

.quiz-q { padding: 16px 0; border-block-end: 1px dashed var(--border);
}

.quiz-q:last-child { border-block-end: none; }

.q-text {

font-weight: 600;

font-size: 17px;

margin: 0 0 12px;

}

.q-num { color: var(--accent); margin-inline-end: 4px; font-weight:
700; }

.q-options {

display: grid;

grid-template-columns: 1fr;

gap: 8px;

}

@media (min-width: 640px) { .q-options { grid-template-columns:
repeat(2, 1fr); } }

.q-options label {

display: flex;

align-items: flex-start;

gap: 10px;

padding: 12px 14px;

border: 1px solid var(--border);

border-radius: var(--radius-sm);

background: var(--bg);

cursor: pointer;

transition: background var(--t-fast), border-color var(--t-fast);

font-size: 15px;

}

.q-options label:hover { border-color: var(--accent); }

.q-options input[type="radio"] {

accent-color: var(--accent-strong);

margin-top: 3px;

}

.q-options label:has(input:checked) {

border-color: var(--accent);

background: var(--accent-soft);

}

.inline-quiz-field {

max-width: 220px;

margin-block-start: 14px;

}

.quiz-actions {

display: flex;

flex-wrap: wrap;

gap: 12px;

margin-top: 20px;

}

.quiz-result {

margin-top: 24px;

padding: 20px 22px;

border: 1px solid var(--accent);

border-radius: var(--radius);

background: var(--accent-soft);

color: var(--text);

}

.quiz-result h3 {

margin: 0 0 6px;

font-size: 19px;

color: var(--accent-strong);

}

.quiz-result p { margin: 0 0 12px; color: var(--text); }

.quiz-result .quiz-cta { display: inline-flex; gap: 10px; flex-wrap:
wrap; }

:root[data-theme="dark"] .quiz-result h3 { color:
var(--accent-strong); }

/* -- Contact -- */

.contact-grid {

display: grid;

grid-template-columns: 1fr;

gap: clamp(28px, 5vw, 56px);

align-items: start;

}

@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr
1.1fr; } }

.contact-copy h2 {

font-size: clamp(26px, 3vw, 36px);

line-height: 1.2;

margin: 8px 0 14px;

font-weight: 700;

}

.contact-copy p { color: var(--text-muted); margin: 0 0 18px; }

.contact-meta {

list-style: none; padding: 0; margin: 0 0 18px;

display: grid; gap: 8px;

font-size: 15px;

}

.privacy-note {

font-size: 14px;

color: var(--text-faint);

border-inline-start: 3px solid var(--accent-warm);

padding-inline-start: 12px;

margin: 16px 0 0;

}

.contact-form {

background: var(--bg);

border: 1px solid var(--border);

border-radius: var(--radius-lg);

padding: clamp(20px, 3vw, 32px);

display: grid;

gap: 16px;

}

.field { display: grid; gap: 6px; }

.field label { font-size: 14px; color: var(--text-muted); font-weight:
500; }

.field input,

.field select,

.field textarea {

width: 100%;

padding: 12px 14px;

border-radius: var(--radius-sm);

border: 1px solid var(--border);

background: var(--surface);

color: var(--text);

font-size: 16px;

transition: border-color var(--t-fast), box-shadow var(--t-fast);

}

.field input:focus,

.field select:focus,

.field textarea:focus {

outline: none;

border-color: var(--accent);

box-shadow: 0 0 0 3px var(--accent-soft);

}

.field textarea { resize: vertical; min-height: 96px; }

.field-row {

display: grid;

grid-template-columns: 1fr;

gap: 16px;

}

@media (min-width: 640px) { .field-row { grid-template-columns: 1fr
1fr; } }

.consent {

display: flex;

gap: 10px;

align-items: flex-start;

font-size: 14px;

color: var(--text-muted);

}

.consent input { accent-color: var(--accent-strong); margin-top: 4px; }

.consent strong { color: var(--text); font-weight: 600; }

.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.form-result {

margin-top: 4px;

padding: 14px 16px;

border-radius: var(--radius-sm);

background: var(--accent-soft);

color: var(--text);

border: 1px solid var(--accent);

font-size: 15px;

}

.form-result.is-error {

background: color-mix(in srgb, #B23A3A 12%, var(--bg));

border-color: #B23A3A;

}

/* -- FAQ -- */

.faq-wrap { max-width: 880px; margin: 0 auto; }

.faq { display: grid; gap: 10px; }

.faq details {

background: var(--surface);

border: 1px solid var(--border);

border-radius: var(--radius);

padding: 4px 18px;

transition: border-color var(--t-fast), box-shadow var(--t-fast);

}

.faq details[open] {

border-color: color-mix(in srgb, var(--accent) 50%, var(--border));

box-shadow: var(--shadow-sm);

}

.faq summary {

list-style: none;

cursor: pointer;

padding: 14px 0;

font-weight: 600;

font-size: 16px;

display: flex;

justify-content: space-between;

gap: 16px;

align-items: center;

}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {

content: "+";

font-weight: 600;

font-size: 22px;

color: var(--accent);

transition: transform var(--t-fast);

line-height: 1;

}

.faq details[open] summary::after { content: "−"; }

.faq p {

margin: 0 0 14px;

color: var(--text-muted);

font-size: 15px;

line-height: 1.65;

}

/* -- Footer -- */

.site-footer {

background: var(--surface-alt);

border-block-start: 1px solid var(--border);

padding-block: 40px;

margin-top: 24px;

}

.footer-inner { display: grid; gap: 14px; }

.footer-brand {

display: flex; align-items: center; gap: 10px;

color: var(--text);

font-weight: 700;

}

.footer-brand svg { color: var(--accent-strong); }

.footer-nup-logo {

width: 28px;

height: 28px;

object-fit: contain;

border-radius: 7px;

background: #fff;

padding: 2px;

border: 1px solid var(--border);

}

.footer-credit {

margin: -4px 0 0;

color: var(--text);

font-size: 14px;

font-weight: 600;

}

.disclaimer {

font-size: 13px;

color: var(--text-muted);

margin: 0;

max-width: 760px;

line-height: 1.6;

}

.copy { font-size: 12px; color: var(--text-faint); margin: 0; }

/* -- Focus visibility -- */

:focus-visible {

outline: 2px solid var(--accent);

outline-offset: 2px;

border-radius: 6px;

}

/* -- Reduced motion -- */

@media (prefers-reduced-motion: reduce) {

* { animation: none !important; transition: none !important;
scroll-behavior: auto !important; }

}
/* Green dot bullets for value list */
.value-mark.dot {
  color: #2E7D5B;
  font-size: 14px;
  line-height: 1.6;
  transform: none !important;
}
:root[data-theme="dark"] .value-mark.dot { color: #6BC79A; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .value-mark.dot { color: #6BC79A; }
}

/* Quiz subtitle (smaller "ללא התחייבות") */
.quiz-subtitle {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--text-muted);
  margin-inline-start: 8px;
  letter-spacing: normal;
}

/* About Me section */
.about-inner {
  display: grid;
  grid-template-columns: minmax(140px, 180px) 1fr;
  gap: 36px;
  align-items: start;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-copy p {
  margin: 0 0 14px;
  line-height: 1.75;
  color: var(--text);
}
.about-copy a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 720px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-photo {
    max-width: 160px;
    margin-inline: auto;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.testimonial {
  margin: 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 8px;
  inset-inline-start: 18px;
  font-size: 56px;
  line-height: 1;
  color: var(--accent-strong);
  opacity: 0.35;
  font-family: serif;
}
.testimonial blockquote {
  margin: 0;
  padding-top: 18px;
}
.testimonial blockquote p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: var(--text);
}
.testimonial blockquote p:last-child {
  margin-bottom: 0;
}
.testimonial figcaption {
  margin-top: 1.2em;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.testimonial figcaption strong {
  color: var(--text);
  font-weight: 700;
}
.testimonial figcaption a {
  color: var(--accent-strong);
  text-decoration: none;
}
.testimonial figcaption a:hover {
  text-decoration: underline;
}
@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
