/* ============================================================
   COCOLY ISRAEL — Master Stylesheet
   Editorial agricultural design · Trilingual (HE/AR/EN)
   WCAG 2.0 AA compliant
   ============================================================ */

:root {
  /* ── Vibrant agricultural palette (from brochure) ──── */
  --leaf:        #43A047;   /* Fresh spring green - vibrant */
  --leaf-deep:   #1B5E20;   /* Deep forest for headers */
  --leaf-bright: #66BB6A;   /* Brighter accent */
  --leaf-fresh:  #8BC34A;   /* Lighter green */
  --leaf-pale:   #DCEDC8;   /* Very light green */
  --leaf-mist:   #F1F8E9;   /* Mist */

  --earth:       #6D4C41;   /* Earth brown */
  --earth-warm:  #8D6E63;
  --earth-pale:  #D7CCC8;   /* Light soil */

  --sun:         #FFC107;   /* Sunshine yellow - bright */
  --sun-deep:    #F57F17;   /* Deep amber */
  --sun-bright:  #FFB300;
  --sun-pale:    #FFF9C4;   /* Soft yellow */

  --tomato:      #F4511E;   /* Tomato red/orange - vibrant */
  --tomato-deep: #BF360C;   /* Deep tomato */
  --tomato-pale: #FFCCBC;   /* Soft coral */

  --berry:       #C2185B;   /* Pomegranate */
  --berry-pale:  #F8BBD0;

  --sky:         #29B6F6;   /* Sky blue - bright */
  --sky-deep:    #0277BD;   /* Deep water */
  --sky-pale:    #B3E5FC;   /* Soft sky */

  --soil:        #6D4C41;
  --soil-pale:   #D7CCC8;

  --cream:       #FFFDE7;   /* Warm cream with hint of yellow */
  --cream-warm:  #FFF8E1;
  --paper:       #FFFFFF;
  --ink:         #1A1A1A;
  --ink-soft:    #424242;
  --ink-mute:    #757575;
  --rule:        #E0E0E0;

  /* ── Signature gradients (matching brochure) ────────── */
  --grad-rainbow:  linear-gradient(90deg, var(--leaf) 0%, var(--sun) 50%, var(--tomato) 100%);
  --grad-leaf:     linear-gradient(135deg, var(--leaf-fresh) 0%, var(--leaf) 50%, var(--leaf-deep) 100%);
  --grad-sun:      linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
  --grad-tomato:   linear-gradient(135deg, var(--tomato) 0%, var(--tomato-deep) 100%);
  --grad-warm-bg:  radial-gradient(ellipse 70% 60% at 100% 100%, var(--leaf-pale) 0%, transparent 60%),
                   radial-gradient(ellipse 50% 50% at 0% 0%, var(--sun-pale) 0%, transparent 55%);

  /* ── Type scale (refined for beauty) ────────────────── */
  --font-display-he: 'Frank Ruhl Libre', 'David Libre', Georgia, serif;
  --font-display-ar: 'Tajawal', 'Cairo', 'Noto Naskh Arabic', serif;
  --font-display-en: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-serif:      'Fraunces', Georgia, serif;  /* For italic accents */

  --font-body-he: 'Heebo', 'Assistant', system-ui, sans-serif;
  --font-body-ar: 'Cairo', 'Tajawal', system-ui, sans-serif;
  --font-body-en: 'Inter', system-ui, -apple-system, sans-serif;

  /* ── Spacing / radius / shadow ──────────────────────── */
  --container: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 28px;
  --radius-xl: 42px;

  --shadow-sm: 0 1px 2px rgba(27, 94, 32, 0.06), 0 2px 4px rgba(27, 94, 32, 0.04);
  --shadow:    0 8px 24px -8px rgba(27, 94, 32, 0.18), 0 4px 12px -4px rgba(0,0,0, 0.05);
  --shadow-lg: 0 32px 64px -16px rgba(27, 94, 32, 0.22), 0 8px 24px -8px rgba(0,0,0, 0.08);
  --shadow-warm: 0 20px 40px -16px rgba(244, 81, 30, 0.20), 0 8px 16px -8px rgba(255, 193, 7, 0.15);

  --tr-fast: 180ms cubic-bezier(.2,.7,.2,1);
  --tr:      280ms cubic-bezier(.2,.7,.2,1);
  --tr-slow: 600ms cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

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

body {
  font-family: var(--font-body-he);
  font-size: clamp(15px, 1vw + 0.6rem, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang="he"] body, html[lang="iw"] body { font-family: var(--font-body-he); direction: rtl; }
html[lang="ar"] body { font-family: var(--font-body-ar); direction: rtl; }
html[lang="en"] body { font-family: var(--font-body-en); direction: ltr; }

img, picture, svg, video { max-width: 100%; display: block; height: auto; }
img { font-style: italic; }   /* graceful alt text styling */

a {
  color: var(--leaf-deep);
  text-decoration: none;
  transition: color var(--tr-fast);
}
a:hover, a:focus-visible { color: var(--sun-deep); }

button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ── ACCESSIBILITY: focus visibility ─────────────────── */
*:focus { outline: none; }
*:focus-visible {
  outline: 3px solid var(--sun-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip-to-content link (accessibility requirement) */
.skip-link {
  position: absolute;
  top: -100px;
  inset-inline-start: 1rem;
  z-index: 9999;
  background: var(--leaf-deep);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top var(--tr-fast);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
}

.section--tight  { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream  { background: var(--cream); }
.section--warm   {
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(255, 193, 7, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(67, 160, 71, 0.10) 0%, transparent 60%),
    var(--cream-warm);
}
.section--leaf   {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 193, 7, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(139, 195, 74, 0.20) 0%, transparent 45%),
    linear-gradient(135deg, var(--leaf-fresh) 0%, var(--leaf) 50%, var(--leaf-deep) 100%);
  color: #fff;
}
.section--soil   {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.10) 0%, transparent 50%),
    linear-gradient(140deg, #3E2723 0%, var(--earth) 70%, #5D4037 100%);
  color: var(--cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--tomato);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--grad-rainbow);
  border-radius: 2px;
  display: inline-block;
}
.section--leaf .eyebrow, .section--soil .eyebrow { color: var(--sun); }
.section--leaf .eyebrow::before, .section--soil .eyebrow::before { background: var(--sun); }

.section-title {
  font-family: var(--font-display-he);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--leaf-deep);
  max-width: 22ch;
  margin-bottom: 1.25rem;
}
html[lang="ar"] .section-title { font-family: var(--font-display-ar); font-weight: 900; }
html[lang="en"] .section-title { font-family: var(--font-display-en); font-weight: 900; }
.section--leaf .section-title,
.section--soil .section-title { color: #fff; }

.section-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}
.section--leaf .section-lead,
.section--soil .section-lead { color: rgba(255,255,255,0.88); }

.accent-leaf {
  background: linear-gradient(120deg, var(--leaf-bright), var(--leaf));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent-sun  {
  background: linear-gradient(120deg, var(--sun), var(--sun-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   TOP BAR / NAVIGATION
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
  transition: box-shadow var(--tr);
}
.topbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--leaf-deep);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--leaf-fresh) 0%, var(--leaf) 55%, var(--leaf-deep) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px -4px rgba(67, 160, 71, 0.45);
  position: relative;
}
.brand__mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 193, 7, 0.6);
}
.brand__sub {
  display: block;
  font-family: var(--font-body-he);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav__link {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: .25rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--leaf-bright);
  transition: width var(--tr);
}
.nav__link:hover::after, .nav__link:focus-visible::after { width: 100%; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  background: var(--leaf-pale);
  border-radius: 99px;
  padding: 4px;
  gap: 2px;
}
.lang-switch a {
  display: inline-block;
  padding: .5rem .9rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--ink-soft);
  border-radius: 99px;
  transition: all var(--tr-fast);
}
.lang-switch a.active {
  background: var(--leaf-deep);
  color: #fff;
}
.lang-switch a:hover:not(.active) { background: rgba(46, 125, 50, .15); }

