/* ============================================================
   SOUQ AL-FALLAH — INTRO PAGE CSS
   Primary: #03853B | Secondary: #D4A017 (Gold)
   Aesthetic: Organic Luxury Editorial — Dark & Light zones
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
:root {
  --g: #03853B;
  --g-dark: #025e2a;
  --g-mid: #04a347;
  --g-light: #05c456;
  --g-pale: #e6f5ec;
  --g-ultra: #f0faf4;
  --gold: #D4A017;
  --gold-mid: #2ae889;
  --gold-light: #F5C84A;
  --gold-dark: #b8880e;
  --gold-pale: #fdf6e3;
  --dark: #0a0f0d;
  --dark-2: #111811;
  --dark-3: #161f19;
  --dark-4: #1d2920;
  --mid-dark: #2a3a2e;
  --text: #1a1f1b;
  --text-2: #3d4d42;
  --text-3: #6b7d70;
  --text-4: #9aab9f;
  --white: #ffffff;
  --off-white: #fafaf8;
  --border: rgba(3,133,59,0.12);
  --border-dark: rgba(255,255,255,0.08);
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.25);
  --shadow-green: 0 8px 32px rgba(3,133,59,0.25);
  --shadow-gold: 0 8px 32px rgba(212,160,23,0.3);
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-med: 0.4s;
  --t-slow: 0.7s;
  --t-xslow: 1.1s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}
.nav-logo-mark {
  display: flex;
  align-items: center;   /* محاذاة عمودية للوسط */
  justify-content: center; 
  height: 66px;          /* نفس ارتفاع الـ navbar */
}

.nav-logo-img {
  max-height: 120px;      /* ارتفاع مناسب */
  max-width: 120px;       /* عرض مناسب */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.2); /* تكبير سلس عند hover */
}
img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--g);
  border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--g-mid);
}

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* ── PAGE LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader.out {
  opacity: 0; visibility: hidden;
}

.loader-content {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  width: 200px;
}

.loader-leaf {
  width: 48px; height: 64px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.leaf-path {
  fill: var(--g);
  stroke: none;
  filter: drop-shadow(0 0 12px rgba(3,133,59,0.5));
}

.leaf-vein, .leaf-vein-l, .leaf-vein-r,
.leaf-vein-l2, .leaf-vein-r2 {
  stroke: rgba(255,255,255,0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawVein 1.2s ease-out 0.3s forwards;
}

@keyframes drawVein {
  to { stroke-dashoffset: 0; }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(3,133,59,0.5)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 24px rgba(3,133,59,0.8)); }
}

.loader-progress {
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--g), var(--gold));
  border-radius: var(--r-full);
  width: 0;
  transition: width 0.05s linear;
}

.loader-text {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── NAVBAR ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border-dark);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 32px; height: 42px;
  flex-shrink: 0;
}

.nav-logo-mark svg {
  width: 100%; height: 100%;
}

.nav-logo span {
  font-size: 18px; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  font-family: 'Amiri', serif;
}

.nav-center {
  display: flex; align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-center a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 6px 16px;
  border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  position: relative;
}

.nav-center a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 50%; left: 50%;
  height: 1px; background: var(--g);
  transition: right var(--t-fast), left var(--t-fast);
  opacity: 0;
}

.nav-center a:hover::after {
  right: 16px; left: 16px;
  opacity: 1;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-btn {
  display: inline-block;
  padding: 9px 24px;
  background: var(--g);
  color: var(--white);
  font-size: 14px; font-weight: 700;
  border-radius: var(--r-full);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--g-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

.nav-burger {
  display: none;
  flex-direction: column; gap: 6px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: none; border: none;
}

.nav-burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t-fast);
}

.nav-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-burger.open span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 32px 24px;
  z-index: 998;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-20px);
  opacity: 0; visibility: hidden;
  transition: transform var(--t-med) var(--ease-out),
              opacity var(--t-med),
              visibility var(--t-med);
}

.mob-menu.open {
  transform: translateY(0);
  opacity: 1; visibility: visible;
}

.mob-menu a {
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--t-fast);
}

.mob-menu a:hover { color: var(--white); }

