/* ========================================
   NIDAEDOUAR — Farmonaut-style Dark AgriTech
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-2: #f7f9f7;
  --bg-3: #eef3ee;
  --bg-card: rgba(255, 255, 255, 0.7);
  --border: rgba(13, 59, 29, 0.07);
  --border-strong: rgba(13, 59, 29, 0.14);
  --border-glass: rgba(255, 255, 255, 0.5);
  --text: #0a1a0d;
  --text-muted: #3d5246;
  --text-dim: #8aab96;
  --green: #0d3b1d;
  --green-light: #1a6b35;
  --green-dark: #071f0f;
  --green-accent: #2d9a50;
  --amber: #d97706;
  --amber-dark: #92400e;
  --blue: #1d4ed8;
  --red: #dc2626;
  --pink: #db2777;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 6px -1px rgba(13, 59, 29, 0.06), 0 2px 4px -1px rgba(13, 59, 29, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(13, 59, 29, 0.10), 0 4px 6px -2px rgba(13, 59, 29, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(13, 59, 29, 0.10), 0 10px 10px -5px rgba(13, 59, 29, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(13, 59, 29, 0.15);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', 'Space Grotesk', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-ar: 'Noto Sans Arabic', 'Tajawal', sans-serif;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

/* Premium Mesh Gradient BG */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(at 0% 0%, rgba(13, 59, 29, 0.06) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(217, 119, 6, 0.04) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(13, 59, 29, 0.04) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(13, 59, 29, 0.06) 0px, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

html[dir="rtl"] body,
html[dir="rtl"] * {
  font-family: var(--font-ar) !important;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ===== Animated Blob Decoration ===== */
.blob-decoration {
  position: fixed;
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.blob-1 { top: -200px; right: -200px; }

/* ===== Gradient Text ===== */
.text-gradient {
  background: linear-gradient(135deg, #0d3b1d 0%, #1a6b35 45%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-left { text-align: left; }
html[dir="rtl"] .text-left { text-align: right; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  animation: logoFloat 3s ease-in-out infinite;
}
.logo-img-crop {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.logo-img-crop img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  transform: scale(1.15) translateY(-8%);
  transform-origin: top center;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-2px) rotate(5deg); }
}
.logo-text { color: var(--text); }
.logo-accent {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
html[dir="rtl"] .nav-links { margin-left: 0; margin-right: auto; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.navbar.scrolled .nav-links a { color: var(--text); text-shadow: none; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== Language Switcher ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.navbar.scrolled .lang-switcher {
  background: rgba(0,0,0,0.03);
  border-color: var(--border);
  color: var(--text);
  text-shadow: none;
}
.lang-switcher:hover {
  background: rgba(13,59,29,0.08);
  border-color: rgba(13,59,29,0.3);
}
.lang-flag { font-size: 16px; line-height: 1; font-family: 'Segoe UI Emoji','Apple Color Emoji','Noto Color Emoji',sans-serif !important; }
.lang-switcher svg { opacity: 0.6; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px;
}
.mobile-link {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-display);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 15px 28px; font-size: 15px; }

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,59,29,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,59,29,0.5);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }

.btn-glow { animation: btnGlow 2.5s ease-in-out infinite; }
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(13,59,29,0.3); }
  50% { box-shadow: 0 8px 30px rgba(13,59,29,0.6), 0 0 0 8px rgba(13,59,29,0.08); }
}

.btn-ghost {
  background: rgba(0,0,0,0.03);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.06);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  background: rgba(13,59,29,0.08);
  border-color: var(--green);
}

.btn-block { width: 100%; }
.arrow-icon { transition: transform 0.3s; }
.btn:hover .arrow-icon { transform: translateX(4px); }
html[dir="rtl"] .arrow-icon { transform: scaleX(-1); }
html[dir="rtl"] .btn:hover .arrow-icon { transform: scaleX(-1) translateX(4px); }