/* Mobile menu */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 920px) {
  .nav__list, .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open { display: flex; }
  .nav.open .nav__list {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--paper);
    padding: 2rem var(--gutter);
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--shadow-lg);
  }
  .nav.open .nav__link { font-size: 1.2rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 85% 5%, rgba(255, 193, 7, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 5% 90%, rgba(139, 195, 74, 0.20) 0%, transparent 65%),
    radial-gradient(ellipse 35% 30% at 95% 70%, rgba(244, 81, 30, 0.10) 0%, transparent 65%),
    var(--cream);
}
html[dir="rtl"] .hero {
  background:
    radial-gradient(ellipse 50% 40% at 15% 5%, rgba(255, 193, 7, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 95% 90%, rgba(139, 195, 74, 0.20) 0%, transparent 65%),
    radial-gradient(ellipse 35% 30% at 5% 70%, rgba(244, 81, 30, 0.10) 0%, transparent 65%),
    var(--cream);
}

/* Floating decorative blobs in hero */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  inset-inline-end: -8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle at 30% 30%, var(--leaf-fresh) 0%, var(--leaf) 60%, transparent 100%);
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  inset-inline-start: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--sun) 0%, var(--tomato) 70%, transparent 100%);
  border-radius: 50%;
  opacity: 0.07;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--paper);
  padding: .6rem 1.1rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--leaf-deep);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px -4px rgba(67, 160, 71, 0.25), 0 2px 4px rgba(0,0,0, 0.05);
  position: relative;
}
.hero__tag::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 99px;
  padding: 2px;
  background: var(--grad-rainbow);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}
