/* ==========================================================================
   مزرعة ومشاتل النادرية — Naderia Farm & Nurseries
   alnaderia.com
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* ---------- Design tokens ---------- */
:root {
  /* brand greens */
  --ink: #0F2318;
  --green-950: #0B2E1D;
  --green-900: #0E3D26;
  --green-800: #135233;
  --green-700: #1E6B3E;
  --green-600: #2E8B57;

  /* logo frond palette */
  --lime:   #8DC63F;
  --leaf:   #3BB54A;
  --teal:   #2BA8A0;
  --sky:    #35A8E0;
  --blue:   #2B6CB8;
  --purple: #7C5CA8;
  --orange: #F7941D;
  --flame:  #F15A24;

  /* neutrals */
  --ivory: #FAF6EC;
  --sand:  #F1E9D8;
  --card:  #FFFFFF;
  --line:  #E6DCC6;
  --muted: #5C6B5F;

  --wa: #23B356;
  --wa-dark: #128C50;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(15, 35, 24, .06);
  --shadow-md: 0 14px 40px -12px rgba(15, 35, 24, .18);
  --shadow-lg: 0 30px 70px -20px rgba(15, 35, 24, .30);

  --container: 1180px;
  --header-h: 76px;
}

html[lang="ar"] {
  --font-display: 'Aref Ruqaa', serif;
  --font-body: 'IBM Plex Sans Arabic', system-ui, sans-serif;
}
html[lang="en"] {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

section { scroll-margin-top: calc(var(--header-h) + 12px); }

::selection { background: var(--green-700); color: #fff; }

/* ---------- Utilities ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--green-700);
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--flame));
  border-radius: 2px;
}

.sec-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .kicker { justify-content: center; }
.sec-head.center .kicker::before { display: none; }
.sec-head.center .kicker::after { display: none; }

.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.8;
  color: var(--green-900);
  margin-top: .4rem;
}
html[lang="en"] .sec-title { line-height: 1.25; }

.sec-sub { color: var(--muted); margin-top: .6rem; font-size: 1.03rem; }

/* diamond ornament */
.orn {
  display: flex; align-items: center; justify-content: center;
  gap: .45rem; margin-top: 1.1rem;
}
.orn i {
  width: 8px; height: 8px; transform: rotate(45deg);
  background: var(--orange); border-radius: 1.5px;
}
.orn i:nth-child(1) { background: var(--teal); width: 6px; height: 6px; opacity: .85; }
.orn i:nth-child(3) { background: var(--purple); width: 6px; height: 6px; opacity: .85; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--flame));
  box-shadow: 0 12px 30px -10px rgba(241, 90, 36, .55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(241, 90, 36, .6); }

.btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .6); transform: translateY(-3px); }

.btn-wa {
  color: #fff;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  box-shadow: 0 12px 30px -10px rgba(18, 140, 80, .55);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(18, 140, 80, .6); }

.btn-dark {
  color: #fff;
  background: var(--green-800);
}
.btn-dark:hover { background: var(--green-700); transform: translateY(-3px); }

/* ---------- Qatt Asiri zigzag strips ---------- */
.qatt {
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='13' viewBox='0 0 64 13'%3E%3Cpath d='M0 13 8 0l8 13z' fill='%23F7941D'/%3E%3Cpath d='M16 13 24 0l8 13z' fill='%232BA8A0'/%3E%3Cpath d='M32 13 40 0l8 13z' fill='%237C5CA8'/%3E%3Cpath d='M48 13 56 0l8 13z' fill='%233BB54A'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 64px 13px;
}
.qatt-flip { transform: scaleY(-1); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
  color: #fff;
}
.header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.header.scrolled {
  background: rgba(250, 246, 236, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -12px rgba(15, 35, 24, .18);
  color: var(--green-900);
  height: 66px;
}

.brand { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.brand svg { width: 52px; height: 30px; flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.4;
  white-space: nowrap;
}
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .75;
}

.nav { display: flex; align-items: center; gap: 1.9rem; font-weight: 600; font-size: .96rem; }
.nav a { position: relative; padding-block: .3rem; opacity: .92; transition: opacity .2s; }
.nav a:hover { opacity: 1; }
.nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--flame));
  transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .8rem; }