.mob-cta {
  margin-top: 12px;
  display: inline-block;
  padding: 12px 24px;
  background: var(--g);
  color: var(--white) !important;
  border-radius: var(--r-full);
  text-align: center;
  font-weight: 700 !important;
  border: none !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-canvas {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.hero-bg-img {
  position: absolute; inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-bg-img img.loaded { opacity: 1; }



.hero-img-mask {
  position: absolute; inset: 0;
  background:
    linear-gradient(to left, transparent 20%, rgba(10,15,13,0.6) 60%, var(--dark) 100%),
    linear-gradient(to top, var(--dark) 0%, transparent 30%),
    linear-gradient(to bottom, rgba(10,15,13,0.4) 0%, transparent 20%);
}

.hero-inner {
  position: relative; z-index: 3;
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 140px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}

.hero-eyebrow.visible {
  opacity: 1; transform: translateY(0);
}

.eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--g);
}

.hero-eyebrow span:nth-child(2) {
  font-size: 12px; font-weight: 700;
  color: var(--g);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: block; width: 4px !important; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212,160,23,0); }
}

/* Hero Title */
.hero-title {
  display: flex; flex-direction: column;
  gap: 0; margin-bottom: 28px;
  opacity: 0; transform: translateY(30px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}

.hero-title.visible {
  opacity: 1; transform: translateY(0);
}

.ht-line {
  display: flex; gap: 0.3em;
  align-items: baseline;
  line-height: 1.0;
}

.ht-word {
  font-family: 'Amiri', serif;
  font-size: clamp(72px, 9vw, 130px);
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  transition: transform 0.3s var(--ease-spring);
}

.ht-word:hover { transform: skewX(-3deg) scale(1.03); }

.ht-word-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
}

.ht-word-fill { color: var(--white); }

.ht-word-gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(212,160,23,0.3);
  background: linear-gradient(
    120deg,
    var(--gold) 0%,
    var(--gold-light) 40%,
    var(--gold) 60%,
    #fff8dc 80%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
  from { background-position: 0% center; }
  to { background-position: 200% center; }
}

.ht-word-outline-gold {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  font-size: clamp(52px, 6.5vw, 96px);
  opacity: 0.6;
}

.ht-line-3 {
  margin-top: -8px;
}

/* Hero Subtitle */
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}

.hero-sub.visible { opacity: 1; transform: translateY(0); }

/* Hero Actions */
.hero-actions {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 72px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}

.hero-actions.visible { opacity: 1; transform: translateY(0); }

.btn-main {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  background: var(--g);
  color: var(--white);
  font-size: 16px; font-weight: 700;
  border-radius: var(--r-full);
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-main::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(3,133,59,0.4);
}

.btn-main:hover::before { opacity: 1; }

.btn-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: transform var(--t-fast);
}

.btn-main:hover .btn-icon { transform: translateY(3px); }

.btn-icon svg { width: 14px; height: 14px; }

.btn-ghost {
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}

.hero-stats.visible { opacity: 1; transform: translateY(0); }

.hstat { text-align: center; }

.hstat-num {
  display: flex; align-items: baseline; gap: 2px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.hstat-plus {
  font-size: 0.6em;
  color: var(--g-mid);
}

.hstat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hstat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Hero Scroll Hint */
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 4;
  display: flex; align-items: center; gap: 10px;
}

.hero-scroll span {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-wheel {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  display: flex; justify-content: center;
  padding-top: 6px;
}

.scroll-ball {
  width: 4px; height: 6px;
  background: var(--g);
  border-radius: var(--r-full);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
}

/* Hero Marquee Bottom */
.hero-marquee-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,15,13,0.6);
  backdrop-filter: blur(12px);
}

.hm-track {
  display: flex; gap: 28px; align-items: center;
  animation: marqueeRTL 30s linear infinite;
  width: max-content;
}

.hm-track span {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hm-dot {
  width: 3px !important; height: 3px;
  background: var(--g) !important;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeRTL {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION COMMON ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}

.section-tag.visible {
  opacity: 1; transform: translateY(0);
}

.section-tag span:first-child {
  font-size: 11px; font-weight: 700;
  color: var(--g);
  background: var(--g-pale);
  padding: 3px 8px; border-radius: var(--r-xs);
  letter-spacing: 0.05em;
}

.section-tag span:last-child {
  font-size: 12px; font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1; transform: translateY(0);
}

/* ── ABOUT ── */
.about {
  background: var(--off-white);
  overflow: hidden;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2303853B' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.about::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(3,133,59,0.06), transparent 70%);
  top: 50%; left: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-title {
  font-family: 'Amiri', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: 1.15;
  color: var(--text);
  margin-bottom: 28px;
}

.at-accent {
  color: var(--g);
  position: relative;
}

.at-accent::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g), var(--gold));
  border-radius: var(--r-full);
}