.hero__tag .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 4px rgba(244, 81, 30, 0.20);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(244, 81, 30, 0.20); transform: scale(1); }
  50% { box-shadow: 0 0 0 9px rgba(244, 81, 30, 0.05); transform: scale(1.1); }
}

.hero__title {
  font-family: var(--font-display-he);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
html[lang="ar"] .hero__title { font-family: var(--font-display-ar); font-weight: 900; line-height: 1.15; }
html[lang="en"] .hero__title { font-family: var(--font-display-en); font-style: italic; font-weight: 900; }
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(120deg, var(--leaf) 0%, var(--sun-deep) 45%, var(--tomato) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}
html[lang="ar"] .hero__title em { font-family: var(--font-display-ar); font-style: normal; }
html[lang="he"] .hero__title em { font-family: var(--font-serif); font-style: italic; }
html[lang="en"] .hero__title em { font-family: var(--font-serif); font-style: italic; }

.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 1.75rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--grad-tomato);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(244, 81, 30, 0.55), 0 4px 8px -2px rgba(191, 54, 12, 0.25);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: linear-gradient(135deg, var(--tomato-deep) 0%, #8B2A0A 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(244, 81, 30, 0.7), 0 8px 16px -4px rgba(191, 54, 12, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--leaf-deep);
  border-color: var(--leaf-deep);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--leaf-deep);
  color: #fff;
}
.btn--sun {
  background: var(--sun-deep);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(245, 124, 0, 0.55);
}
.btn--sun:hover, .btn--sun:focus-visible {
  background: var(--sun);
  color: #fff;
  transform: translateY(-2px);
}
.btn__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  transition: transform var(--tr);
}
.btn:hover .btn__icon { transform: translateX(4px); }
html[dir="rtl"] .btn:hover .btn__icon { transform: translateX(-4px); }