.lang-switch {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: .88rem;
  padding: .45rem 1rem;
  border-radius: 100px;
  border: 1.5px solid currentColor;
  opacity: .9;
  transition: all .25s ease;
}
.lang-switch:hover { opacity: 1; background: rgba(255,255,255,.1); transform: translateY(-2px); }
.header.scrolled .lang-switch:hover { background: rgba(14, 61, 38, .08); }

.header-cta {
  padding: .55rem 1.3rem;
  font-size: .9rem;
  border-radius: 100px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  box-shadow: 0 8px 22px -8px rgba(18, 140, 80, .55);
  display: inline-flex; align-items: center; gap: .45rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.header-cta svg { width: 17px; height: 17px; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(18, 140, 80, .65); }

/* burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  place-items: center;
  border: 1.5px solid currentColor;
  opacity: .9;
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: relative;
  transition: transform .3s ease, top .3s ease, opacity .3s ease;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* mobile panel */
.mobile-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 99;
  padding: calc(var(--header-h) + 1.5rem) 2rem 2.5rem;
  background: linear-gradient(180deg, var(--green-950), var(--green-900));
  color: #fff;
  transform: translateY(-105%);
  transition: transform .45s cubic-bezier(.7, 0, .25, 1);
  box-shadow: var(--shadow-lg);
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}
body.nav-open .mobile-nav { transform: translateY(0); }
.mobile-nav a {
  display: block;
  padding: .9rem 0;
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 1.2rem; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(46, 139, 87, .5), transparent 60%),
    radial-gradient(900px 500px at 12% 110%, rgba(30, 107, 62, .55), transparent 60%),
    linear-gradient(178deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-800) 100%);
  overflow: hidden;
  padding-block: calc(var(--header-h) + 3rem) 9rem;
}

/* faint qatt texture overlay */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 8l7 7-7 7-7-7z' fill='%23ffffff' fill-opacity='.05'/%3E%3Cpath d='M14 60l5 5-5 5-5-5z' fill='%23ffffff' fill-opacity='.04'/%3E%3Cpath d='M104 96l5 5-5 5-5-5z' fill='%23ffffff' fill-opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .95rem; font-weight: 600;
  color: #DCE9D5;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: .45rem 1.15rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.hero-kicker i {
  width: 7px; height: 7px; transform: rotate(45deg);
  background: var(--orange); border-radius: 1px; flex: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  line-height: 1.85;
  margin-top: 1.4rem;
}
html[lang="en"] .hero h1 { line-height: 1.2; }
.hero h1 .hl {
  background: linear-gradient(120deg, #FFC46B, var(--orange) 60%, #FFD9A0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 1.3rem;
  max-width: 560px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .82);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }

.hero-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.4rem; }
.hero-chips span {
  font-size: .85rem; font-weight: 600;
  color: #E8F1E4;
  padding: .4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
}

/* hero logo mark */
.hero-mark { position: relative; display: grid; place-items: center; }
.hero-mark svg { width: min(100%, 420px); height: auto; filter: drop-shadow(0 24px 50px rgba(0, 0, 0, .35)); }
.hero-mark::before {
  content: "";
  position: absolute;
  width: 78%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .10), transparent 65%);
}
.hero-mark::after {
  content: "";
  position: absolute;
  width: 92%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .18);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.mark-name {
  font-family: var(--font-display);
  font-size: 18px;
  fill: #fff;
}
.mark-sub {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .34em;
  fill: rgba(255, 255, 255, .55);
}

