:root {
    --ink: #252123;
    --ink-soft: #5f585d;
    --paper: #f8f5f0;
    --paper-deep: #eee8e1;
    --white: #fffdf9;
    --plum: #72566e;
    --plum-deep: #493744;
    --plum-pale: #d9ccd6;
    --blue-grey: #8b9ba1;
    --line: rgba(37, 33, 35, 0.18);
    --radius: 2px;
    --shadow: 0 28px 80px rgba(54, 43, 50, 0.12);
    --shell: min(1180px, calc(100% - 40px));
    --serif: "Assistant", Arial, sans-serif;
    --display: "Karantina", "Assistant", sans-serif;
    --hand: "Playpen Sans Hebrew", "Assistant", sans-serif;
    --sans: "Assistant", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.72;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 130px 0; }
.skip-link {
    position: fixed;
    z-index: 1000;
    inset-block-start: 10px;
    inset-inline-start: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(248, 245, 240, 0.91);
    border-bottom: 1px solid rgba(37, 33, 35, 0.1);
    backdrop-filter: blur(15px);
}
.nav-shell {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 42px;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-name { font-size: 18px; font-weight: 700; letter-spacing: 0.16em; direction: ltr; }
.site-nav { display: flex; justify-content: center; gap: 30px; }
.site-nav a, .footer-links a {
    position: relative;
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}
.site-nav a::after, .footer-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after,
.footer-links a:hover::after, .footer-links a:focus-visible::after { transform: scaleX(1); }
.nav-toggle { display: none; }

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    color: var(--white);
    background: var(--plum-deep);
    border: 1px solid var(--plum-deep);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}
.button:hover, .button:focus-visible { color: var(--plum-deep); background: transparent; transform: translateY(-2px); }
.button-small { min-height: 43px; padding: 9px 20px; font-size: 14px; }
.button-light { color: var(--plum-deep); background: var(--white); border-color: var(--white); }
.button-light:hover, .button-light:focus-visible { color: var(--white); background: transparent; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}
.text-link span { transition: transform 220ms ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translate(-4px, 3px); }

.hero {
    position: relative;
    min-height: 840px;
    padding: 170px 0 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.8fr);
    align-items: center;
    gap: 8vw;
}
.eyebrow {
    margin-bottom: 24px;
    color: var(--plum);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
}
.hero h1 {
    max-width: 720px;
    margin-bottom: 32px;
    font-family: var(--display);
    font-size: clamp(46px, calc(6.4vw - 8px), 74px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 0.01em;
}
.h1-line { display: block; }
.hero h1 em { font-style: normal; font-weight: 700; color: var(--plum); }
.hero-lead { max-width: 660px; margin-bottom: 38px; color: var(--ink-soft); font-size: clamp(19px, 1.6vw, 23px); line-height: 1.68; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-visual { position: relative; justify-self: end; width: min(100%, 470px); }
.portrait-frame {
    position: relative;
    aspect-ratio: 0.72;
    overflow: hidden;
    border-radius: 46% 46% 4px 4px;
    box-shadow: var(--shadow);
}
.portrait-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: inherit;
    pointer-events: none;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 39%; }
.hero-orbit { position: absolute; border: 1px solid rgba(114, 86, 110, 0.2); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 520px; height: 520px; left: -260px; top: 90px; }
.hero-orbit-two { width: 170px; height: 170px; right: 42%; bottom: -80px; background: var(--plum-pale); border: 0; opacity: 0.5; }

.section-heading h2, .about h2, .faq h2, .contact h2, .pain h2 {
    font-family: var(--display);
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

.pain { background: var(--white); }
.pain-inner { max-width: 860px; }
.pain h2 { margin-bottom: 30px; }
.pain p:not(.eyebrow) { max-width: 760px; color: var(--ink-soft); font-size: 19px; }
.pain p strong { font-weight: 700; color: var(--plum); }
.pain-quote {
    margin-top: 34px;
    padding: 6px 26px 6px 0;
    border-right: 3px solid var(--plum);
    color: var(--ink) !important;
    font-family: var(--hand);
    font-size: 20px !important;
    line-height: 1.85;
}

/* רצועת יצירת קשר קומפקטית מתחת להירו (רצועה, לא כרטיסיה) */
.contact-strip { padding: 54px 0; background: var(--paper-deep); }
.strip-inner { max-width: 1000px; margin-inline: auto; }
.strip-text { margin-bottom: 24px; }
.strip-text .eyebrow { margin-bottom: 12px; }
.strip-text h2 {
    margin-bottom: 8px;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(32px, 3.2vw, 46px);
    line-height: 1.08;
    letter-spacing: 0.01em;
}
.strip-text > p:last-child { margin: 0; color: var(--ink-soft); font-size: 17px; }
.strip-fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; }
.strip-fields input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 15px;
    text-align: right;
    direction: rtl;
}
.strip-fields input::placeholder { color: var(--ink-soft); }
.strip-form .button { min-height: 50px; padding: 12px 30px; white-space: nowrap; }
.strip-consent { display: block; margin-top: 14px; color: var(--ink-soft); font-size: 13px; text-align: right; }
.strip-consent input { margin-left: 8px; vertical-align: middle; accent-color: var(--plum-deep); }
.strip-consent span { vertical-align: middle; }
.strip-consent a { color: var(--plum-deep); }
.strip-form .form-status { margin: 12px 0 0; color: var(--plum-deep); font-size: 14px; text-align: right; }