.hero__stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 2px solid var(--rule);
  position: relative;
}
.hero__stats::before {
  content: '';
  position: absolute;
  top: -2px;
  inset-inline-start: 0;
  width: 80px;
  height: 2px;
  background: var(--grad-rainbow);
}
.hero__stat .num {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: block;
}
.hero__stat:nth-child(2) .num { background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%); -webkit-background-clip: text; background-clip: text; }
.hero__stat:nth-child(3) .num { background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-deep) 100%); -webkit-background-clip: text; background-clip: text; }
.hero__stat:nth-child(4) .num { background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%); -webkit-background-clip: text; background-clip: text; }
.hero__stat .lbl {
  font-size: .85rem;
  color: var(--ink-mute);
  margin-top: .35rem;
  font-weight: 600;
}

/* ── Hero visual ───────────────────────────────────── */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 540px;
  margin-inline: auto;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 12% 12% 4%;
  background: radial-gradient(circle at 40% 30%, var(--leaf-fresh), var(--leaf-deep));
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
}
html[dir="rtl"] .hero__visual::before { inset: 8% 4% 12% 12%; }
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 60%, rgba(255, 248, 225, 0.4));
  z-index: 0;
}
.hero__visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(27, 94, 32, 0.25));
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero__badge {
  position: absolute;
  z-index: 3;
  background: var(--paper);
  border-radius: 22px;
  padding: 1rem 1.3rem;
  box-shadow: 0 18px 40px -12px rgba(27, 94, 32, 0.25), 0 6px 16px -6px rgba(0,0,0, 0.08);
  font-size: .85rem;
  font-weight: 700;
  color: var(--leaf-deep);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.hero__badge--tl {
  top: 4%;
  inset-inline-start: -5%;
  animation: floatY 6s ease-in-out infinite reverse;
}
.hero__badge--tl .ico {
  background: linear-gradient(135deg, var(--tomato), var(--tomato-deep));
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(244, 81, 30, 0.45);
}
.hero__badge--br {
  bottom: 8%;
  inset-inline-end: -3%;
  animation: floatY 7s ease-in-out infinite;
}
.hero__badge--br .ico {
  background: linear-gradient(135deg, var(--leaf-fresh), var(--leaf));
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(67, 160, 71, 0.45);
}
.hero__badge .ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero__badge .num {
  font-family: var(--font-display-en);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 900;
  display: block;
  color: var(--leaf-deep);
  line-height: 1;
}
.hero__badge .lbl {
  font-size: .7rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ============================================================
   MARQUEE (countries)
   ============================================================ */
.marquee {
  background: var(--paper);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  border-block: 1px solid var(--rule);
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-rainbow);
  opacity: 0.6;
}
.marquee::before { top: 0; }
.marquee::after { bottom: 0; }
.marquee__inner {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: scrollX 35s linear infinite;
  width: max-content;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display-en);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--leaf-deep);
  white-space: nowrap;
}
.marquee__item .flag {
  font-size: 1.6rem;
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
html[dir="rtl"] .marquee__inner { animation-direction: reverse; }

/* ============================================================
   FEATURE GRID — Why Cocoly
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--rule);
  position: relative;
  transition: all var(--tr);
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--leaf-pale);
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-rainbow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
html[dir="rtl"] .feature::before { transform-origin: right; }
.feature:hover::before { transform: scaleX(1); }

.feature__icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--leaf-fresh), var(--leaf));
  display: grid;
  place-items: center;
  font-size: 1.95rem;
  margin-bottom: 1.25rem;
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(67, 160, 71, 0.35);
  transition: transform var(--tr);
}
.feature:hover .feature__icon { transform: rotate(-6deg) scale(1.05); }

.feature--sun .feature__icon    {
  background: linear-gradient(135deg, var(--sun), var(--sun-deep));
  box-shadow: 0 8px 20px -6px rgba(245, 127, 23, 0.40);
}
.feature--tomato .feature__icon {
  background: linear-gradient(135deg, var(--tomato), var(--tomato-deep));
  box-shadow: 0 8px 20px -6px rgba(244, 81, 30, 0.40);
}
.feature--sky .feature__icon    {
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  box-shadow: 0 8px 20px -6px rgba(41, 182, 246, 0.40);
}
.feature--earth .feature__icon  {
  background: linear-gradient(135deg, var(--earth-warm), var(--earth));
  box-shadow: 0 8px 20px -6px rgba(109, 76, 65, 0.40);
}

.feature__title {
  font-family: var(--font-display-he);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: .65rem;
  color: var(--leaf-deep);
  line-height: 1.25;
}
html[lang="ar"] .feature__title { font-family: var(--font-display-ar); font-weight: 800; }
html[lang="en"] .feature__title { font-family: var(--font-display-en); }

.feature__text {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.65;
}

/* ============================================================
   PAS / INNOVATION SECTION
   ============================================================ */
.pas {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .pas { grid-template-columns: 1fr; } }

.pas__visual {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 70%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  overflow: hidden;
}
.pas__visual::before {
  content: "PAS";
  position: absolute;
  top: -20px;
  inset-inline-end: -10px;
  font-family: var(--font-display-en);
  font-weight: 900;
  font-size: 12rem;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
}
.pas__visual img {
  position: relative;
  z-index: 1;
  max-height: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

.pas__list { list-style: none; margin-top: 1.5rem; }
.pas__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pas__list li:last-child { border-bottom: none; }
.pas__list .num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: var(--leaf-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px -2px rgba(255, 193, 7, 0.55);
}
.pas__list .txt { color: rgba(255,255,255,0.92); line-height: 1.55; }
.pas__list strong { color: var(--sun-pale); }

.patent-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: var(--leaf-deep);
  padding: .55rem 1.1rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 22px -6px rgba(255, 193, 7, 0.55), 0 2px 4px rgba(0,0,0, 0.1);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

/* ============================================================
   STAGES (growth stages list)
   ============================================================ */
.stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  counter-reset: stage;
}
.stage {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--rule);
  counter-increment: stage;
  position: relative;
  transition: all var(--tr);
}
.stage::before {
  content: "0" counter(stage);
  position: absolute;
  top: -.6rem;
  inset-inline-end: 1rem;
  background: var(--grad-tomato);
  color: #fff;
  font-family: var(--font-display-en);
  font-weight: 900;
  font-size: .85rem;
  padding: .35rem .75rem;
  border-radius: 99px;
  letter-spacing: .05em;
  box-shadow: 0 4px 12px -3px rgba(244, 81, 30, 0.45);
}
.stage:hover {
  transform: translateY(-3px);
  border-color: var(--leaf-bright);
  box-shadow: var(--shadow-sm);
}
.stage__title {
  font-weight: 700;
  color: var(--leaf-deep);
  margin-bottom: .4rem;
  font-size: 1rem;
}
.stage__txt {
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.55;
}