/* frond fan-in animation */
.frond {
  transform-origin: 100px 96px;
  opacity: 0;
  animation: frond-in 1s cubic-bezier(.2, .8, .3, 1.2) forwards;
}
@keyframes frond-in {
  from { opacity: 0; transform: rotate(var(--rot, 0deg)) scale(.2); }
  to   { opacity: 1; transform: rotate(var(--rot, 0deg)) scale(1); }
}
/* mountains */
.hero-mountains {
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  z-index: 1;
  width: 100%;
  height: clamp(150px, 24vw, 280px);
  pointer-events: none;
}
.hero-mountains svg { width: 100%; height: 100%; }

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  inset-inline-start: 50%;
  translate: -50% 0;
  z-index: 3;
  color: rgba(255, 255, 255, .75);
  font-size: .8rem;
  display: grid;
  justify-items: center;
  gap: .3rem;
}
html[dir="rtl"] .scroll-cue { translate: 50% 0; }
.scroll-cue::after {
  content: "";
  width: 1.5px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), transparent);
  animation: cue 1.8s ease infinite;
}
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--green-950);
  color: #E8F1E4;
  overflow: hidden;
  padding-block: .95rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 3rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  white-space: nowrap;
}
.marquee-track b { color: var(--orange); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

/* ---------- Story ---------- */
.story { position: relative; }
.story .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.story-text p { color: #33463A; margin-bottom: 1.1rem; }
.story-text p strong { color: var(--green-800); }
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 2;
  color: var(--green-800);
  border-inline-start: 4px solid var(--orange);
  padding-inline-start: 1.2rem;
  margin-block: 1.6rem;
}

.story-card {
  position: relative;
  background: linear-gradient(165deg, var(--green-900), var(--green-800));
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.story-card::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.story-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFD9A0;
}
.story-card p { color: rgba(255, 255, 255, .85); font-size: .98rem; }
.story-card .wadis {
  display: grid; grid-template-columns: 1fr 1fr; gap: .8rem;
  margin-top: 1.6rem;
}
.story-card .wadis div {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: .9rem 1rem;
  text-align: center;
}
.story-card .wadis b { display: block; font-family: var(--font-display); font-size: 1.1rem; color: #fff; }
.story-card .wadis small { color: rgba(255, 255, 255, .65); font-size: .78rem; }

/* stats band */
.stats {
  margin-top: clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--green-800);
  line-height: 1.6;
}
.stat span { color: var(--muted); font-size: .88rem; }
.stat i {
  display: block; width: 26px; height: 3px; border-radius: 3px;
  margin: .6rem auto 0;
}
.stat:nth-child(1) i { background: var(--orange); }
.stat:nth-child(2) i { background: var(--teal); }
.stat:nth-child(3) i { background: var(--purple); }
.stat:nth-child(4) i { background: var(--leaf); }

/* ---------- Vision band ---------- */
.vision {
  position: relative;
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(46, 139, 87, .35), transparent 60%),
    linear-gradient(160deg, var(--green-950), var(--green-900));
  color: #fff;
}
.vision .sec-title { color: #fff; }
.vision .kicker { color: #FFC46B; }
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.vision-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform .35s ease, background .35s ease;
}
.vision-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .08); }
.vision-card::after {
  content: "";
  position: absolute; top: 0; inset-inline-start: 0;
  width: 64px; height: 4px;
  border-end-end-radius: 6px;
}
.vision-card.v1::after { background: linear-gradient(90deg, var(--orange), var(--flame)); }
.vision-card.v2::after { background: linear-gradient(90deg, var(--teal), var(--sky)); }
.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: .8rem;
  color: #FFD9A0;
  display: flex; align-items: center; gap: .7rem;
}
.vision-card.v2 h3 { color: #A9E5DF; }
.vision-card h3 svg { width: 30px; height: 30px; flex: none; }
.vision-card p { color: rgba(255, 255, 255, .85); }

/* ---------- Products ---------- */
.products { position: relative; }
.prod-group { margin-bottom: 3rem; }
.prod-group:last-child { margin-bottom: 0; }
.prod-group-title {
  display: flex; align-items: center; gap: 1rem;
  font-weight: 700;
  color: var(--green-800);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.prod-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.prod-group-title em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  background: var(--green-700);
  padding: .18rem .8rem;
  border-radius: 100px;
}

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.prod-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 800px; }