.about-body p {
  font-size: 16px; line-height: 1.9;
  color: var(--text-2);
  margin-bottom: 16px;
}

.about-pillars {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 20px;
}

.pillar {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: transform var(--t-med) var(--ease-spring),
              border-color var(--t-fast),
              box-shadow var(--t-fast);
  border-top: 3px solid transparent;
}

.pillar:nth-child(1):hover { border-top-color: var(--g); }
.pillar:nth-child(2):hover { border-top-color: var(--gold); }
.pillar:nth-child(3):hover { border-top-color: var(--g-mid); }

.pillar:hover {
  transform: translateX(-6px);
  border-color: var(--g);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--g-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--g);
  transition: background var(--t-fast), color var(--t-fast);
}

.pillar:hover .pillar-icon {
  background: var(--g);
  color: var(--white);
}

.pillar-icon svg { width: 20px; height: 20px; fill: currentColor; }

.pillar strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 2px;
}

.pillar span {
  font-size: 13px; color: var(--text-3);
}

/* About Visual Stack */
.about-visual-col {
  position: relative;
}

.about-img-stack {
  position: relative; height: 560px;
}

.aimg {
  position: absolute; overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  backface-visibility: hidden;
}

.aimg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1);
  backface-visibility: hidden;
  transition: transform 0.6s var(--ease-out);
  transform-origin: center center;
}

.aimg:hover img { transform: translate3d(0, 0, 0) scale(1.04); }

.aimg-1 {
  width: 75%; height: 400px;
  top: 0; right: 0;
  z-index: 2;
}

.aimg-2 {
  width: 50%; height: 240px;
  bottom: 0; left: 0;
  border: 4px solid var(--off-white);
  z-index: 1;
}



.aimg-label {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(10,15,13,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--r-full);
  z-index: 3;
}

.aimg-badge {
  position: absolute; top: 80px; left: -12px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 700;
  color: var(--g);
  animation: badgePop 0.5s var(--ease-spring) 1s both;
  z-index: 5;
}

@keyframes badgePop {
  from { transform: scale(0) rotate(-10deg); }
  to { transform: scale(1) rotate(0deg); }
}

.aimg-badge svg {
  width: 18px; height: 18px; color: var(--g);
  fill: currentColor;
}

.aimg-counter-card {
  position: absolute;
  bottom: 120px; right: -20px;
  background: var(--g);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-green);
  color: var(--white);
  z-index: 5;
  animation: badgePop 0.5s var(--ease-spring) 1.3s both;
}

.aimg-counter-card strong {
  display: block; font-size: 24px; font-weight: 900;
  line-height: 1; margin-bottom: 4px;
}

.aimg-counter-card span {
  font-size: 12px; opacity: 0.8;
}

.acc-bar {
  margin-top: 10px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-full); overflow: hidden;
}

.acc-fill {
  height: 100%;
  background: var(--gold);
  border-radius: var(--r-full);
  width: 0;
  animation: barGrow 2s ease-out 1.8s forwards;
}

@keyframes barGrow {
  to { width: 82%; }
}

/* ── VISION ── */
.vision {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(3,133,59,0.08), transparent);
  border-radius: 50%;
}

.vision-bg {
  position: absolute; inset: 0;
}

.vision-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.4);
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.vision-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2,94,42,0.9) 0%,
    rgba(10,15,13,0.85) 60%,
    rgba(10,15,13,0.95) 100%
  );
}

.vision-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 100px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.vision-quote {
  position: relative;
}

.vq-mark {
  font-family: 'Amiri', serif;
  font-size: 120px; line-height: 0.6;
  color: var(--g);
  opacity: 0.3;
  margin-bottom: 16px;
}