/* ============================================================
   COMPOSITION (NPK table-like)
   ============================================================ */
.composition {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .composition { grid-template-columns: 1fr; } }

.npk-circles {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.npk {
  width: 140px; height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--tr), box-shadow var(--tr);
  font-family: var(--font-display-en);
}
.npk::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.25;
  filter: blur(14px);
  z-index: -1;
  transition: opacity var(--tr);
}
.npk:hover { transform: scale(1.1) rotate(3deg); }
.npk:hover::before { opacity: 0.5; }
.npk--n {
  background: radial-gradient(circle at 30% 30%, var(--leaf-fresh), var(--leaf) 50%, var(--leaf-deep) 100%);
  box-shadow: 0 12px 28px -8px rgba(67, 160, 71, 0.55);
}
.npk--p {
  background: radial-gradient(circle at 30% 30%, #FFD54F, var(--sun) 50%, var(--sun-deep) 100%);
  box-shadow: 0 12px 28px -8px rgba(245, 127, 23, 0.55);
}
.npk--k {
  background: radial-gradient(circle at 30% 30%, #FF8A65, var(--tomato) 50%, var(--tomato-deep) 100%);
  box-shadow: 0 12px 28px -8px rgba(244, 81, 30, 0.55);
}
.npk .letter {
  font-family: var(--font-display-en);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}
.npk .pct {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: .25rem;
}
.npk .name {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .25rem;
  opacity: .9;
}

.ingredients-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
  margin-top: 2rem;
}
.ingredients-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  font-size: .92rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: all var(--tr-fast);
}
.ingredients-list li:hover {
  border-color: var(--leaf-fresh);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -6px rgba(67, 160, 71, 0.25);
}
.ingredients-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--leaf-fresh), var(--leaf));
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .78rem;
  box-shadow: 0 3px 8px -2px rgba(67, 160, 71, 0.4);
}