.section-heading { max-width: 820px; margin-bottom: 74px; }
.section-heading h2 { margin-bottom: 24px; }
.section-heading > p:last-child { max-width: 720px; color: var(--ink-soft); font-size: 20px; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.service-card {
    position: relative;
    display: flex;
    min-height: 540px;
    padding: 48px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 48px rgba(54, 43, 50, 0.06);
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 48px;
    left: 48px;
    height: 3px;
    background: var(--plum);
}
.service-card-accompaniment { background: var(--paper-deep); }
.service-type { margin-bottom: 28px; color: var(--plum); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; }
.service-card h3 { margin-bottom: 20px; font-family: var(--display); font-size: clamp(44px, 4.4vw, 62px); font-weight: 400; line-height: 1.05; letter-spacing: 0.01em; }
.service-card p:not(.service-type) { color: var(--ink-soft); }
.service-card .service-card-lead { margin-bottom: 24px; color: var(--ink); font-family: var(--serif); font-size: 24px; line-height: 1.55; }
.service-card-note { padding-top: 22px; border-top: 1px solid var(--line); font-size: 16px; }
.service-card-link { margin-top: auto; padding-top: 20px; }

.about-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 8vw; align-items: center; }
.about-photo { position: relative; }
.about-photo::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 56%;
    aspect-ratio: 1;
    right: -34px;
    top: -40px;
    background: var(--plum-pale);
    border-radius: 50%;
}
.about-photo img { width: 100%; aspect-ratio: 0.88; object-fit: cover; object-position: 50% 50%; filter: saturate(0.82); }
.about-copy h2 { margin-bottom: 30px; font-size: clamp(42px, 4.2vw, 60px); }
.about-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.about-copy .text-link { margin-top: 12px; }