.vision-quote blockquote {
  font-family: 'Amiri', serif;
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.vision-quote blockquote strong {
  color: var(--gold-light);
  font-style: normal;
}

.vq-author {
  margin-top: 28px;
  display: flex; align-items: center; gap: 12px;
}

.vq-line {
  width: 28px; height: 1px;
  background: var(--g);
}

.vq-author span {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vision-goals {
  display: flex; flex-direction: column; gap: 24px;
}

.vgoal {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--t-fast), background var(--t-fast);
}

.vgoal:hover {
  transform: translateX(-8px);
  background: rgba(255,255,255,0.02);
  border-radius: var(--r-md);
  padding-left: 16px;
}

.vgoal:last-child { border-bottom: none; }

.vgoal-num {
  font-size: 12px; font-weight: 900;
  color: var(--g);
  background: rgba(3,133,59,0.15);
  border: 1px solid rgba(3,133,59,0.25);
  padding: 4px 10px; border-radius: var(--r-xs);
  flex-shrink: 0; letter-spacing: 0.05em;
  margin-top: 2px;
}

.vgoal-text h3 {
  font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}

.vgoal-text p {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.vgoal:nth-child(1) { transition-delay: 0s; }
.vgoal:nth-child(2) { transition-delay: 0.08s; }
.vgoal:nth-child(3) { transition-delay: 0.16s; }
.vgoal:nth-child(4) { transition-delay: 0.24s; }

/* ── HOW IT WORKS ── */
.how {
  background: var(--dark-2);
  overflow: hidden;
  background-image: radial-gradient(
    rgba(3,133,59,0.04) 1px, transparent 1px
  );
  background-size: 40px 40px;
}

.how-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 48px;
}

.how-header {
  margin-bottom: 80px;
}

.how-title {
  font-family: 'Amiri', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: 1.2;
  color: var(--white);
  max-width: 560px;
}

.how-title-accent {
  color: var(--g);
  position: relative;
  display: inline-block;
}

.how-title-accent::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--g), transparent);
}

.how-timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}

.how-timeline::before {
  content: '';
  position: absolute;
  right: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--g) 10%, var(--g) 90%, transparent);
  opacity: 0.2;
}

.htl-step {
  display: flex; align-items: flex-start;
  gap: 48px; padding: 48px 0;
  position: relative;
  transition: background var(--t-slow);
  border-radius: var(--r-xl);
  padding-right: 24px; padding-left: 24px;
}

.htl-step:hover {
  background: rgba(255,255,255,0.02);
}

.htl-step-rev {
  flex-direction: row-reverse;
}

.htl-number {
  flex-shrink: 0;
  position: sticky; top: 100px;
  width: 56px; height: 56px;
  background: var(--g);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(3,133,59,0.1);
  z-index: 2;
}

.htl-number span {
  font-size: 14px; font-weight: 900;
  color: var(--white); letter-spacing: 0.05em;
}

.htl-content {
  flex: 1; display: flex;
  gap: 40px; align-items: center;
}

.htl-step-rev .htl-content {
  flex-direction: row-reverse;
}

.htl-img {
  flex: 1; position: relative; overflow: hidden;
  border-radius: var(--r-lg); aspect-ratio: 4/3;
  max-width: 400px;
}

.htl-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
  filter: brightness(0.85) saturate(0.8);
}

.htl-step:hover .htl-img img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

.htl-img-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--g);
  color: var(--white);
  font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: var(--r-full);
  letter-spacing: 0.1em;
  z-index: 2;
}

.htl-text {
  flex: 1;
}

.htl-text h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px; line-height: 1.3;
}

.htl-text p {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.htl-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}

.htl-tags span {
  font-size: 12px; font-weight: 600;
  color: var(--g);
  background: rgba(3,133,59,0.1);
  border: 1px solid rgba(3,133,59,0.2);
  padding: 4px 14px; border-radius: var(--r-full);
  letter-spacing: 0.05em;
}

.htl-connector {
  width: 1px; height: 48px; margin: 0 auto;
  background: linear-gradient(to bottom, var(--g), transparent);
  opacity: 0.3;
}

/* ── IMPACT ── */
.impact {
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.impact::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle at 100% 100%, rgba(3,133,59,0.04), transparent 70%);
  pointer-events: none;
}

.impact-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 48px;
}

.impact-header {
  margin-bottom: 64px;
}

.impact-title {
  font-family: 'Amiri', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: 1.2;
  color: var(--text); max-width: 600px;
}

.impact-title span {
  color: var(--g);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.impact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform var(--t-med) var(--ease-spring),
              box-shadow var(--t-med),
              border-color var(--t-fast);
  overflow: hidden; position: relative;
}