/* ============================================================
   CROPS GRID
   ============================================================ */
.crops {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.crop {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr);
}
.crop:hover { transform: scale(1.03); }
.crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.crop:hover img { transform: scale(1.1); }
.crop__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1rem .9rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  font-family: var(--font-display-he);
}
html[lang="ar"] .crop__label { font-family: var(--font-display-ar); }
html[lang="en"] .crop__label { font-family: var(--font-display-en); font-style: italic; }

/* ============================================================
   APPLICATION METHODS
   ============================================================ */
.methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.method {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: all var(--tr);
}
.method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.method__img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.method__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.method:hover .method__img img { transform: scale(1.08); }
.method__body { padding: 1.25rem; }
.method__name {
  font-weight: 700;
  color: var(--leaf-deep);
  font-size: 1.1rem;
  margin-bottom: .4rem;
}
.method__dose {
  font-size: .85rem;
  color: var(--ink-mute);
  font-weight: 600;
}

/* ============================================================
   AWARDS / CERTIFICATIONS
   ============================================================ */
.awards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.award {
  background: linear-gradient(135deg, rgba(255, 248, 225, 0.10), rgba(255, 193, 7, 0.04));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.award::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.15), transparent);
  transition: left 0.6s;
}
.award:hover::before { left: 100%; }
.award:hover {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.18), rgba(255, 193, 7, 0.08));
  border-color: rgba(255, 193, 7, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(255, 193, 7, 0.35);
}
.award__icon {
  font-size: 2.6rem;
  margin-bottom: .75rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.4));
}
.award__name {
  color: #FFEB99;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: .35rem;
}
.award__year {
  color: rgba(255,255,255,0.75);
  font-size: .85rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ============================================================
   AGENT / LOCAL SECTION
   ============================================================ */
.agent {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 193, 7, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(67, 160, 71, 0.10) 0%, transparent 45%),
    linear-gradient(135deg, var(--cream-warm) 0%, var(--paper) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid rgba(255, 193, 7, 0.20);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  box-shadow: var(--shadow-warm);
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) { .agent { grid-template-columns: 1fr; } }

.agent__seal {
  text-align: center;
  position: relative;
}
.agent__seal svg {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(27, 94, 32, 0.2));
}
.agent__features {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
}
.agent__features li {
  text-align: center;
  padding: 1rem .75rem;
  background: var(--leaf-pale);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  color: var(--leaf-deep);
}
.agent__features li span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: .4rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin-inline: auto;
  margin-top: 2.5rem;
}
.faq details {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: all var(--tr);
}
.faq details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--leaf-pale);
}
.faq summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--leaf-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--leaf-pale);
  color: var(--leaf-deep);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all var(--tr);
}
.faq details[open] summary::after {
  content: "−";
  background: var(--leaf-deep);
  color: #fff;
  transform: rotate(180deg);
}
.faq summary:hover { background: var(--leaf-mist); }
.faq__answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  transition: all var(--tr-fast);
}
.contact-item:hover { border-color: var(--leaf-bright); transform: translateX(4px); }
html[dir="rtl"] .contact-item:hover { transform: translateX(-4px); }
.contact-item .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--leaf-pale);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--leaf-deep);
  font-size: 1.2rem;
}
.contact-item .lbl {
  font-size: .75rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: .2rem;
}
.contact-item .val {
  font-weight: 700;
  color: var(--leaf-deep);
  font-size: 1.05rem;
}
.contact-item a { color: var(--leaf-deep); }
.contact-item a:hover { color: var(--sun-deep); }