/* ========================================
   HERO — Award-winning redesign
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #071f0f;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) brightness(0.45);
  animation: heroZoom 28s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.07); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,20,12,0.95) 0%, rgba(7,20,12,0.80) 50%, rgba(7,20,12,0.55) 100%);
}
.hero-grain { position: absolute; inset: 0; opacity: 0.2; pointer-events: none; mix-blend-mode: overlay; }
.hero-grid-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hgl { position: absolute; background: rgba(255,255,255,0.035); }
.hgl-v1 { left: 25%; top: 0; bottom: 0; width: 1px; }
.hgl-v2 { left: 50%; top: 0; bottom: 0; width: 1px; }
.hgl-v3 { left: 75%; top: 0; bottom: 0; width: 1px; }
.hgl-h1 { top: 33%; left: 0; right: 0; height: 1px; }
.hgl-h2 { top: 66%; left: 0; right: 0; height: 1px; }
.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 160px 0 80px;
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge-live-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: livePing 2s infinite;
  flex-shrink: 0;
}
@keyframes livePing {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.badge-flag { font-size: 16px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
  display: block;
}
.ht-line { display: block; }
.ht-accent {
  background: linear-gradient(135deg, #4ade80 0%, #a3e635 55%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: 1.1em;
  display: block;
}
.typed-text { display: inline; }
.typed-cursor {
  display: inline-block;
  color: #4ade80;
  animation: blink 1s step-end infinite;
  -webkit-text-fill-color: #4ade80;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.split-text { display: inline-block; }
.hero-desc {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255,255,255,0.58);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: #ffffff;
  color: #071f0f;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255,255,255,0.18);
  background: #f0fdf4;
}
.btn-hero-primary .arrow-icon { transition: transform 0.3s; }
.btn-hero-primary:hover .arrow-icon { transform: translateX(4px); }
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.1);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-logos { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.trust-item { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.42); letter-spacing: 0.04em; }
.trust-sep { color: rgba(255,255,255,0.18); }

/* Tech badges (replace fake stats) */
.hero-tech-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.hero-tech-icon { font-size: 14px; line-height: 1; }

/* =====================
   PHONE MOCKUP 3D (Replaces Bento)
   ===================== */
.hero-phone-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  height: 100%;
  perspective: 1500px; /* Strong 3D depth */
}

.phone-hand-wrapper {
  position: relative;
  width: 380px;
  height: 760px;
  transform-style: preserve-3d;
  transform: scale(0.88) rotateY(-20deg) rotateX(6deg) rotateZ(2deg) translateY(-20px);
  animation: floatPhone3D 6s ease-in-out infinite;
  transform-origin: center right;
  z-index: 10;
}
/* In RTL (Arabic), phone faces the other side */
html[dir="rtl"] .phone-hand-wrapper {
  transform: scale(0.88) rotateY(20deg) rotateX(6deg) rotateZ(-2deg) translateY(-20px);
  animation: floatPhone3DRtl 6s ease-in-out infinite;
  transform-origin: center left;
}

@keyframes floatPhone3D {
  0%, 100% { transform: scale(0.88) rotateY(-20deg) rotateX(6deg) rotateZ(2deg) translateY(-20px) translateX(0); }
  50% { transform: scale(0.88) rotateY(-16deg) rotateX(3deg) rotateZ(1deg) translateY(-6px) translateX(-12px); }
}
@keyframes floatPhone3DRtl {
  0%, 100% { transform: scale(0.88) rotateY(20deg) rotateX(6deg) rotateZ(-2deg) translateY(-20px) translateX(0); }
  50% { transform: scale(0.88) rotateY(16deg) rotateX(3deg) rotateZ(-1deg) translateY(-6px) translateX(12px); }
}

.phone-glow {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-40px);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(74, 222, 128, 0.4) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.phone-iframe {
  position: relative;
  width: 380px;
  height: 760px;
  border: none;
  z-index: 2;
  background: transparent;
  pointer-events: auto;
  transform: translateZ(20px);
  filter: drop-shadow(-30px 40px 40px rgba(0,0,0,0.6)) drop-shadow(-10px 15px 15px rgba(0,0,0,0.4));
}