.impact-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  opacity: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(3,133,59,0.08), transparent 40%);
  transition: opacity 0.3s;
  pointer-events: none;
}

.impact-card:hover::before { opacity: 1; }

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--g);
}

.ic-big {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
}

.ic-bg-img {
  position: absolute; inset: 0;
}

.ic-bg-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.ic-big:hover .ic-bg-img img {
  transform: scale(1.06);
}

.ic-big .ic-bg-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,94,42,0.9), rgba(10,15,13,0.7));
}

.ic-big .ic-content {
  position: relative; z-index: 2;
  padding: 40px;
  height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end;
}

.ic-big .ic-number {
  font-size: clamp(64px, 8vw, 96px);
  color: var(--white) !important;
  text-shadow: 0 0 40px rgba(3,133,59,0.5);
}

.ic-big .ic-label { color: rgba(255,255,255,0.8) !important; }
.ic-big p { color: rgba(255,255,255,0.55) !important; }

.ic-wide {
  grid-column: span 2;
  display: flex; gap: 32px; align-items: center;
}

.icw-left, .icw-right { flex: 1; }

.ic-icon {
  width: 52px; height: 52px;
  background: var(--g-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--g);
  margin-bottom: 20px;
  transition: background var(--t-fast), color var(--t-fast);
}

.impact-card:hover .ic-icon {
  background: var(--g); color: var(--white);
}

.ic-icon svg { width: 24px; height: 24px; fill: currentColor; }

.ic-number {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900; color: var(--g);
  line-height: 1; margin-bottom: 8px;
  font-family: 'Amiri', serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.ic-label {
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}

.impact-card > p {
  font-size: 13px; color: var(--text-3); line-height: 1.7;
}

/* Delivery Bars */
.delivery-bars { display: flex; flex-direction: column; gap: 12px; }

.db-row {
  display: flex; align-items: center; gap: 10px;
}

.db-row > span {
  font-size: 12px; color: var(--text-3);
  width: 36px; flex-shrink: 0;
}

.db-row > span:last-child {
  width: 32px; text-align: left; color: var(--g); font-weight: 700;
}

.db-track {
  flex: 1; height: 6px;
  background: var(--g-pale);
  border-radius: var(--r-full); overflow: hidden;
}

.db-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--g), var(--g-mid));
  border-radius: var(--r-full);
  transition: width 1.8s var(--ease-out);
}

.db-fill.animated { width: var(--w); }

/* ── PRODUCTS PREVIEW ── */
.preview {
  background: var(--dark-3);
  overflow: hidden;
  background-image: radial-gradient(
    rgba(3,133,59,0.04) 1px, transparent 1px
  );
  background-size: 40px 40px;
}

.preview-inner {
  padding: 120px 0 80px;
}

.preview-header {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px; margin-bottom: 64px;
}

.preview-title {
  font-family: 'Amiri', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.preview-title span { color: var(--gold); }

.preview-sub {
  font-size: 16px; color: rgba(255,255,255,0.4);
  max-width: 480px; line-height: 1.7;
}

.preview-scroll-area {
  overflow-x: auto; overflow-y: visible;
  padding: 16px 48px 32px;
  -ms-overflow-style: none; scrollbar-width: none;
  cursor: grab;
}

.preview-scroll-area::-webkit-scrollbar { display: none; }
.preview-scroll-area:active { cursor: grabbing; }

.preview-track {
  display: flex; gap: 24px;
  width: max-content;
  padding-bottom: 16px;
}

.pcard {
  width: 320px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-spring),
              border-color var(--t-fast),
              box-shadow var(--t-fast);
  position: relative;
}

.pcard::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  background: radial-gradient(circle at 50% 100%, rgba(3,133,59,0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
}

.pcard:hover::after { opacity: 1; }

.pcard:hover {
  transform: translateY(-8px);
  border-color: rgba(3,133,59,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pcard-img {
  height: 220px; overflow: hidden; position: relative;
}

.pcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}

.pcard:hover .pcard-img img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.pcard-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(10,15,13,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-full);
  letter-spacing: 0.08em;
  z-index: 2;
}

.pcard-info {
  padding: 20px 22px;
}

.pcard-info h3 {
  font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}

.pcard-info span {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.preview-drag-hint {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.preview-drag-hint svg { width: 16px; height: 16px; fill: currentColor; }

/* ── AUDIENCE ── */
.audience {
  background: var(--off-white);
  overflow: hidden;
}

.aud-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 48px;
}

.aud-header { margin-bottom: 56px; }

.aud-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 40px;
}

.aud-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  min-height: 600px;
}