/* ── form ─────────────────────────────── */
.form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__field { margin-bottom: 1rem; }
.form__label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}
.form__label .req { color: var(--tomato); }
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--cream);
  transition: all var(--tr-fast);
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: var(--leaf-bright);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(102, 187, 106, 0.15);
}
.form__textarea { resize: vertical; min-height: 120px; }

.form__check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin: 1rem 0;
  font-size: .85rem;
  color: var(--ink-soft);
}
.form__check input { margin-top: 3px; accent-color: var(--leaf-deep); }
.form__check a { font-weight: 700; }

.form__msg {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 1rem;
}
.form__msg.success { display: block; background: var(--leaf-pale); color: var(--leaf-deep); }
.form__msg.error   { display: block; background: #FFEBEE; color: var(--tomato-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(170deg, #1A1A1A, #2A2A2A);
  color: rgba(255,255,255,0.75);
  padding-block: clamp(3rem, 5vw, 5rem) 1.5rem;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand .brand { color: #fff; font-size: 1.8rem; }
.footer__about { margin-top: 1rem; line-height: 1.65; max-width: 36ch; }

.footer h4 {
  color: #fff;
  font-family: var(--font-display-he);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  letter-spacing: .03em;
}
html[lang="ar"] .footer h4 { font-family: var(--font-display-ar); font-weight: 800; }
html[lang="en"] .footer h4 { font-family: var(--font-display-en); }

.footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer a {
  color: rgba(255,255,255,0.65);
  transition: color var(--tr-fast);
}
.footer a:hover { color: var(--sun); }

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
}
.footer__bottom .legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================================
   ACCESSIBILITY WIDGET
   ============================================================ */
.a11y-trigger {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-start: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--leaf-deep);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: transform var(--tr);
  cursor: pointer;
}
.a11y-trigger:hover, .a11y-trigger:focus-visible {
  transform: scale(1.1);
  background: var(--leaf);
}
.a11y-trigger svg { width: 28px; height: 28px; }

