/* Binah Yetera — main.css v2
   Warm, alive, Israeli SMB. Photo-forward. WhatsApp-as-product.
   Mobile-first, RTL-first. */

:root {
  /* Surfaces */
  --paper:        #FBFAF6;
  --paper-soft:   #F4F0E8;
  --card:         #FFFFFF;
  --card-border:  #E8E2D5;
  --rule:         #E0DAD0;

  /* Ink */
  --ink:          #0F0F0F;
  --ink-soft:     #4A4A50;
  --ink-mute:     #646469;        /* darkened from #7B7B82 to clear 4.5:1 on every surface (incl. green bubbles) */

  /* Brand */
  --brand:        #1A6E45;        /* sophisticated WhatsApp-aware green */
  --brand-deep:   #114B30;        /* darker pressed */
  --brand-soft:   #DCF8C6;        /* canonical WA bot-bubble */
  --accent:       #E07A3C;        /* warm Mediterranean terracotta — decorative only */
  --accent-deep:  #B85A28;        /* accent for text/focus contexts — clears 4.5:1 white text & 3:1 focus ring */
  --accent-soft:  #F4C9A8;
  --dark:         #1A1410;        /* warm dark for dark bands (not navy, not black) */
  --dark-soft:    #2D241D;

  /* Green canvas (Breshit-style) — the page sits on green, text is cream/white + terracotta */
  --ever:         #114B30;
  --ever-deep:    #0C3621;
  --ever-soft:    #1A6E45;
  --cream:        #F4EFE6;        /* body text on green */
  --cream-mute:   #C9BCA6;        /* muted text on green */
  --canvas-ink:   #FFFFFF;        /* headings on green */

  /* WhatsApp chat */
  --chat-bg:      #ECE5DD;
  --chat-bot:     #DCF8C6;
  --chat-customer: #FFFFFF;
  --chat-header:  #1F8169;
  --chat-shadow:  rgba(0,0,0,0.08);

  /* Fonts */
  --font-display: 'Heebo', system-ui, sans-serif;
  --font-body:    'Assistant', system-ui, -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Layout */
  --max-w:        1200px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
  --radius:       6px;
  --radius-lg:    14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 620px at 82% -5%, rgba(224,122,60,.16), transparent 60%),
    radial-gradient(950px 720px at 0% 100%, rgba(26,110,69,.34), transparent 55%),
    linear-gradient(162deg, #0C3621 0%, #114B30 55%, #0E4029 100%);
  background-attachment: fixed;
  color: var(--cream);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
a:hover { color: var(--accent); text-decoration-color: var(--brand); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 2px;
}
/* On dark bands the brown ring has low contrast; add a light halo so the
   indicator clears 3:1 against both light and dark backgrounds. */
.proof a:focus-visible,
.pricing a:focus-visible,
.footer a:focus-visible,
.a11y-toggle:focus-visible {
  outline-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(251, 250, 246, 0.85);
}

::selection { background: var(--accent); color: var(--paper); }

/* Skip link */
.skip-link {
  position: absolute;
  inset-block-start: -100px;
  inset-inline-start: var(--gutter);
  background: var(--brand-deep);
  color: var(--paper);
  padding: 0.625rem 1rem;
  text-decoration: none;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { inset-block-start: 0.5rem; color: var(--paper); }

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(12, 54, 33, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-block-end: 1px solid rgba(255, 255, 255, 0.10);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}
.brand {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.brand:hover { color: #fff; }
.brand__mark {
  width: 28px;
  height: 28px;
  background: var(--brand);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}
.brand__mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 3px;
  background: var(--brand-soft);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 60% 70%, 45% 100%, 45% 70%, 0 70%);
}
.brand__he {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent-deep);
  color: #fff;
  border-color: var(--accent-deep);
}
.btn--primary:hover {
  background: #9E4A1B;
  border-color: #9E4A1B;
  color: #fff;
  text-decoration: none;
}
.btn--accent {
  background: var(--accent-deep);
  color: #fff;
  border-color: var(--accent-deep);
}
.btn--accent:hover {
  background: #9E4A1B;
  border-color: #9E4A1B;
  color: #fff;
  text-decoration: none;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  text-decoration: none;
}
.btn--lg {
  padding: 1.15rem 1.85rem;
  font-size: 1.0625rem;
}
.btn__wa-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

/* SECTION shared */
.section { padding-block: clamp(3rem, 6.5vw, 5rem); }
.section--soft { background: rgba(7, 40, 24, 0.45); }
/* two soft sections share one background — collapse the doubled gap between them */
.section--soft + .section--soft { padding-block-start: clamp(1.5rem, 3vw, 2.25rem); }
/* contact is the last section before the footer — keep it tight to the footer */
#contact { padding-block-end: clamp(2rem, 4vw, 3rem); }

/* PAGE ORDER — hero, then "see your business" (cards), then the WhatsApp demo */
#main { display: flex; flex-direction: column; }
.hero { order: 1; }
#services { order: 2; }
.proof { order: 3; }
#consulting { order: 4; }
#contact { order: 5; }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--canvas-ink);
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-block-end: 1rem;
}
.section-lead {
  font-size: 1.0625rem;
  color: var(--cream-mute);
  max-width: 55ch;
  margin-block-end: clamp(2rem, 5vw, 3rem);
}