.aud-img {
  position: absolute; inset: 0;
}

.aud-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  will-change: transform;
  backface-visibility: hidden;
}

.aud-card:hover .aud-img img {
  transform: scale(1.05);
}

.aud-overlay {
  position: absolute; inset: 0;
}

.aud-farmer .aud-overlay {
  background: linear-gradient(
    to top,
    rgba(2,94,42,0.95) 0%,
    rgba(2,94,42,0.6) 50%,
    transparent 100%
  );
}

.aud-consumer .aud-overlay {
  background: linear-gradient(
    to top,
    rgba(10,15,13,0.95) 0%,
    rgba(10,15,13,0.6) 50%,
    transparent 100%
  );
}

.aud-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  z-index: 2;
}

.aud-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-full);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.15);
}

.aud-badge-gold {
  background: rgba(212,160,23,0.2);
  border-color: rgba(212,160,23,0.3);
  color: var(--gold-light);
}

.aud-content h2 {
  font-family: 'Amiri', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 12px;
}

.aud-content p {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px; max-width: 380px;
}

.aud-features {
  list-style: none; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 10px;
}

.aud-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.75);
}

.aud-features li svg {
  width: 16px; height: 16px;
  color: var(--g-mid); flex-shrink: 0;
  fill: currentColor;
}

.aud-features li:nth-child(1) { transition-delay: 0.05s; }
.aud-features li:nth-child(2) { transition-delay: 0.10s; }
.aud-features li:nth-child(3) { transition-delay: 0.15s; }
.aud-features li:nth-child(4) { transition-delay: 0.20s; }

.aud-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px; font-weight: 700;
  border-radius: var(--r-full);
  transition: transform var(--t-fast), box-shadow var(--t-fast),
              background var(--t-fast);
}

.aud-btn:hover { transform: translateY(-2px); }

.aud-btn-green {
  background: var(--g); color: var(--white);
}

.aud-btn-green:hover {
  background: var(--g-mid);
  box-shadow: var(--shadow-green);
}

.aud-btn-gold {
  background: var(--gold); color: var(--white);
}

.aud-btn-gold:hover {
  background: var(--gold-mid);
  box-shadow: var(--shadow-gold);
}

/* Extra audience cards */
.aud-extra {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ae-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  transition: transform var(--t-med) var(--ease-spring),
              border-color var(--t-fast), box-shadow var(--t-fast);
}

.ae-card:hover {
  transform: translateY(-4px);
  border-color: var(--g);
  box-shadow: var(--shadow-md);
}

.ae-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--g-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--g);
  transition: background var(--t-fast), color var(--t-fast);
}

.ae-card:hover .ae-icon {
  background: var(--g); color: var(--white);
}

.ae-icon svg { width: 22px; height: 22px; fill: currentColor; }

.ae-card h4 {
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}

.ae-card p {
  font-size: 13px; color: var(--text-3);
}

/* ── JOIN ── */
.join {
  background: var(--dark);
  overflow: hidden;
  position: relative;
  background-image: radial-gradient(
    rgba(3,133,59,0.04) 1px, transparent 1px
  );
  background-size: 40px 40px;
}

.join-bg-text {
  position: absolute;
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 900; font-family: 'Amiri', serif;
  color: rgba(3,133,59,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none;
  user-select: none; letter-spacing: -0.04em;
}

.join-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.join-label {
  font-size: 12px; font-weight: 700;
  color: var(--g); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 16px;
}

.join-title {
  font-family: 'Amiri', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700; line-height: 1.2;
  color: var(--white); margin-bottom: 16px;
}

.jt-accent {
  color: var(--g);
  display: block;
}

.join-sub {
  font-size: 15px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 44px;
  max-width: 420px;
}

/* Join Form */
.join-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 32px; margin-bottom: 32px;
  position: relative;
}

.join-form-wrap::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--r-xl) + 1px);
  background: linear-gradient(135deg, rgba(3,133,59,0.3), transparent 50%, rgba(212,160,23,0.2));
  z-index: -1;
}

.join-type-toggle {
  display: flex; gap: 4px; margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
  padding: 4px; border-radius: var(--r-full);
}