.prod-card {
  --accent: var(--orange);
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem 1.9rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.prod-card::before {
  content: "";
  position: absolute; top: 0; inset-inline: 0;
  height: 5px;
  background: var(--accent);
  opacity: .85;
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.prod-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, #fff);
  margin-bottom: 1.2rem;
  transition: transform .35s ease;
}
.prod-card:hover .prod-icon { transform: scale(1.08) rotate(-4deg); }
.prod-icon svg { width: 34px; height: 34px; }
.prod-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-900);
  margin-bottom: .5rem;
  line-height: 1.7;
}
.prod-card p { color: var(--muted); font-size: .95rem; }
.prod-badge {
  position: absolute;
  top: 1.15rem;
  inset-inline-end: 1.15rem;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, #fff);
  background: color-mix(in srgb, var(--accent) 8%, #fff);
  padding: .15rem .65rem;
  border-radius: 100px;
}

/* ---------- Features (why us) ---------- */
.features { background: var(--sand); position: relative; }
.features::before, .features::after {
  content: "";
  position: absolute; inset-inline: 0; height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='13' viewBox='0 0 64 13'%3E%3Cpath d='M0 13 8 0l8 13z' fill='%23F7941D'/%3E%3Cpath d='M16 13 24 0l8 13z' fill='%232BA8A0'/%3E%3Cpath d='M32 13 40 0l8 13z' fill='%237C5CA8'/%3E%3Cpath d='M48 13 56 0l8 13z' fill='%233BB54A'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 64px 13px;
  opacity: .55;
}
.features::before { top: 0; transform: scaleY(-1); }
.features::after { bottom: 0; }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.feat {
  display: flex; gap: 1.3rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat-icon {
  flex: none;
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: #fff;
}
.feat-icon svg { width: 30px; height: 30px; }
.feat:nth-child(1) .feat-icon { background: linear-gradient(135deg, var(--leaf), var(--green-600)); }
.feat:nth-child(2) .feat-icon { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.feat:nth-child(3) .feat-icon { background: linear-gradient(135deg, var(--orange), var(--flame)); }
.feat:nth-child(4) .feat-icon { background: linear-gradient(135deg, var(--teal), var(--sky)); }
.feat h3 { font-size: 1.12rem; font-weight: 800; color: var(--green-900); margin-bottom: .35rem; }
.feat p { color: var(--muted); font-size: .94rem; }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value {
  position: relative;
  padding: 2rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value b.num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--sand);
  position: absolute;
  top: 1rem;
  inset-inline-end: 1.2rem;
  transition: color .35s ease;
}
.value:hover b.num { color: color-mix(in srgb, var(--orange) 30%, var(--sand)); }
.value h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green-900);
  margin-bottom: .5rem;
  line-height: 1.7;
}
.value p { color: var(--muted); font-size: .95rem; }
.value i { display: block; width: 34px; height: 4px; border-radius: 4px; margin-bottom: 1.1rem; }
.value:nth-child(1) i { background: var(--orange); }
.value:nth-child(2) i { background: var(--purple); }
.value:nth-child(3) i { background: var(--teal); }