/* HERO */
.hero {
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 9vw, 7rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: #EAF3EC;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-block-end: 1.4rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 6.2vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--canvas-ink);
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}
.hero__lead {
  margin-block-start: 1.5rem;
  font-size: 1.125rem;
  color: var(--cream-mute);
  max-width: 38ch;
  line-height: 1.55;
}
.hero__cta {
  margin-block-start: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* HERO STATS PANEL */
.stats {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 24px 48px -34px rgba(17, 75, 48, 0.45);
  max-width: 460px;
  margin-inline: auto;
}
.stats__head {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-block-end: 1.25rem;
  margin-block-end: 0.5rem;
  border-block-end: 1px solid var(--rule);
  direction: rtl;
}
.stats__list { list-style: none; }
.stat {
  padding-block: 1.15rem;
  border-block-end: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat:last-child { border-block-end: none; padding-block-end: 0.25rem; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 2.75rem);
  line-height: 1;
  color: var(--brand-deep);
  letter-spacing: -0.01em;
}
.stat__unit {
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.stat__label {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.stats__foot {
  margin-block-start: 1.25rem;
  padding-block-start: 1rem;
  border-block-start: 1px solid var(--rule);
  font-size: 0.875rem;
  color: var(--brand-deep);
  font-weight: 600;
  text-align: center;
}

/* HERO BOT MASCOT (replaces the old stats panel) */
.botstage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-inline: auto;
  background: radial-gradient(circle at 50% 38%, var(--brand-soft), var(--paper-soft));
  border-radius: 24px;
  border: 1px solid var(--card-border);
}
.botmascot {
  width: 76%;
  height: auto;
  filter: drop-shadow(0 22px 26px rgba(17, 75, 48, 0.26));
}
.chip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 14px 30px -20px rgba(17, 75, 48, 0.5);
}
.chip--1 { inset-block-start: 8%; inset-inline-start: 4%; }
.chip--2 { inset-block-end: 10%; inset-inline-end: 4%; }
.chip__d { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.chip__d--a { background: var(--accent); }

/* WHATSAPP CHAT MOCKUP */
.chat {
  background: var(--chat-bg);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 40px -25px rgba(0,0,0,0.35),
    0 2px 8px -2px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 460px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  font-size: 0.9375rem;
}
.chat__header {
  background: var(--chat-header);
  color: #fff;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat__back {
  font-size: 1.25rem;
  opacity: 0.85;
  line-height: 1;
}
.chat__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.chat__name { font-weight: 600; line-height: 1.15; }
.chat__status {
  font-size: 0.75rem;
  opacity: 0.78;
  margin-block-start: 2px;
}
.chat__body {
  background-color: #ECE5DD;
  background-image:
    radial-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 24px 24px, 14px 14px;
  background-position: 0 0, 7px 7px;
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 380px;
}
.chat__msg {
  max-width: 78%;
  padding: 0.55rem 0.7rem 0.4rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 1px 1px var(--chat-shadow);
  line-height: 1.45;
  word-wrap: break-word;
  color: #1A1A1F;
}
.chat__msg p { margin: 0; }
.chat__msg p + p { margin-block-start: 0.25rem; }
.chat__msg--in {
  background: var(--chat-customer);
  align-self: flex-start;
  border-end-start-radius: 4px;
}
.chat__msg--out {
  background: var(--chat-bot);
  align-self: flex-end;
  border-end-end-radius: 4px;
}
.chat__time {
  display: block;
  font-size: 0.6875rem;
  color: var(--ink-mute);
  margin-block-start: 0.25rem;
  text-align: end;
}
.chat__msg--out .chat__time::after {
  content: " ✓✓";
  color: #4FC3F7;
  font-size: 0.8125rem;
  margin-inline-start: 2px;
}
.chat__attach {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  margin-block-end: 0.3rem;
  font-size: 0.875rem;
}
.chat__attach-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.chat__caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-block-start: 0.85rem;
  text-transform: uppercase;
  direction: ltr;
}

/* PROOF (now image-backed) */
.proof {
  position: relative;
  color: #fff;
  background: var(--brand-deep);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.proof__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.proof__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.proof::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(17,75,48,0.55) 0%, rgba(17,75,48,0.75) 100%),
    linear-gradient(90deg, rgba(26,20,16,0.55) 0%, rgba(26,20,16,0.25) 100%);
}
.proof__inner {
  padding-block: clamp(2.75rem, 6vw, 4rem);
  width: 100%;
}
.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .proof__grid { grid-template-columns: minmax(0, 1fr) auto; }
}
.proof__bignum {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-block: 0.5rem 1.25rem;
}
.proof__number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(5.5rem, 14vw, 9rem);
  line-height: 0.85;
  color: #fff;
  letter-spacing: -0.03em;
  direction: ltr;
  display: inline-block;
}
.proof__unit {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  line-height: 1.2;
  color: var(--brand-soft);
}
.proof__copy {
  max-width: 50ch;
}
.proof__demo .chat { margin-inline: 0; }
.proof__demo .chat__caption { color: rgba(255,255,255,0.82); }
.proof__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--accent-soft);
  background: rgba(224, 122, 60, 0.16);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-block-end: 1.1rem;
}
.proof__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
}
.proof__heading em {
  color: var(--brand-soft);
  font-style: italic;
}
.proof__sub {
  margin-block-start: 1.15rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44ch;
}