.jtt-btn {
  flex: 1; padding: 9px;
  background: none; border: none;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  transition: all var(--t-fast);
  cursor: pointer;
}

.jtt-btn.active {
  background: var(--g); color: var(--white);
  box-shadow: 0 4px 16px rgba(3,133,59,0.3);
}

.join-form {
  display: flex; flex-direction: column; gap: 12px;
}

.jf-field {
  position: relative;
}

.jf-field input,
.jf-field select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  font-family: 'Tajawal', sans-serif;
  font-size: 15px; color: var(--white);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.jf-field select option {
  background: var(--dark-3); color: var(--white);
}

.jf-field input:focus,
.jf-field select:focus {
  border-color: var(--g);
  background: rgba(3,133,59,0.06);
  box-shadow: 0 0 0 3px rgba(3,133,59,0.15);
}

.jf-field input::placeholder { color: rgba(255,255,255,0.25); }

.jf-field label {
  display: none;
}

.jf-select-wrap {
  position: relative;
}

.jf-select-icon {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  fill: currentColor;
}

.join-submit {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: var(--g); border: none;
  border-radius: var(--r-md);
  color: var(--white); font-size: 16px; font-weight: 700;
  width: 100%; margin-top: 4px;
  transition: background var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
  overflow: hidden; position: relative;
  cursor: pointer;
}

.join-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.join-submit::after {
  content: '';
  position: absolute;
  top: 0; right: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: right 0.6s var(--ease-out);
}

.join-submit:hover {
  background: var(--g-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(3,133,59,0.4);
}

.join-submit:hover::before { opacity: 1; }
.join-submit:hover::after { right: 150%; }
.join-submit:active { transform: translateY(1px); }

.js-icon { display: flex; align-items: center; justify-content: center; }
.js-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* Join Trust */
.join-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}

.jt-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.35);
  font-weight: 600; letter-spacing: 0.05em;
}

.jt-item svg { width: 14px; height: 14px; color: var(--g); fill: currentColor; }

.jt-sep {
  width: 1px; height: 16px;
  background: rgba(255,255,255,0.1);
}

/* Join Visual */
.join-visual {
  position: relative; height: 600px;
}

.jv-img-main {
  width: 85%; height: 480px;
  border-radius: var(--r-xl); overflow: hidden;
  margin-right: auto;
  box-shadow: var(--shadow-xl);
}

.jv-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.jv-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}

.jv-card-1 {
  bottom: 100px; right: 0;
  max-width: 260px;
}

.jv-card-2 {
  top: 40px; left: -20px;
}



.jvc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--g);
}

.jvc-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}

.jv-card-1 div:last-child strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--text);
}

.jv-card-1 div:last-child span {
  font-size: 11px; color: var(--text-3);
}

.jvc-stat { padding-left: 16px; border-left: 2px solid var(--g-pale); }
.jvc-stat strong {
  display: block; font-size: 22px; font-weight: 900;
  color: var(--g); line-height: 1;
}
.jvc-stat span { font-size: 11px; color: var(--text-3); }

.jvc-mini-chart {
  display: flex; align-items: flex-end; gap: 4px;
  height: 40px; padding-left: 12px;
}

.mc-bar {
  width: 8px; border-radius: 3px 3px 0 0;
  height: var(--h);
  background: var(--g-pale);
  transition: background var(--t-fast);
}

.mc-bar-active { background: var(--g); }

.jv-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
  opacity: 0.15;
}

.jv-orb-1 {
  width: 200px; height: 200px;
  background: var(--g);
  bottom: 0; right: 20px;
}

.jv-orb-2 {
  width: 120px; height: 120px;
  background: var(--gold);
  top: 0; left: 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark-4);
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--border-dark);
}

.ft-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}

.ft-logo svg { width: 28px; height: 36px; fill: var(--g); }

.ft-logo span {
  font-size: 18px; font-weight: 800;
  color: var(--white);
  font-family: 'Amiri', serif;
}

.ft-brand p {
  font-size: 14px; color: rgba(255,255,255,0.35);
  line-height: 1.8; margin-bottom: 24px;
  max-width: 280px;
}

.ft-social {
  display: flex; gap: 10px;
}

.ft-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast);
}

.ft-social a:hover {
  background: var(--g);
  border-color: var(--g);
  color: var(--white);
  transform: translateY(-2px);
}