.testimonials { background: var(--white); }
.section-heading.compact { margin-bottom: 40px; }
.testimonial-shots { margin: 6px auto 0; text-align: center; }
.testimonial-shots img { display: block; width: 100%; max-width: 1080px; margin-inline: auto; height: auto; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial-card { min-height: 260px; padding: 40px; border: 1px solid var(--line); }
.testimonial-card p { margin-bottom: 42px; font-family: var(--serif); font-size: 25px; line-height: 1.65; }
.testimonial-card span { color: var(--ink-soft); font-size: 14px; }
.testimonial-card.placeholder { color: #756d72; background: linear-gradient(135deg, rgba(217,204,214,0.22), transparent 55%); }

.row-heading { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.row-heading > p:last-child { max-width: 470px; margin-bottom: 12px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { display: flex; flex-direction: column; }
.blog-image { display: block; aspect-ratio: 1.18; margin-bottom: 24px; overflow: hidden; background: var(--paper-deep); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72); transition: transform 450ms ease, filter 450ms ease; }
.blog-card:hover img { transform: scale(1.035); filter: saturate(0.95); }
.blog-meta { margin-bottom: 11px; color: var(--plum); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; }
.blog-card h3 { min-height: 92px; margin-bottom: 22px; font-family: var(--serif); font-size: 25px; font-weight: 600; line-height: 1.45; }
.blog-card h3 a { text-decoration: none; }
.blog-card .text-link { margin-top: auto; }

.faq { background: var(--paper-deep); }
.faq-grid { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 9vw; align-items: start; }
.faq-intro { position: sticky; top: 145px; }
.faq-intro h2 { margin-bottom: 24px; }
.faq-intro > p:last-child { color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
    position: relative;
    padding: 30px 0 30px 56px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
    list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::before, summary::after { content: ""; position: absolute; left: 7px; top: 50%; width: 20px; height: 1px; background: var(--plum-deep); }
summary::after { transform: rotate(90deg); transition: transform 220ms ease; }
details[open] summary::after { transform: rotate(0); }
details p { max-width: 760px; margin: -2px 0 28px; padding-left: 70px; color: var(--ink-soft); }

.contact { padding: 120px 0; color: var(--white); background: var(--plum-deep); text-align: center; }
.contact-inner { max-width: 920px; }
.contact .eyebrow { color: var(--plum-pale); }
.contact h2 { margin-bottom: 26px; }
.contact p:not(.eyebrow) { max-width: 660px; margin: 0 auto 35px; color: #e2dce0; font-size: 20px; }
.contact-form { max-width: 640px; margin: 0 auto; display: grid; gap: 16px; text-align: right; }
.form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 16px;
    text-align: right;
    direction: rtl;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--ink-soft); }
.contact-form textarea { min-height: 132px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: #e2dce0; font-size: 14px; }
.consent input { margin-top: 5px; accent-color: var(--white); }
.consent a { color: var(--white); }
.contact-form .button {
    justify-self: center;
    min-width: 230px;
    margin-top: 10px;
    color: var(--plum-deep);
    background: var(--white);
    border-color: var(--white);
    cursor: pointer;
}
.contact-form .button:hover, .contact-form .button:focus-visible { color: var(--white); background: transparent; }
.form-status { margin: 6px 0 0; color: #e2dce0; font-size: 15px; text-align: center; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.site-footer { padding: 52px 0; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: #c9c2c6; }
.footer-social { display: flex; gap: 14px; margin-top: 14px; }
.footer-social a { color: #c9c2c6; line-height: 0; transition: color 200ms ease; }
.footer-social a:hover, .footer-social a:focus-visible { color: #fff; }
.footer-social svg { width: 22px; height: 22px; display: block; fill: currentColor; }
.footer-grid > p { margin: 0; color: #8f878c; font-size: 13px; direction: ltr; }
.whatsapp-float {
    position: fixed;
    z-index: 90;
    left: 24px;
    bottom: 24px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease;
}
.whatsapp-float:hover, .whatsapp-float:focus-visible {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg { width: 31px; height: 31px; fill: #fff; }

/* ===== וידג'ט נגישות ===== */
.a11y-toggle {
    position: fixed;
    bottom: 24px;
    left: 92px;
    z-index: 90;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 50%;
    background: var(--plum-deep);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(37, 33, 35, 0.28);
    transition: transform 220ms ease, background 220ms ease;
}
.a11y-toggle:hover, .a11y-toggle:focus-visible { transform: scale(1.08); background: var(--plum); }
.a11y-toggle svg { width: 28px; height: 28px; }
.a11y-panel {
    position: fixed;
    bottom: 90px;
    left: 24px;
    z-index: 95;
    width: 300px;
    max-width: calc(100vw - 48px);
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(54, 43, 50, 0.22);
    display: none;
}
.a11y-panel.open { display: block; }
.a11y-panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.01em;
    color: var(--ink);
}
.a11y-close { padding: 0 4px; background: none; border: none; color: var(--ink-soft); font-size: 24px; line-height: 1; cursor: pointer; }
.a11y-close:hover, .a11y-close:focus-visible { color: var(--plum); }
.a11y-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-btn {
    padding: 11px 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.a11y-btn:hover, .a11y-btn:focus-visible { background: var(--plum-pale); border-color: var(--plum); outline: none; }
.a11y-btn.active { background: var(--plum-deep); border-color: var(--plum-deep); color: #fff; }
.a11y-reset { width: 100%; margin-top: 8px; }
.a11y-link {
    display: block;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--plum);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}
.a11y-link:hover { text-decoration: underline; }

/* מצבי נגישות על ה-body */
body.a11y-font-lg { zoom: 1.12; }
body.a11y-font-xl { zoom: 1.24; }
body.a11y-contrast { background: #000 !important; color: #fff !important; }
body.a11y-contrast * { background-color: #000 !important; color: #fff !important; border-color: #fff !important; }
body.a11y-contrast a, body.a11y-contrast a * { color: #ff0 !important; }
body.a11y-grayscale { filter: grayscale(100%); }
body.a11y-links a { text-decoration: underline !important; font-weight: 700 !important; }
body.a11y-no-anim *, body.a11y-no-anim *::before, body.a11y-no-anim *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
}

/* ===== באנר עוגיות ===== */
.cookie-backdrop {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(37, 33, 35, 0.5);
    backdrop-filter: blur(2px);
    display: none;
    opacity: 0;
    transition: opacity 300ms ease;
}
.cookie-backdrop.show { display: block; opacity: 1; }
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    width: 460px;
    max-width: calc(100vw - 40px);
    padding: 30px 28px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--plum);
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(54, 43, 50, 0.24);
    display: none;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 350ms ease, transform 350ms ease;
}
.cookie-banner.show { display: block; opacity: 1; transform: translateY(0); }
.cookie-close { position: absolute; top: 12px; left: 14px; padding: 4px 8px; background: none; border: none; color: var(--ink-soft); font-size: 22px; line-height: 1; cursor: pointer; }
.cookie-close:hover, .cookie-close:focus-visible { color: var(--plum); }
.cookie-title { margin: 0 0 8px; font-family: var(--display); font-weight: 400; font-size: 28px; letter-spacing: 0.01em; color: var(--ink); }
.cookie-text { margin: 0 0 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.cookie-text a { color: var(--plum); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1.3fr; gap: 10px; }
.cookie-btn { padding: 12px 16px; border: 1px solid var(--plum-deep); border-radius: 100px; font: inherit; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 200ms ease, color 200ms ease; }
.cookie-btn-accept { background: var(--plum-deep); color: #fff; }
.cookie-btn-accept:hover { background: var(--plum); border-color: var(--plum); }
.cookie-btn-reject { background: transparent; color: var(--plum-deep); }
.cookie-btn-reject:hover { background: var(--paper); }
.cookie-links { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; gap: 16px; justify-content: center; font-size: 13px; }
.cookie-links a { color: var(--ink-soft); text-decoration: underline; }
.cookie-links a:hover { color: var(--plum); }

/* ===== עמודי תוכן (מדיניות / נגישות) ===== */
.legal { padding: 140px 0 30px; }
.legal .shell { max-width: 860px; }
.legal h1 { margin-bottom: 12px; font-family: var(--display); font-weight: 700; font-size: clamp(48px, 6vw, 78px); line-height: 1.05; letter-spacing: 0.01em; }
.legal .updated { margin-bottom: 8px; color: var(--ink-soft); font-size: 15px; }
.legal-body { padding-bottom: 40px; }
.legal-body h2 { margin: 46px 0 16px; font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3vw, 42px); letter-spacing: 0.01em; }
.legal-body h3 { margin: 26px 0 10px; color: var(--plum); font-size: 21px; font-weight: 700; }
.legal-body p { margin: 0 0 16px; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.legal-body ul { margin: 0 0 18px; padding-right: 24px; }
.legal-body li { margin-bottom: 8px; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.legal-body a { color: var(--plum); text-decoration: underline; }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-box { margin: 24px 0; padding: 22px 26px; background: var(--paper-deep); border-right: 3px solid var(--plum); border-radius: 4px; }
.legal-box > :last-child { margin-bottom: 0; }
.legal-contact { margin: 34px 0; padding: 30px; background: var(--plum-deep); border-radius: 6px; }
.legal-contact h2, .legal-contact h3 { margin-top: 0; color: #fff; }
.legal-contact p, .legal-contact li { color: #ece7ea; }
.legal-contact a { color: #fff; }
/* מאמרי בלוג */
.legal .article-intro { margin-bottom: 6px; color: var(--ink-soft); font-size: clamp(19px, 1.6vw, 23px); line-height: 1.6; }
.article-cta { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 18px 30px; align-items: center; justify-content: space-between; }
.article-cta .back-to-blog { color: var(--plum); font-weight: 700; text-decoration: none; }
.article-cta .back-to-blog:hover { text-decoration: underline; }
/* עמוד 404 */
.error-404 { min-height: 72vh; display: grid; place-content: center; text-align: center; padding: 150px 20px 80px; }
.error-404 .code { font-family: var(--display); font-weight: 700; font-size: clamp(96px, 18vw, 190px); line-height: 0.85; color: var(--plum); letter-spacing: 0.02em; }
.error-404 h1 { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 4.4vw, 48px); letter-spacing: 0.01em; margin: 14px 0 14px; }
.error-404 p { max-width: 480px; margin: 0 auto 32px; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.error-404 .error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== עמודי פירוט (פיצוח / ליווי) ===== */
.page-hero { padding: 160px 0 40px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
    margin-bottom: 24px;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(56px, 6.4vw, 96px);
    line-height: 1.0;
    letter-spacing: 0.01em;
}
.page-hero .page-lead { max-width: 700px; color: var(--ink-soft); font-size: clamp(19px, 1.6vw, 23px); line-height: 1.68; }
.page-section { padding: 56px 0; }
.page-section.tint { background: var(--paper-deep); }
.page-section h2 {
    margin-bottom: 34px;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: 0.01em;
}
.fit-list { max-width: 780px; margin: 0; padding: 0; display: grid; gap: 18px; }
.fit-list li { list-style: none; position: relative; padding-right: 34px; color: var(--ink-soft); font-size: 19px; line-height: 1.6; }
.fit-list li::before { content: "←"; position: absolute; right: 0; top: 1px; color: var(--plum); font-weight: 700; }
.steps { max-width: 880px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 30px; padding: 30px 0; border-top: 1px solid var(--line); }
.steps .step:last-child { border-bottom: 1px solid var(--line); }
.step-num { font-family: var(--display); font-weight: 400; font-size: 50px; line-height: 0.8; color: var(--plum); }
.step-body h3 { margin-bottom: 8px; font-family: var(--display); font-weight: 400; font-size: 28px; letter-spacing: 0.01em; }
.step-body p { margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.6; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit { padding: 30px 28px; background: var(--white); border: 1px solid var(--line); }
.benefit h3 { margin-bottom: 10px; font-family: var(--display); font-weight: 400; font-size: 26px; letter-spacing: 0.01em; }
.benefit p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.page-note { max-width: 720px; margin-top: 30px; color: var(--ink-soft); font-size: 16px; }
.price-block { max-width: 720px; margin-inline: auto; text-align: center; }
.price-block h2 { margin-bottom: 22px; }
.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(78px, 11vw, 134px);
    line-height: 1;
    color: var(--plum);
    letter-spacing: 0.01em;
}
.price-amount .cur { font-size: 0.4em; font-weight: 400; }
.price-includes { max-width: 600px; margin: 22px auto 0; color: var(--ink); font-size: 19px; line-height: 1.6; }
.price-block .page-note { max-width: 640px; margin: 22px auto 0; font-size: 19px; line-height: 1.6; }
.page-hero .hero-actions { margin-top: 34px; }
.page-cta { padding: 6px 0 56px; }
.page-cta .shell { text-align: center; }
.page-cta .button { min-width: 260px; }
.section-cta { margin-top: 46px; text-align: center; }

:focus-visible { outline: 2px solid var(--plum); outline-offset: 4px; }
.has-motion .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.has-motion .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    :root { --shell: min(100% - 32px, 760px); }
    .section { padding: 96px 0; }
    .nav-shell { grid-template-columns: 1fr auto; min-height: 74px; }
    .nav-cta { display: none; }
    .nav-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        place-content: center;
        gap: 7px;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }
    .nav-toggle span { width: 24px; height: 1px; background: var(--ink); transition: transform 220ms ease; }
    .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .site-nav {
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        display: none;
        padding: 30px 24px 36px;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }
    .site-nav.is-open { display: flex; }
    .hero { padding-top: 130px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 44px; }
    .hero h1 { font-size: clamp(40px, calc(6.6vw - 16px), 48px); }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 0; }
    .faq-grid { grid-template-columns: 1fr; gap: 48px; }
    .faq-intro { position: static; }
    .about-grid { gap: 50px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 14px); }
    .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 720px) {
    body { font-size: 17px; }
    .section { padding: 78px 0; }
    .hero { padding: 118px 0 72px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-copy { order: 1; }
    .hero-visual { order: 2; justify-self: stretch; width: 88%; margin-inline: auto; }
    .hero h1 { font-size: clamp(36px, calc(12.5vw - 4px), 58px); }
    .hero-lead { font-size: 19px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .hero-orbit-one { width: 360px; height: 360px; left: -250px; }
    .hero-orbit-two { right: auto; left: -25px; bottom: 30%; }
    .section-heading h2, .about h2, .faq h2, .contact h2, .pain h2 { font-size: clamp(42px, 12vw, 56px); }
    .section-heading { margin-bottom: 48px; }
    .service-card { padding: 38px 28px; }
    .service-card::before { right: 28px; left: 28px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { width: 94%; }
    .testimonial-grid, .blog-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-height: 0; padding: 30px 26px; }
    .testimonial-card p { font-size: 22px; }
    .row-heading { display: block; }
    .row-heading > p:last-child { margin-top: 18px; }
    .blog-card:last-child { grid-column: auto; max-width: none; }
    .blog-card h3 { min-height: 0; }
    summary { padding-left: 45px; font-size: 22px; }
    details p { padding-left: 0; }
    .contact { padding: 86px 0; }
    .form-row { grid-template-columns: 1fr; }
    .strip-inner { padding: 28px 24px 26px; }
    .strip-fields { grid-template-columns: 1fr; }
    .strip-form .button { min-height: 54px; }
    .pain-quote { font-size: 20px !important; }
    .a11y-toggle { left: 84px; bottom: 16px; }
    .a11y-panel { left: 16px; right: 16px; width: auto; bottom: 80px; }
    .cookie-banner { left: 16px; right: 16px; width: auto; bottom: 16px; }
    .page-hero { padding: 120px 0 30px; }
    .page-hero h1 { font-size: clamp(48px, 15vw, 72px); }
    .benefits { grid-template-columns: 1fr; }
    .step { grid-template-columns: auto 1fr; gap: 20px; }
    .step-num { font-size: 40px; }
    .whatsapp-float { left: 16px; bottom: 16px; }
}

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