/* WALL (photo cards) */
.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 16px 30px -20px rgba(17, 75, 48, 0.35);
}
.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background:
    repeating-linear-gradient(135deg, #F1ECE1 0 14px, #EAE4D6 14px 28px);
}
.card__media::after {
  content: "";
  position: absolute;
  inset-block-end: 0.7rem;
  inset-inline-end: 0.7rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 4px;
  background: var(--brand-soft);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5h16v14H4V5zm2 2v7l4-3 3 2 3-3 2 2V7H6zm2.5 1.5a1.5 1.5 0 110 3 1.5 1.5 0 010-3z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5h16v14H4V5zm2 2v7l4-3 3 2 3-3 2 2V7H6zm2.5 1.5a1.5 1.5 0 110 3 1.5 1.5 0 010-3z"/></svg>') center / contain no-repeat;
  opacity: 0.55;
}
.card__media img { position: relative; z-index: 1; }
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.card__what {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
  flex: 1;
}
.card__save {
  font-size: 0.9375rem;
  line-height: 1.5;
  padding-block-start: 0.85rem;
  border-block-start: 1px solid var(--card-border);
  color: var(--ink);
}
.card__save strong { color: var(--brand-deep); font-weight: 700; }

.services__note {
  margin-block-start: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-inline-start: 3px solid var(--accent);
  background: rgba(224, 122, 60, 0.12);
  font-size: 0.9375rem;
  color: var(--cream-mute);
  max-width: 70ch;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* CONSULTING + WORKSHOP OFFERS */
.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 760px) {
  .offers { grid-template-columns: repeat(2, 1fr); }
}
.offer {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.offer:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 16px 30px -20px rgba(17, 75, 48, 0.35);
}
.offer__kicker {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.offer__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.offer__desc {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.offer__points {
  list-style: none;
  margin-block-start: 0.4rem;
  padding-block-start: 0.95rem;
  border-block-start: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.offer__points li {
  position: relative;
  padding-inline-start: 1.4rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
}
.offer__points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  background: var(--accent);
}

/* PRICING */
.pricing {
  background: var(--dark);
  color: var(--paper);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.pricing__inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.pricing__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  line-height: 1.35;
  color: var(--paper);
  position: relative;
}
.pricing__quote::before,
.pricing__quote::after {
  content: '"';
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
  font-size: 1.2em;
  vertical-align: -0.1em;
  padding-inline: 0.15em;
}
.pricing__guarantee {
  margin-block-start: 1.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  color: var(--accent-soft);
}

/* CONTACT */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  .contact__grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  text-align: start;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.contact-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 14px 26px -18px rgba(17, 75, 48, 0.25);
}
.contact-card__label {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  font-weight: 600;
}
.contact-card__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--brand-deep);
  word-break: break-word;
}
.contact-card__note {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-block-start: 0.25rem;
}
.contact__cta {
  margin-block-start: 2.5rem;
  text-align: center;
}

