/* אודליה בשירי — דף נחיתה */
:root {
  --ink: #1a2e2a;
  --ink-soft: #2f433e;
  --muted: #4a5c56;
  --paper: #f7f1e8;
  --paper-deep: #ebe2d4;
  --line: rgba(90, 70, 45, 0.32);
  --line-strong: rgba(74, 56, 36, 0.42);
  --sage: #246355;
  --sage-deep: #1a3f36;
  --sage-soft: #6fa894;
  --leaf: #2d7a64;
  --sand: #d9c4a8;
  --sand-soft: #ebe0d2;
  --coral: #b4532f;
  --whatsapp: #1a7a50;
  --whatsapp-deep: #146341;
  --white: #fffaf4;
  --focus: #0b57d0;
  --shadow: 0 18px 50px rgba(26, 46, 42, 0.12);
  --radius: 1.25rem;
  --font-display: "Frank Ruhl Libre", "Times New Roman", serif;
  --font-body: "Rubik", "Segoe UI", Tahoma, sans-serif;
  --header-h: 3.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 100% -10%, rgba(217, 196, 168, 0.35), transparent 55%),
    radial-gradient(900px 500px at -10% 30%, rgba(235, 226, 212, 0.55), transparent 50%),
    linear-gradient(180deg, #f3ebe0 0%, var(--paper) 28%, #faf6f0 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--leaf);
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  background: var(--sage-deep);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main:focus {
  outline: none;
}

main:focus-visible {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav-inline a:focus-visible,
.nav-menu a:focus-visible,
.nav-toggle:focus-visible,
.whatsapp-float:focus-visible,
.didyouknow-close:focus-visible,
.didyouknow-pause:focus-visible,
.brand:focus-visible,
.footer-meta a:focus-visible,
.contact-details a:focus-visible,
.form-alt a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--sage);
  box-shadow: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(247, 241, 232, 0.88);
  border-bottom: 1px solid var(--line-strong);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  position: relative;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand:hover {
  color: inherit;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--sage-deep);
}

.brand-tag {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-inline {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.35rem 0.75rem;
}

.nav-inline a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.88rem;
}

.nav-inline a:hover {
  color: var(--sage);
}

.nav-inline .nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.nav-inline .nav-cta:hover {
  background: var(--sage-deep);
  color: var(--white) !important;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--sage);
}

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--sage-deep);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.55rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--sage-deep);
  margin: 0.35rem 0;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.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);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: stretch;
  color: var(--white);
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 40%, rgba(63, 143, 120, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(217, 196, 168, 0.22), transparent 50%),
    linear-gradient(125deg, #14352e 0%, #1f4a40 42%, #2a6354 78%, #3a6e5c 100%);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.5px);
  background-size: 48px 48px, 36px 36px;
  animation: drift 22s linear infinite;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-24px, 16px, 0); }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  width: min(1120px, calc(100% - 2.5rem));
  max-width: none;
  margin-inline: auto;
  padding: 0;
  min-height: 0;
}

.hero-content {
  flex: 0 1 auto;
  max-width: 36rem;
  margin-inline: 0;
  padding-block: 1.5rem 2rem;
}

.hero-brand {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 6.2vw, 3.85rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  line-height: 1.35;
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.94);
}

.hero-lead {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-portrait {
  flex: 0 0 auto;
  order: 0;
  display: block;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: none;
  transform: none;
}

.hero-portrait img {
  width: 306px;
  max-width: min(306px, 34vw);
  height: auto;
  max-height: min(306px, 38vh);
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.35));
  animation: float-soft 7s ease-in-out infinite;
  transform-origin: center;
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: var(--sand);
  color: var(--sage-deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: var(--sand-soft);
  color: var(--sage-deep);
}

.btn-whatsapp {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero .btn-whatsapp {
  background: var(--sand);
  color: var(--sage-deep);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.hero .btn-whatsapp:hover {
  background: var(--sand-soft);
  color: var(--sage-deep);
}

.btn-block {
  width: 100%;
}

/* —— Sections —— */
.section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sage);
  text-transform: none;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.section-head h2,
.about-copy h2,
.contact-intro h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  line-height: 1.2;
  color: var(--sage-deep);
}