.a11y-panel {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-start: 1.5rem;
  width: 320px;
  max-width: calc(100vw - 3rem);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 999;
  border: 1px solid var(--rule);
  display: none;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
}
.a11y-panel.open { display: block; }
.a11y-panel h3 {
  font-weight: 700;
  color: var(--leaf-deep);
  margin-bottom: 1rem;
  font-size: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.a11y-panel h3 button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--leaf-pale);
  color: var(--leaf-deep);
  font-size: 1.2rem;
  font-weight: 700;
}
.a11y-options { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.a11y-options button {
  width: 100%;
  text-align: start;
  padding: .75rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .65rem;
  transition: all var(--tr-fast);
  border: 1.5px solid transparent;
}
.a11y-options button:hover { background: var(--leaf-pale); }
.a11y-options button.active {
  background: var(--leaf-pale);
  border-color: var(--leaf-bright);
  color: var(--leaf-deep);
}
.a11y-options .ico { width: 20px; height: 20px; display: inline-flex; }
.a11y-reset {
  margin-top: 1rem;
  width: 100%;
  padding: .75rem;
  background: var(--leaf-deep);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
}
.a11y-reset:hover { background: var(--leaf); }

/* Body modifiers applied by widget */
body.a11y-big   { font-size: 18px; }
body.a11y-big * { letter-spacing: .02em; }
body.a11y-huge  { font-size: 21px; }
body.a11y-huge * { letter-spacing: .02em; }
body.a11y-contrast {
  --paper:#fff; --cream:#fff; --cream-warm:#fff;
  --ink:#000; --ink-soft:#000; --ink-mute:#222;
  --leaf-deep:#003300; --leaf:#003300; --leaf-bright:#003300;
  --rule:#000;
}
body.a11y-contrast img { filter: contrast(1.2); }
body.a11y-links a { text-decoration: underline !important; font-weight: 700 !important; }
body.a11y-readable * {
  font-family: var(--font-body-he), Arial, sans-serif !important;
  letter-spacing: .03em !important;
  line-height: 1.8 !important;
}
body.a11y-cursor, body.a11y-cursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M2 2 L2 26 L8 20 L12 30 L17 28 L13 18 L22 18 Z" fill="black" stroke="white" stroke-width="2"/></svg>'), auto !important;
}
body.a11y-stop-anim *, body.a11y-stop-anim *::before, body.a11y-stop-anim *::after {
  animation: none !important;
  transition: none !important;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-end: 1.5rem;
  max-width: 380px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 997;
  border: 1px solid var(--rule);
  display: none;
}
.cookie.show { display: block; animation: slideUp .5s cubic-bezier(.2,.7,.2,1); }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie h4 {
  font-weight: 700;
  color: var(--leaf-deep);
  margin-bottom: .5rem;
  font-size: 1.05rem;
}
.cookie p {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.cookie a { color: var(--leaf-deep); font-weight: 700; text-decoration: underline; }
.cookie__actions { display: flex; gap: .5rem; }
.cookie__btn {
  flex: 1;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  transition: all var(--tr-fast);
}
.cookie__btn--accept { background: var(--leaf-deep); color: #fff; }
.cookie__btn--accept:hover { background: var(--leaf); }
.cookie__btn--decline { background: var(--cream); color: var(--ink); border: 1.5px solid var(--rule); }
.cookie__btn--decline:hover { background: var(--leaf-pale); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-end: 1.5rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 996;
  box-shadow: 0 12px 24px rgba(37, 211, 102, .4);
  transition: transform var(--tr);
}
.whatsapp-fab:hover, .whatsapp-fab:focus-visible {
  transform: scale(1.1);
  color: #fff;
}
.whatsapp-fab svg { width: 32px; height: 32px; }
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: #25D366;
  opacity: .3;
  animation: pulseWa 2s infinite;
  z-index: -1;
}
@keyframes pulseWa {
  0% { transform: scale(.9); opacity: .4; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   LEGAL PAGES STYLES
   ============================================================ */
.legal-page {
  padding-block: 3rem 5rem;
  max-width: 880px;
  margin-inline: auto;
}
.legal-page h1 {
  font-family: var(--font-display-he);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--leaf-deep);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.legal-page h2 {
  font-family: var(--font-display-he);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--leaf-deep);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-page h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.legal-page p, .legal-page li {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-page ul, .legal-page ol {
  margin-block: 1rem;
  padding-inline-start: 1.75rem;
}
.legal-page li { margin-bottom: .5rem; }
.legal-page .meta {
  background: var(--leaf-pale);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  font-size: .9rem;
  color: var(--leaf-deep);
}

.legal-toc {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
.legal-toc h2 { margin-top: 0; font-size: 1.1rem; }
.legal-toc ul { list-style: none; padding: 0; }
.legal-toc a { color: var(--leaf-deep); font-weight: 600; text-decoration: underline; text-decoration-color: var(--leaf-pale); }
.legal-toc a:hover { text-decoration-color: var(--sun-deep); }

/* Print styles */
@media print {
  .topbar, .a11y-trigger, .whatsapp-fab, .cookie, .footer__bottom, .nav { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; page-break-inside: avoid; }
}