/* simplified single-channel contact */
.contact-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
}
.contact-simple__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--brand);
  color: var(--paper);
  padding: 1.15rem 2.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--brand);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.contact-simple__btn:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-2px);
}
.contact-simple__btn svg { flex-shrink: 0; }
.contact-simple__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.contact-simple__num:hover { color: #fff; }

/* FOOTER */
.footer {
  background: var(--dark);
  color: rgba(251,250,246,0.7);
  padding-block: 2.5rem 2rem;
  font-size: 0.875rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.footer a {
  color: var(--brand-soft);
  text-decoration-color: rgba(220, 248, 198, 0.4);
}
.footer a:hover { color: var(--paper); text-decoration-color: var(--brand-soft); }
.footer__row {
  display: flex;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__copyright {
  font-size: 0.75rem;
  color: rgba(251,250,246,0.6);
}

/* ACCESSIBILITY PAGE */
.legal {
  padding-block: clamp(3rem, 8vw, 5rem);
}
.legal__inner {
  max-width: 760px;
  margin-inline: auto;
  background: var(--card);
  color: var(--ink);
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.5);
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  margin-block-end: 1rem;
  color: var(--ink);
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem;
  margin-block: 2rem 0.75rem;
  color: var(--brand-deep);
}
.legal p { margin-block-end: 1rem; line-height: 1.7; }
.legal ul { padding-inline-start: 1.5rem; margin-block-end: 1rem; }
.legal li { margin-block-end: 0.5rem; line-height: 1.65; }
.legal__meta {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  margin-block-end: 2.5rem;
  padding-block: 1rem;
  border-block: 1px solid var(--rule);
  text-align: start;
}

/* MOTION */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(8px);
    animation: reveal 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .reveal--1 { animation-delay: 0.05s; }
  .reveal--2 { animation-delay: 0.18s; }
  .reveal--3 { animation-delay: 0.32s; }
  .reveal--4 { animation-delay: 0.46s; }

  .chat__msg {
    opacity: 0;
    animation: chatpop 0.4s ease-out forwards;
  }
  .chat__msg:nth-of-type(1) { animation-delay: 0.3s; }
  .chat__msg:nth-of-type(2) { animation-delay: 0.7s; }
  .chat__msg:nth-of-type(3) { animation-delay: 1.1s; }
  .chat__msg:nth-of-type(4) { animation-delay: 1.5s; }
  .chat__msg:nth-of-type(5) { animation-delay: 1.9s; }
  .chat__msg:nth-of-type(6) { animation-delay: 2.3s; }
  .chat__msg:nth-of-type(7) { animation-delay: 2.7s; }
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes chatpop {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* RTL safety: phone numbers + Latin text inside RTL contexts */
[dir="rtl"] .ltr,
.ltr { direction: ltr; unicode-bidi: embed; }

/* ===== ACCESSIBILITY WIDGET ===== */
.a11y-toggle {
  position: fixed;
  inset-block-end: 1.1rem;
  left: 1.1rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,0.4);
  transition: background .15s ease, transform .15s ease;
}
.a11y-toggle:hover { background: var(--brand-deep); transform: scale(1.05); }

.a11y-panel {
  position: fixed;
  inset-block-end: 5rem;
  left: 1.1rem;
  z-index: 91;
  width: min(300px, calc(100vw - 2.2rem));
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -18px rgba(0,0,0,0.4);
  padding: 1rem 1.1rem 1.2rem;
  direction: rtl;
  text-align: start;
}
.a11y-panel[hidden] { display: none; }
.a11y-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block-end: 0.75rem;
  margin-block-end: 0.85rem;
  border-block-end: 1px solid var(--rule);
}
.a11y-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-deep);
}
.a11y-panel__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 0.25rem 0.4rem;
  line-height: 1;
}
.a11y-panel__close:hover { color: var(--ink); }