.section-lead,
.about-copy p,
.contact-intro > p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(235, 226, 212, 0.7) 20%, rgba(235, 226, 212, 0.7) 80%, transparent);
}

.about-copy {
  max-width: 40rem;
  margin-inline: 0 auto;
  text-align: start;
}

/* מאיפה מתחילים */
.start {
  background:
    linear-gradient(180deg, transparent, rgba(235, 226, 212, 0.55) 12%, rgba(235, 226, 212, 0.55) 88%, transparent);
}

.start-copy {
  max-width: 44rem;
  margin-inline: 0 auto;
  text-align: start;
}

.start-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  line-height: 1.2;
  color: var(--sage-deep);
  text-align: start;
}

.start-copy > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  text-align: start;
}

.start-quote {
  margin: 0 0 1.35rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 250, 244, 0.75);
  border-radius: 0.75rem;
  text-align: start;
}

.start-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
}

.start-list {
  margin: 0 0 1.15rem;
  padding-inline-start: 1.25rem;
  color: var(--ink-soft);
  text-align: start;
}

.start-list li {
  margin-bottom: 0.55rem;
  line-height: 1.65;
}

.start-cta {
  margin-top: 1.5rem !important;
  text-align: start;
}

.creds {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
}

.creds li {
  padding-block: 0.35rem;
  border-top: 2px solid var(--line-strong);
}

.cred-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 0.2rem;
}

.cred-value {
  font-weight: 500;
  color: var(--ink);
}

/* Areas — not cards: editorial list with dividers */
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  max-width: 60rem;
  margin-inline-start: 0;
  margin-inline-end: auto;
  border-top: 1px solid var(--line-strong);
}

.area-item {
  padding: 1.15rem 1rem 1.15rem 0;
  border-bottom: 1px solid var(--line-strong);
}

.area-item:nth-child(odd) {
  padding-inline-end: 0.85rem;
  border-inline-end: 1px solid var(--line-strong);
}

.area-item:nth-child(even) {
  padding-inline-start: 0.85rem;
}

.area-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--sage-deep);
}

.area-item p {
  margin: 0;
  color: var(--ink-soft);
}

/* Process */
.process {
  background:
    linear-gradient(135deg, rgba(47, 107, 92, 0.94), rgba(31, 74, 64, 0.98)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: var(--white);
}

.process .eyebrow {
  color: var(--sand);
}

.process .section-head {
  max-width: none;
}

.process .section-head h2 {
  color: var(--white);
  white-space: nowrap;
  font-size: clamp(1.25rem, 2.8vw, 2.2rem);
}

.process .section-lead {
  color: rgba(255, 255, 255, 0.84);
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.process-steps li {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.step-num {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sand);
}

.process-steps h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* Reviews */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.review p {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
  padding-top: 1.5rem;
}

.review p::before {
  content: "“";
  position: absolute;
  top: -0.15rem;
  inset-inline-start: 0;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--sage-soft);
  font-family: var(--font-display);
}

.review footer {
  font-size: 0.9rem;
  color: var(--muted);
}

.review cite {
  font-style: normal;
  font-weight: 500;
}

/* FAQ */
.faq {
  background:
    linear-gradient(180deg, transparent, rgba(235, 226, 212, 0.6) 18%, rgba(235, 226, 212, 0.6) 82%, transparent);
}

.faq-list {
  max-width: 46rem;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1.5px solid var(--line-strong);
  border-radius: 0.85rem;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 2px 0 rgba(90, 70, 45, 0.06);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--sage-deep);
  padding: 1rem 1.15rem;
  position: relative;
  padding-inline-end: 2.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:hover {
  background: rgba(47, 107, 92, 0.04);
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}

.faq-answer {
  padding: 0 1.15rem 1.1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.faq-answer a {
  font-weight: 600;
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, transparent, var(--paper-deep));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-details {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-details li {
  display: grid;
  gap: 0.2rem;
}

.contact-details span:first-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage);
}

.contact-details a {
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border-radius: var(--radius);
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
  font: inherit;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: 0.75rem;
  padding: 0.8rem 0.95rem;
  background: #faf6f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--sage-deep) 50%),
    linear-gradient(135deg, var(--sage-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 1.35rem) calc(50% - 0.15rem),
    calc(100% - 1.05rem) calc(50% - 0.15rem);
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
  padding-inline-end: 2.25rem;
  cursor: pointer;
}

html[dir="rtl"] .field select {
  background-position:
    calc(0% + 1.05rem) calc(50% - 0.15rem),
    calc(0% + 1.35rem) calc(50% - 0.15rem);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(36, 99, 85, 0.18);
  background-color: var(--white);
}

.field-error {
  margin: 0;
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 500;
}

.field-error[hidden] {
  display: none;
}

.req {
  color: var(--coral);
  font-weight: 700;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--coral);
}

.nav-menu.is-static {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  flex-direction: row !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  inset: auto !important;
}

.a11y-page {
  padding-block: clamp(2.5rem, 5vw, 4rem) 3rem;
}

.a11y-copy {
  max-width: 44rem;
}

.a11y-copy h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--sage-deep);
  line-height: 1.2;
}