/* ---------- Contact ---------- */
.contact { position: relative; }
.contact-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.6rem;
  align-items: stretch;
}
.contact-card {
  background: linear-gradient(165deg, var(--green-900), var(--green-800));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.contact-card h3 { font-family: var(--font-display); font-size: 1.6rem; color: #FFD9A0; line-height: 1.7; }
.contact-row { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 1; }
.contact-row .ico {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
}
.contact-row .ico svg { width: 24px; height: 24px; }
.contact-row small { display: block; color: rgba(255,255,255,.6); font-size: .8rem; }
.contact-row b { font-size: 1.1rem; }
.contact-row a b { transition: color .2s; }
.contact-row a:hover b { color: #FFC46B; }
.phone-ltr { direction: ltr; unicode-bidi: embed; letter-spacing: .04em; }
.contact-card .btn { margin-top: auto; position: relative; z-index: 1; }

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  background: var(--card);
}
.map-card iframe { flex: 1; width: 100%; border: 0; min-height: 340px; }
.map-viz {
  flex: 1;
  min-height: 340px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(500px 260px at 70% 30%, rgba(141, 198, 63, .12), transparent 60%),
    linear-gradient(160deg, #EDF4E7, #F8F3E6);
  border-bottom: 1px solid var(--line);
}
.map-viz svg { width: 100%; height: 100%; min-height: 340px; font-family: var(--font-body); }
.map-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.4rem;
  font-size: .92rem;
  color: var(--muted);
}
.map-foot a { color: var(--green-700); font-weight: 700; display: inline-flex; align-items: center; gap: .4rem; }
.map-foot a:hover { text-decoration: underline; }

/* floating whatsapp */
.wa-float {
  position: fixed;
  bottom: 1.4rem;
  inset-inline-start: 1.4rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  box-shadow: 0 14px 34px -8px rgba(18, 140, 80, .65);
  transition: transform .3s ease;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, .78);
  padding-top: 4rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer .brand-name { color: #fff; }
.footer p { font-size: .93rem; margin-top: 1rem; max-width: 380px; }
.footer h4 {
  color: #FFD9A0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.footer li { margin-bottom: .55rem; font-size: .95rem; }
.footer li a { opacity: .8; transition: opacity .2s, padding .25s ease; }
.footer li a:hover { opacity: 1; color: #FFC46B; padding-inline-start: .3rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 1.3rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}
.footer-bottom b { color: rgba(255,255,255,.85); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .3, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-kicker { margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas, .hero-chips { justify-content: center; }
  .hero-mark { order: -1; margin-top: -1rem; }
  .hero-mark svg { width: min(58vw, 300px); }
  .hero { padding-bottom: 11rem; }
  .story .container { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .burger { display: grid; }
  .vision-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 640px) {
  body { font-size: .98rem; }
  .prod-grid, .prod-grid.two { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.05rem; }
  .brand svg { width: 44px; height: 26px; }
  .hero { padding-top: calc(var(--header-h) + 1.5rem); }
  .btn { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .stats { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .stat { padding: 1.1rem .8rem; }
  .wa-float { width: 52px; height: 52px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .frond { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Ayah ---------- */
.ayah {
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: linear-gradient(180deg, var(--ivory) 0%, #F3ECDA 50%, var(--ivory) 100%);
}
.ayah .orn { margin-bottom: 1.4rem; }
.ayah-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 2;
  color: var(--green-900);
}
.ayah-trans {
  color: var(--green-800);
  margin-top: .6rem;
  font-style: italic;
  font-size: 1.08rem;
}
.ayah-ref {
  color: var(--muted);
  margin-top: .7rem;
  font-size: .92rem;
  letter-spacing: .06em;
}

/* ---------- Benefits ---------- */
.ben-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.bcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bcard .bico {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  color: #fff;
}
.bcard .bico svg { width: 28px; height: 28px; }
.bcard:nth-child(1) .bico { background: linear-gradient(135deg, var(--leaf), var(--green-600)); }
.bcard:nth-child(2) .bico { background: linear-gradient(135deg, var(--sky), var(--blue)); }
.bcard:nth-child(3) .bico { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.bcard:nth-child(4) .bico { background: linear-gradient(135deg, var(--orange), var(--flame)); }
.bcard h3 { font-size: 1.08rem; font-weight: 800; color: var(--green-900); margin-bottom: .4rem; }
.bcard p { color: var(--muted); font-size: .9rem; }

/* ---------- Region ---------- */
.region { background: linear-gradient(180deg, var(--ivory), var(--sand)); }
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.rcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.rcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.rcard .rico {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 1rem;
}
.rcard .rico svg { width: 28px; height: 28px; }
.rcard:nth-child(1) .rico { background: linear-gradient(135deg, var(--sky), var(--teal)); }
.rcard:nth-child(2) .rico { background: linear-gradient(135deg, var(--leaf), var(--green-600)); }
.rcard:nth-child(3) .rico { background: linear-gradient(135deg, var(--orange), var(--flame)); }
.rcard:nth-child(4) .rico { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.rcard h3 { font-size: 1.1rem; font-weight: 800; color: var(--green-900); margin-bottom: .4rem; }
.rcard p { color: var(--muted); font-size: .92rem; }

@media (max-width: 1024px) {
  .ben-grid, .region-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ben-grid, .region-grid { grid-template-columns: 1fr; }
}