.a11y-row--font {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-block: 0.5rem 0.85rem;
}
.a11y-row__label { font-weight: 600; font-size: 0.9375rem; }
.a11y-fs-controls { display: inline-flex; align-items: center; gap: 0.4rem; }
.a11y-fs-controls button {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
.a11y-fs-controls button:hover { border-color: var(--brand); color: var(--brand-deep); }
.a11y-fs-label {
  min-width: 2.6rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
}

.a11y-opt {
  display: block;
  width: 100%;
  text-align: start;
  padding: 0.65rem 0.8rem;
  margin-block-start: 0.45rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .12s ease, background .12s ease, color .12s ease;
}
.a11y-opt:hover { border-color: var(--brand); }
.a11y-opt[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.a11y-opt[aria-pressed="true"]::after { content: " ✓"; }

.a11y-reset {
  display: block;
  width: 100%;
  margin-block-start: 0.9rem;
  padding: 0.6rem;
  border: 1px solid var(--accent-deep);
  background: transparent;
  color: var(--accent-deep);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
}
.a11y-reset:hover { background: var(--accent-deep); color: #fff; }
.a11y-statement-link {
  display: block;
  text-align: center;
  margin-block-start: 0.85rem;
  font-size: 0.8125rem;
}

/* ----- widget state classes (applied to <html>) ----- */
html.a11y-fs-1 { font-size: 112.5%; }
html.a11y-fs-2 { font-size: 125%; }
html.a11y-fs-3 { font-size: 140%; }

html.a11y-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  background: #FFF6D6 !important;
  color: #0A3D26 !important;
  outline: 1px solid #0A3D26;
  outline-offset: 1px;
}

html.a11y-readable,
html.a11y-readable body,
html.a11y-readable * {
  font-family: Arial, "Helvetica Neue", system-ui, sans-serif !important;
  letter-spacing: 0.02em !important;
  line-height: 1.8 !important;
}

html.a11y-bigcursor,
html.a11y-bigcursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="48" viewBox="0 0 40 48"><path d="M2 2 L2 36 L11 28 L17 44 L24 41 L18 25 L30 25 Z" fill="black" stroke="white" stroke-width="2"/></svg>') 2 2, auto !important;
}

html.a11y-noanim * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
html.a11y-noanim .reveal { opacity: 1 !important; transform: none !important; }
html.a11y-noanim .chat__msg { opacity: 1 !important; }

/* High-contrast: light sections to pure white/black, keep dark bands black */
html.a11y-contrast body {
  --paper: #fff; --paper-soft: #fff; --card: #fff;
  --card-border: #000; --rule: #000;
  --ink: #000; --ink-soft: #000; --ink-mute: #1a1a1a;
  --brand: #0A5C34; --brand-deep: #063D22;
  background: #fff; color: #000;
}
html.a11y-contrast .proof,
html.a11y-contrast .pricing,
html.a11y-contrast .footer { background: #000 !important; color: #fff !important; }
html.a11y-contrast .proof *,
html.a11y-contrast .pricing *,
html.a11y-contrast .footer__copyright { color: #fff !important; }
html.a11y-contrast .card,
html.a11y-contrast .contact-card,
html.a11y-contrast .stats { border-width: 2px; }
html.a11y-contrast .proof::after { display: none; }
/* light-background pill inside a forced-white-text dark band would be unreadable;
   pin it back to black-on-white in high-contrast mode */
html.a11y-contrast .proof__tag {
  background: #fff !important;
  color: #000 !important;
}

/* High-contrast: collapse the green canvas to white/black */
html.a11y-contrast body {
  --cream: #000; --cream-mute: #000; --canvas-ink: #000;
}
html.a11y-contrast .nav { background: #fff !important; border-block-end-color: #000 !important; }
html.a11y-contrast .brand { color: #000 !important; }
html.a11y-contrast .section--soft { background: #fff !important; }
html.a11y-contrast .hero__eyebrow {
  background: #fff !important; color: #000 !important; border-color: #000 !important;
}
html.a11y-contrast .btn--ghost { color: #000 !important; border-color: #000 !important; }
html.a11y-contrast .legal__inner { box-shadow: none; border: 2px solid #000; }
html.a11y-contrast .contact-simple__num { color: #063D22 !important; }