.a11y-copy h2 {
  margin: 1.75rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--sage-deep);
}

.a11y-copy ul {
  margin: 0.5rem 0 1rem;
  padding-inline-start: 1.25rem;
  color: var(--ink-soft);
}

.a11y-copy li {
  margin-bottom: 0.4rem;
}

.a11y-back {
  margin-top: 2rem;
}

.a11y-back a {
  font-weight: 600;
}

.footer-meta a {
  color: var(--sage-deep);
  font-weight: 600;
  text-decoration: underline;
}

.footer-meta a:hover {
  color: var(--leaf);
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.92rem;
  color: var(--sage);
  font-weight: 500;
}

.form-alt {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-alt a {
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 6.5rem;
  border-top: 1px solid var(--line);
  background: #efe6d8;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer-meta {
  margin: 0;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(31, 143, 95, 0.4);
  text-decoration: none;
  animation: pulse-wa 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--whatsapp-deep);
  color: var(--white);
  transform: translateY(-3px);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 12px 28px rgba(31, 143, 95, 0.4); }
  50% { box-shadow: 0 12px 28px rgba(31, 143, 95, 0.55), 0 0 0 12px rgba(31, 143, 95, 0.12); }
}

/* —— כפתור נגישות צף + סרגל כלים —— */
.a11y-widget {
  position: fixed;
  inset-inline-end: 1.15rem;
  bottom: 5.1rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.a11y-fab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3.25rem;
  padding: 0.55rem 0.95rem 0.55rem 0.75rem;
  border: 1.5px solid #fff;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.a11y-fab:hover {
  background: #111;
}

.a11y-fab[aria-expanded="true"] {
  background: #111;
}

.a11y-fab-label {
  line-height: 1;
}

.a11y-panel {
  width: min(17.5rem, calc(100vw - 2.5rem));
  background: #000;
  border: 1.5px solid #fff;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  padding: 0.85rem 0.85rem 0.75rem;
  color: #fff;
}

.a11y-panel[hidden] {
  display: none !important;
}

.a11y-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.a11y-panel-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}