.ft-social a svg { width: 16px; height: 16px; fill: currentColor; }

.ft-nav-col h5 {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.ft-nav-col a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  transition: color var(--t-fast), transform var(--t-fast);
  position: relative;
}

.ft-nav-col a::before {
  content: '';
  display: inline-block;
  width: 0; height: 1px;
  background: var(--g);
  vertical-align: middle;
  margin-left: 0;
  transition: width var(--t-fast), margin-left var(--t-fast);
  opacity: 0;
}

.ft-nav-col a:hover {
  color: var(--white);
  transform: translateX(-4px);
}

.ft-nav-col a:hover::before {
  width: 8px; margin-left: 6px;
  opacity: 1;
}

.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px; color: rgba(255,255,255,0.2);
}

/* ── SUCCESS MODAL ── */
.success-modal {
  position: fixed; inset: 0;
  background: rgba(10,15,13,0.8);
  backdrop-filter: blur(8px);
  z-index: 9990;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
}

.success-modal.open {
  opacity: 1; visibility: visible;
}

.sm-box {
  background: var(--dark-2);
  border: 1px solid rgba(3,133,59,0.2);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  text-align: center; max-width: 380px; width: 90%;
  transform: scale(0.9);
  transition: transform var(--t-med) var(--ease-spring);
}

.success-modal.open .sm-box {
  transform: scale(1);
}

.sm-icon {
  width: 72px; height: 72px;
  background: var(--g-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--g);
}

.sm-icon svg { width: 28px; height: 28px; fill: currentColor; }

.sm-box h3 {
  font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 10px;
}

.sm-box p {
  font-size: 14px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 28px;
}

.sm-box button {
  padding: 12px 32px;
  background: var(--g); border: none;
  border-radius: var(--r-full);
  color: var(--white); font-size: 15px; font-weight: 700;
  transition: background var(--t-fast);
  cursor: pointer;
}

.sm-box button:hover { background: var(--g-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-center { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .nav-btn { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visual-col { display: none; }

  .vision-inner { grid-template-columns: 1fr; gap: 48px; }

  .htl-content, .htl-step-rev .htl-content {
    flex-direction: column; gap: 28px;
  }
  .htl-img { max-width: 100%; width: 100%; }
  .how-timeline::before { display: none; }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ic-big { min-height: 240px; }
  .ic-wide { grid-column: span 2; }

  .aud-grid { grid-template-columns: 1fr; }

  .join-inner { grid-template-columns: 1fr; }
  .join-visual { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero-inner { padding: 0 24px; padding-top: 100px; padding-bottom: 120px; }
  .nav { padding: 0 24px; }
  .section-tag, [data-reveal] { transition-delay: 0s !important; }

  .about-inner, .vision-inner, .how-inner, .impact-inner,
  .aud-inner, .join-inner, .footer-inner { padding: 72px 24px; }

  .preview-scroll-area { padding: 16px 24px 32px; }
  .preview-header { padding: 0 24px; }

  .impact-grid { grid-template-columns: 1fr; }
  .ic-big, .ic-wide { grid-column: span 1; }
  .ic-wide { flex-direction: column; }

  .aud-extra { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero-scroll { right: 24px; bottom: 90px; }

  .htl-step, .htl-step-rev { flex-direction: column; padding: 32px 0; }

  .aimg-badge, .aimg-counter-card { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .hstat-sep { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .ht-word { font-size: 52px; }
  .ht-word-outline-gold { font-size: 38px; }
}

/* ── SPECIAL EFFECTS ── */

/* Smooth section transitions */
section {
  position: relative;
}

/* Text selection */
::selection {
  background: rgba(3,133,59,0.25);
  color: var(--text);
}

/* Print hiding */
@media print {
  .grain, .loader { display: none; }
}

/* High contrast mode support */
@media (forced-colors: active) {
  .ht-word-outline, .ht-word-outline-gold { 
    -webkit-text-stroke: 2px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.2s !important;
  }
}

/* Content visibility for performance */
.about, .vision, .how, .impact, .preview, .audience, .join {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

/* Counter numbers */
.cnt, .cnt-impact {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Hover focus states for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--g);
  outline-offset: 2px;
}

/* Responsive text scaling utilities */
@media (max-width: 600px) {
  .hero-title .ht-word {
    font-size: 56px;
  }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 16px; }
  .hstat-num { font-size: 26px; }
}