/* RTL Hero Layout Swapper (Arabic) */
html[dir="rtl"] .hero-inner {
  display: flex !important;
  flex-direction: row !important;
  direction: rtl !important;
  justify-content: space-between;
}
html[dir="rtl"] .hero-inner .hero-content {
  order: 1 !important; /* Forces Text to the Right in RTL */
  width: 48%;
  text-align: right; /* Ensure text alignment is right */
}
html[dir="rtl"] .hero-inner .hero-phone-container {
  order: 2 !important; /* Forces Phone to the Left in RTL */
  width: 48%;
  justify-content: flex-end !important; /* Align phone to the far left of its flex container */
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0.35;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  margin: 0 auto;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(8px); opacity: 0; }
}

/* MARQUEE */
.hero-marquee {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── RTL hero: phone on left, text on right ── */
html[dir="rtl"] .hero-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}
html[dir="rtl"] .hero-phone-container {
  order: 1 !important;
  flex: 1 !important;
  justify-content: flex-start !important;
}
html[dir="rtl"] .hero-content {
  order: 2 !important;
  flex: 1 !important;
  text-align: right !important;
}
/* Fix Arabic title overflow clipping */
html[dir="rtl"] .hero-title {
  overflow: visible;
  line-height: 1.15;
  padding-bottom: 8px;
}
html[dir="rtl"] .ht-accent {
  overflow: visible;
  padding-bottom: 4px;
}
html[dir="rtl"] .hero-inner {
  padding-bottom: 100px;
}

/* Hero responsive */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 140px 0 40px; }
  .hero-bento { height: 400px; }
  .hero-desc { max-width: 100%; }
}
@media (max-width: 768px) {
  .hero-inner { text-align: center; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-bento { grid-template-columns: 1fr 1fr; height: 360px; }
  .bento-scan { grid-column: 1 / 3; grid-row: 1; }
  .bento-voice { grid-column: 1; grid-row: 2; }
  .bento-alert { grid-column: 2; grid-row: 2; }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .hero-bento { grid-template-columns: 1fr; height: auto; }
  .bento-scan { grid-column: 1; height: 220px; }
  .bento-voice, .bento-alert { grid-column: 1; }
}


/* ===== 3D Orbital Ticker (Eclipse Effect) ===== */
.orbital-ticker-system {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.15); /* Maximum transparency */
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  perspective: 1200px;
  z-index: 3;
}

.orbital-ring-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-phrase {
  position: absolute;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.35); /* Transparency sync */
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  pointer-events: none;
  animation: orbitalEclipse 35s linear infinite;
  animation-delay: calc(var(--i) * -5s);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  box-shadow: var(--shadow-sm);
}

@keyframes orbitalEclipse {
  0% {
    transform: rotateY(0deg) translateZ(320px) scale(1);
    opacity: 1;
    z-index: 10;
  }
  25% {
    transform: rotateY(90deg) translateZ(320px) scale(0.9);
    opacity: 0.7;
    z-index: 5;
  }
  50% {
    transform: rotateY(180deg) translateZ(320px) scale(0.75);
    opacity: 0.4;
    z-index: 1;
  }
  75% {
    transform: rotateY(270deg) translateZ(320px) scale(0.9);
    opacity: 0.7;
    z-index: 5;
  }
  100% {
    transform: rotateY(360deg) translateZ(320px) scale(1);
    opacity: 1;
    z-index: 10;
  }
}

.orbital-phrase .ticker-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
}

/* Pause on hover for readability */
.orbital-ticker-system:hover .orbital-phrase {
  animation-play-state: paused;
  cursor: pointer;
  pointer-events: auto;
}