.a11y-panel-close {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.4rem;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.a11y-panel-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.a11y-tools {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.a11y-tool {
  width: 100%;
  text-align: start;
  border: 1.5px solid #fff;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.65rem 0.8rem;
  border-radius: 0.65rem;
  cursor: pointer;
}

.a11y-tool:hover {
  border-color: #ffe08a;
  background: #1a1a1a;
}

.a11y-tool[aria-pressed="true"] {
  background: #fff;
  border-color: #fff;
  color: #000;
  font-weight: 600;
}

.a11y-tool-reset {
  margin-top: 0.15rem;
  background: transparent;
  border-style: dashed;
}

.a11y-panel-foot {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.85rem;
}

.a11y-panel-foot a {
  font-weight: 600;
  color: #ffe08a;
}

.a11y-fab:focus-visible,
.a11y-tool:focus-visible,
.a11y-panel-close:focus-visible {
  outline: 3px solid #ffe08a;
  outline-offset: 2px;
}

/* מצבי נגישות */
html.a11y-font-lg {
  font-size: 112.5%;
}

html.a11y-font-xl {
  font-size: 125%;
}

html.a11y-contrast,
html.a11y-contrast body {
  background: #000 !important;
  color: #fff !important;
}

html.a11y-contrast .site-header,
html.a11y-contrast .site-footer,
html.a11y-contrast .contact-form,
html.a11y-contrast .faq-item,
html.a11y-contrast .a11y-panel,
html.a11y-contrast .didyouknow-card {
  background: #111 !important;
  color: #fff !important;
  border-color: #fff !important;
}

html.a11y-contrast a,
html.a11y-contrast .brand-name,
html.a11y-contrast .eyebrow,
html.a11y-contrast h1,
html.a11y-contrast h2,
html.a11y-contrast h3,
html.a11y-contrast .section-head h2,
html.a11y-contrast .about-copy h2,
html.a11y-contrast .contact-intro h2,
html.a11y-contrast .hero-brand,
html.a11y-contrast .hero h1,
html.a11y-contrast .hero-lead,
html.a11y-contrast .nav-menu a,
html.a11y-contrast .nav-inline a,
html.a11y-contrast .cred-label,
html.a11y-contrast .cred-value,
html.a11y-contrast .muted,
html.a11y-contrast .brand-tag,
html.a11y-contrast .section-lead,
html.a11y-contrast .faq-item summary,
html.a11y-contrast .faq-answer p,
html.a11y-contrast .a11y-tool,
html.a11y-contrast .didyouknow-label,
html.a11y-contrast .didyouknow-tip,
html.a11y-contrast .start-copy h2,
html.a11y-contrast .start-copy > p,
html.a11y-contrast .start-list,
html.a11y-contrast .start-quote p {
  color: #fff !important;
}

html.a11y-contrast .start-quote {
  background: #111 !important;
}

html.a11y-contrast .hero-backdrop {
  background: #000 !important;
}

html.a11y-contrast .btn-primary,
html.a11y-contrast .hero .btn-whatsapp,
html.a11y-contrast .nav-cta,
html.a11y-contrast .a11y-fab {
  background: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}

html.a11y-contrast .btn-whatsapp {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

html.a11y-contrast .field input,
html.a11y-contrast .field textarea,
html.a11y-contrast .field select {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}

html.a11y-underline a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.2em !important;
}

html.a11y-readable,
html.a11y-readable body {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

html.a11y-readable h1,
html.a11y-readable h2,
html.a11y-readable h3,
html.a11y-readable .brand-name,
html.a11y-readable .hero-brand,
html.a11y-readable .didyouknow-label,
html.a11y-readable .a11y-panel-head h2 {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

html.a11y-spacing body {
  letter-spacing: 0.04em;
  word-spacing: 0.12em;
  line-height: 1.85;
}

html.a11y-spacing p,
html.a11y-spacing li,
html.a11y-spacing .faq-answer p {
  line-height: 1.9 !important;
}

@media (max-width: 480px) {
  .a11y-fab-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .a11y-fab {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .a11y-widget {
    bottom: 5rem;
  }
}

/* —— הידעת? sticky widget (מסכים רחבים בלבד) —— */
.didyouknow {
  display: none;
}

@media (min-width: 1100px) {
  .didyouknow:not([hidden]) {
    display: block;
    position: fixed;
    /* קרוב לקצה ימין — רווח גדול יותר מהתוכן המרכזי */
    inset-inline-start: max(1rem, calc((100vw - 1120px) / 2 - 17rem));
    top: calc(var(--header-h) + 9rem);
    /* מיקום מדויק מתחת ל-hero מחושב ב-JS, עם הגבלה למסך */
    z-index: 40;
    width: 13.5rem;
    pointer-events: none;
  }

  .didyouknow-card {
    pointer-events: auto;
    position: relative;
    min-height: 18.5rem;
    display: flex;
    flex-direction: column;
    background: rgba(255, 250, 244, 0.96);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(140, 110, 70, 0.55);
    box-shadow:
      0 0 0 1px rgba(217, 196, 168, 0.35),
      0 14px 34px rgba(26, 46, 42, 0.12);
    border-radius: 0.85rem;
    padding: 1.35rem 1rem 1.15rem;
    text-align: start;
  }

  .didyouknow-close {
    position: absolute;
    inset-inline-end: 0.5rem;
    top: 0.4rem;
    width: 1.75rem;
    height: 1.75rem;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 0.35rem;
  }

  .didyouknow-close:hover {
    color: var(--ink);
    background: rgba(47, 107, 92, 0.08);
  }

  .didyouknow-icon {
    width: 3.025rem;
    height: 3.025rem;
    display: grid;
    place-items: center;
    margin-bottom: 0.6rem;
    border-radius: 50%;
    color: #9a7b3c;
    background:
      radial-gradient(circle at 35% 30%, rgba(255, 236, 190, 0.95), rgba(217, 196, 168, 0.35) 55%, transparent 70%),
      rgba(47, 107, 92, 0.08);
    border: 1px solid rgba(184, 160, 120, 0.45);
  }

  .didyouknow-label {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.265rem;
    font-weight: 700;
    color: var(--sage-deep);
    line-height: 1.2;
  }

  .didyouknow-tip {
    margin: 0;
    flex: 1 1 auto;
    min-height: 7.5em;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
    transition: opacity 0.35s var(--ease);
  }

  .didyouknow-tip.is-fading {
    opacity: 0;
  }

  .didyouknow-dots {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.85rem;
  }

  .didyouknow-dots span {
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 50%;
    background: rgba(154, 123, 60, 0.28);
    transition: background 0.25s, transform 0.25s;
  }

  .didyouknow-dots span.is-active {
    background: #9a7b3c;
    transform: scale(1.15);
  }

  .didyouknow-pause {
    margin-top: auto;
    width: 100%;
    border: 1.5px solid rgba(140, 110, 70, 0.55);
    background: rgba(255, 250, 244, 0.85);
    color: var(--sage-deep);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0.55rem;
    border-radius: 0.55rem;
    cursor: pointer;
  }

  .didyouknow-pause:hover,
  .didyouknow-pause[aria-pressed="true"] {
    background: rgba(217, 196, 168, 0.45);
  }
}

@media (min-width: 1100px) and (max-width: 1400px) {
  /* במסכים בינוניים-רחבים: מצמידים לקצה הימני להגדלת הרווח מהתוכן */
  .didyouknow:not([hidden]) {
    inset-inline-start: 1rem;
    width: 12.75rem;
  }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-backdrop::before,
  .hero-portrait img,
  .whatsapp-float {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid,
  .process-steps,
  .reviews-track,
  .areas-list {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    padding-block: 0;
    gap: 0.75rem;
  }

  .hero-portrait {
    order: -1;
    width: auto;
    min-height: 0;
    justify-self: center;
    display: block;
    padding-top: 0.75rem;
    padding-bottom: 0;
    transform: none;
  }

  .hero-portrait img {
    width: min(175px, 44vw);
    max-height: 175px;
  }

  .hero-content {
    max-width: none;
    margin-inline: 1.25rem;
    text-align: center;
    padding-block: 0.75rem 1.5rem;
  }

  .hero h1,
  .hero-lead {
    max-width: none;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .area-item,
  .area-item:nth-child(odd),
  .area-item:nth-child(even) {
    padding: 1.5rem 0;
    border-inline-end: 0;
  }

  .creds {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    gap: 0.65rem;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tag {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav {
    margin-inline-start: auto;
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .nav-inline {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-inline li:not(:last-child) {
    display: none;
  }

  .nav-inline a {
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .nav-inline .nav-cta {
    padding: 0.4rem 0.7rem;
  }

  .nav-toggle {
    display: block;
    margin-inline-start: 0;
    flex-shrink: 0;
  }

  .nav-menu {
    position: absolute;
    inset-inline: 0;
    top: var(--header-h);
    background: rgba(247, 241, 232, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.35rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s;
  }

  .nav-menu.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 0.4rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .hero {
    min-height: 0;
  }

  .process .section-head h2 {
    white-space: normal;
    font-size: clamp(1.2rem, 5vw, 1.55rem);
  }

  .hero-brand {
    font-size: clamp(2.1rem, 10vw, 2.7rem);
  }

  .creds {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .nav-inline .nav-cta {
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
  }
}