/* Mobile fallback: simpler horizontal scroll if 3D is too much or too wide */
@media (max-width: 768px) {
  .orbital-phrase {
    animation-duration: 20s;
    font-size: 12px;
  }
  @keyframes orbitalEclipse {
    0% { transform: rotateY(0deg) translateZ(280px) scale(1); opacity: 1; }
    50% { transform: rotateY(180deg) translateZ(280px) scale(0.7); opacity: 0.2; }
    100% { transform: rotateY(360deg) translateZ(280px) scale(1); opacity: 1; }
  }
}

/* ========================================
   PARTNERS MARQUEE
   ======================================== */
.partners-section {
  padding: 48px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.partners-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: partnersScroll 30s linear infinite;
  width: max-content;
}
.partner-item {
  color: var(--text-muted);
  opacity: 0.6;
  transition: all 0.3s;
  flex-shrink: 0;
}
.partner-item:hover { opacity: 1; color: var(--text); }
@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,59,29,0.12), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

.hex-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='104' viewBox='0 0 60 104' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 2 L56 17 L56 47 L30 62 L4 47 L4 17 Z' stroke='%230d3b1d' stroke-opacity='0.08' fill='none'/%3E%3Cpath d='M30 54 L56 69 L56 99 L30 114 L4 99 L4 69 Z' stroke='%230d3b1d' stroke-opacity='0.08' fill='none'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(13,59,29,0.1);
  border: 1px solid rgba(13,59,29,0.25);
  color: var(--green-light);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   PROBLEM GRID
   ======================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239,68,68,0.08), transparent);
  opacity: 0;
  transition: 0.35s;
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,68,68,0.3);
}
.problem-card:hover::before { opacity: 1; }
.problem-card-icon {
  width: 48px; height: 48px;
  background: rgba(239,68,68,0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.problem-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========================================
   SPLIT SECTION (Solution)
   ======================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-image {
  position: relative;
}
.split-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
  aspect-ratio: 4/5;
}
.split-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-white-card {
  background: var(--bg-card);
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  position: relative;
}
.demo-white-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.image-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 20px var(--green);
  animation: scanLine 3s ease-in-out infinite;
}
@keyframes scanLine {
  0%, 100% { top: 0; opacity: 0; }
  50% { top: 100%; opacity: 1; }
}
.image-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,0.7));
  pointer-events: none;
}

.scan-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--green);
  pointer-events: none;
  animation: scanPulse 2s ease-in-out infinite;
}
.scan-corner-tl {
  top: 20px; left: 20px;
  border-right: none; border-bottom: none;
  border-top-left-radius: 8px;
}
.scan-corner-tr {
  top: 20px; right: 20px;
  border-left: none; border-bottom: none;
  border-top-right-radius: 8px;
}
.scan-corner-bl {
  bottom: 20px; left: 20px;
  border-right: none; border-top: none;
  border-bottom-left-radius: 8px;
}
.scan-corner-br {
  bottom: 20px; right: 20px;
  border-left: none; border-top: none;
  border-bottom-right-radius: 8px;
}
@keyframes scanPulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 0 0 rgba(13,59,29,0.4); }
  50% { opacity: 1; box-shadow: 0 0 0 6px rgba(13,59,29,0); }
}

.split-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13,59,29,0.3);
  border-radius: 100px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
}

.split-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin: 16px 0 32px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sol-feature {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s;
}
.sol-feature:hover {
  background: rgba(13,59,29,0.05);
  border-color: rgba(13,59,29,0.3);
  transform: translateX(4px);
}
.sol-feature-icon {
  width: 40px; height: 40px;
  background: rgba(13,59,29,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sol-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.sol-feature p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.feature-card {
  flex: 1 1 320px;
  max-width: 400px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13,59,29,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(13,59,29,0.15), rgba(13,59,29,0.05));
  border: 1px solid rgba(13,59,29,0.2);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform 0.35s var(--ease);
}
.feature-card:hover .feature-card-icon {
  transform: rotate(-6deg) scale(1.05);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ========================================
   BEFORE / AFTER SLIDER
   ======================================== */
.before-after-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.ba-container {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s linear;
}
.ba-label {
  position: absolute;
  top: 20px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.ba-label-before { left: 20px; color: var(--amber-dark); }
.ba-label-after { right: 20px; color: var(--green-dark); }
.ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-slider-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--green), transparent);
  box-shadow: 0 0 20px var(--green);
}
.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 0 0 4px rgba(13,59,29,0.3);
  cursor: ew-resize;
  pointer-events: auto;
}
.ba-slider-handle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(13,59,29,0.3);
  animation: handlePulse 2s ease-out infinite;
}
@keyframes handlePulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ========================================
   STEPS
   ======================================== */
.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  transition: 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13,59,29,0.3);
}
.step-num-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}
.step-num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  background: rgba(13,59,29,0.1);
  border: 1px solid rgba(13,59,29,0.3);
  border-radius: 50%;
}
.step-pulse {
  position: absolute;
  inset: 0;
  border: 2px solid var(--green);
  border-radius: 50%;
  animation: stepPulse 2s ease-out infinite;
}
@keyframes stepPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.step-icon-wrap {
  margin-bottom: 16px;
  display: grid;
  place-items: center;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 14px;
}
.step-connector {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
html[dir="rtl"] .step-connector svg { transform: scaleX(-1); }
.step-arrow {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: stepDraw 2s ease-out infinite;
}
@keyframes stepDraw {
  0% { stroke-dashoffset: 60; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -60; }
}

/* ========================================
   IMPACT
   ======================================== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.impact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13,59,29,0.3);
}
.impact-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-accent), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
.impact-icon-large { display: none; }
.impact-svg-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,59,29,0.07);
  border-radius: 14px;
  margin-bottom: 16px;
}
.impact-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.impact-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--amber));
  border-radius: 2px;
  transition: width 1.5s var(--ease);
}
.impact-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 6px;
}
.impact-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================================
   TESTIMONIALS CAROUSEL
   ======================================== */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(13,59,29,0.3);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: 'Space Grotesk', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--green);
  line-height: 0.5;
  margin-bottom: 12px;
  opacity: 0.4;
}
.testimonial-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}
.testimonial-rating {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
}
html[dir="rtl"] .testimonial-rating { right: auto; left: 24px; }

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.t-control {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: 0.2s;
}
.t-control:hover {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.1);
  color: #fff;
}
html[dir="rtl"] .t-control svg { transform: scaleX(-1); }
.t-dots {
  display: flex;
  gap: 8px;
}
.t-dot {
  width: 8px;
  height: 8px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  border: none;
}
.t-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: 0.3s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13,59,29,0.2);
}
.pricing-card-featured {
  border: 1px solid var(--green);
  background: linear-gradient(180deg, rgba(13,59,29,0.05), var(--bg-card));
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(13,59,29,0.1);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card-header { margin-bottom: 20px; }
.pricing-card-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pricing-card-header p {
  color: var(--text-muted);
  font-size: 13px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pricing-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(13,59,29,0.15), var(--bg) 60%);
}
.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13,59,29,0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
  animation: ctaGlowPulse 6s ease-in-out infinite;
}
@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0 16px;
}
.cta-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: 0.2s;
}
.footer-social a:hover {
  background: rgba(13,59,29,0.15);
  color: var(--green-light);
  border-color: rgba(13,59,29,0.3);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover { color: var(--green-light); }

/* ========================================
   SCROLL PROGRESS
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  z-index: 200;
  width: 0;
  transition: width 0.1s;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 460px; }
  .split-section { grid-template-columns: 1fr; }
  .problem-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }
  .orbit-ring-3 { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .cta-section { padding: 80px 0; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-float-card { transform: scale(0.85); }
  .float-card-1 { left: -5%; }
  .float-card-2 { right: -5%; }
  .float-card-3 { left: -5%; }
  .orbit-ring-2 { display: none; }
  .problem-grid, .features-grid, .impact-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card { flex: 0 0 100%; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-6px); }
  .scan-corner { width: 28px; height: 28px; }
}
