/* ============================================================
   Growix shared styles (extracted from inline <style> + attributes)
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-primary: #2d7a2d;
  --green-light: #4caf50;
  --green-bright: #6fcf4a;
  --green-neon: #a8f060;
  --gold: #c9a84c;
  --gold-light: #e8c96b;
  --bg-dark: #0d1f0d;
  --bg-section: #111d11;
  --bg-card: rgba(255,255,255,0.05);
  --text-primary: #f0f4f0;
  --text-secondary: #b0c8b0;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(111,207,74,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Page variants */
body.thanks {
  height: 100%;
  overflow: hidden; /* no-scroll */
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--green-primary); border-radius: 3px; }

/* ══════════════════════════════════════
   GLOBAL BACKGROUND CANVAS + OVERLAYS
══════════════════════════════════════ */
#bgCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Subtle grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,207,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,207,74,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

/* Noise texture for depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* All content above bg */
nav, section, footer, .hero, .page {
  position: relative;
  z-index: 2;
}

/* Shared layout helpers */
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 1200px; margin: 0 auto; }
.muted-lead {
  color: var(--text-secondary);
  max-width: 360px;
  font-size: 16px;
  line-height: 1.6;
}

/* Scroll animation delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-15 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Small utilities extracted from inline styles */
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mb-36 { margin-bottom: 36px; }
.center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.inline-flex { display: inline-flex; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,31,13,0.6);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(111,207,74,0.12);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 12px 5%;
  background: rgba(13,31,13,0.88);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  font-size: 26px;
  filter: drop-shadow(0 0 10px rgba(111,207,74,0.6));
}
.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg,#a8f060,#c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--green-neon); }

.nav-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 20px rgba(76,175,80,0.35);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(76,175,80,0.55) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

/* Big radial glows */
.hero-glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,122,45,0.35) 0%, rgba(111,207,74,0.12) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-breathe 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 65%);
  bottom: 10%; right: 5%;
  animation: glow-drift 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-3 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(111,207,74,0.12) 0%, transparent 65%);
  top: 15%; left: 8%;
  animation: glow-drift 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes glow-breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  50%       { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}
@keyframes glow-drift {
  0%, 100% { transform: translate(0,0); }
  33%       { transform: translate(20px,-15px); }
  66%       { transform: translate(-15px,20px); }
}

/* Floating leaf particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.leaf-particle {
  position: absolute;
  font-size: var(--leaf-size, 20px);
  left: var(--leaf-left, 0%);
  animation: leaf-fall linear infinite;
  animation-duration: var(--leaf-duration, 12s);
  animation-delay: var(--leaf-delay, 0s);
  opacity: 0;
  filter: blur(var(--leaf-blur, 0.5px));
}
@keyframes leaf-fall {
  0%   { transform: translateY(-5vh) rotate(0deg) scale(0.8); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(105vh) rotate(720deg) scale(1.2); opacity: 0; }
}

/* Aurora bands */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora-band {
  position: absolute;
  width: 200%;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  animation: aurora-move ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}
.aurora-band-1 {
  background: linear-gradient(90deg, transparent, rgba(45,122,45,0.25), rgba(111,207,74,0.18), transparent);
  top: 20%;
  animation-duration: 12s;
  animation-delay: 0s;
}
.aurora-band-2 {
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.12), rgba(111,207,74,0.15), transparent);
  top: 55%;
  animation-duration: 16s;
  animation-delay: -5s;
}
.aurora-band-3 {
  background: linear-gradient(90deg, transparent, rgba(111,207,74,0.1), rgba(168,240,96,0.12), transparent);
  top: 75%;
  animation-duration: 20s;
  animation-delay: -9s;
}
@keyframes aurora-move {
  0%   { transform: translateX(-60%) skewY(-3deg); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.7; }
  100% { transform: translateX(40%) skewY(3deg); opacity: 0; }
}

.hero-content { text-align: center; position: relative; z-index: 3; max-width: 820px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,207,74,0.12);
  border: 1px solid rgba(111,207,74,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--green-neon);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fade-up 0.8s ease both;
  box-shadow: 0 0 20px rgba(111,207,74,0.1);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-neon), 0 0 20px var(--green-neon);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

.hero-emoji {
  font-size: 88px;
  margin-bottom: 10px;
  animation: fade-up 0.9s ease 0.1s both;
  display: block;
  filter: drop-shadow(0 0 30px rgba(111,207,74,0.5));
}

.hero h1 {
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  animation: fade-up 1s ease 0.15s both;
}
.green-text {
  background: linear-gradient(135deg, #a8f060 0%, #6fcf4a 40%, #e8c96b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(111,207,74,0.4));
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-up 1s ease 0.25s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 1s ease 0.35s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 30px rgba(76,175,80,0.4), 0 0 60px rgba(76,175,80,0.1);
  transition: all 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 44px rgba(76,175,80,0.55), 0 0 80px rgba(76,175,80,0.15);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: rgba(111,207,74,0.5);
  color: var(--green-neon);
  transform: translateY(-3px);
  background: rgba(111,207,74,0.06);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fade-up 1s ease 0.6s both;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--green-neon), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════
   SECTION BACKGROUNDS — each unique
══════════════════════════════════════ */
.section-about {
  background:
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(45,122,45,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 65%),
    var(--bg-section);
}
.section-mission {
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(111,207,74,0.1) 0%, transparent 60%),
    var(--bg-dark);
}
.section-products {
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(45,122,45,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(168,240,96,0.07) 0%, transparent 60%),
    var(--bg-section);
}
.section-why {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(111,207,74,0.1) 0%, transparent 65%),
    var(--bg-dark);
}
.section-approach {
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(45,122,45,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 15% 20%, rgba(201,168,76,0.07) 0%, transparent 60%),
    var(--bg-section);
}
.section-team {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(111,207,74,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 90%, rgba(45,122,45,0.12) 0%, transparent 60%),
    var(--bg-dark);
}
.section-vision {
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(45,122,45,0.2) 0%, transparent 65%),
    var(--bg-section);
}
.section-contact {
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(111,207,74,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(201,168,76,0.08) 0%, transparent 60%),
    var(--bg-dark);
}

/* ── SECTION BASE ── */
section { padding: 100px 5%; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 580px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-card-3d {
  background: linear-gradient(135deg, rgba(45,122,45,0.18), rgba(111,207,74,0.06));
  border: 1px solid rgba(111,207,74,0.22);
  border-radius: 28px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
  box-shadow: 0 0 40px rgba(45,122,45,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}
.about-card-3d:hover {
  transform: perspective(800px) rotateY(-6deg) rotateX(3deg);
  box-shadow: 0 0 60px rgba(45,122,45,0.25);
}
.about-icon-big { font-size: 64px; margin-bottom: 24px; display: block; }
.about-card-3d h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.about-card-3d p { color: var(--text-secondary); line-height: 1.65; font-size: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.stat-item {
  background: rgba(111,207,74,0.07);
  border: 1px solid rgba(111,207,74,0.15);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}
.stat-number {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-neon), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

/* ── MISSION ── */
.mission-header { text-align: center; margin-bottom: 72px; }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.mission-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,207,74,0.16);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.mission-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(111,207,74,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.mission-card:hover { transform: translateY(-10px); border-color: rgba(111,207,74,0.35); }
.mission-card:hover::before { opacity: 1; }
.mission-card:hover::after { opacity: 1; }
.mission-icon { font-size: 44px; margin-bottom: 20px; display: block; }
.mission-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.mission-card p { color: var(--text-secondary); line-height: 1.65; font-size: 15px; }

/* ── PRODUCTS ── */
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px 36px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(111,207,74,0.08) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover {
  border-color: rgba(111,207,74,0.3);
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(111,207,74,0.12), 0 0 40px rgba(45,122,45,0.12);
}
.product-card:hover::before { opacity: 1; }
.product-emoji { font-size: 48px; margin-bottom: 20px; display: block; }
.product-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.product-card p { color: var(--text-secondary); line-height: 1.65; font-size: 15px; }
.product-tag {
  display: inline-block;
  margin-top: 20px;
  background: rgba(111,207,74,0.1);
  border: 1px solid rgba(111,207,74,0.25);
  color: var(--green-neon);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

/* ── WHY ── */
.why-header { text-align: center; margin-bottom: 72px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-item {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,207,74,0.14);
  border-radius: 20px;
  transition: all 0.35s;
}
.why-item:hover {
  transform: translateY(-7px);
  border-color: rgba(111,207,74,0.35);
  background: rgba(45,122,45,0.08);
  box-shadow: 0 16px 40px rgba(45,122,45,0.12);
}
.why-check {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  box-shadow: 0 4px 24px rgba(76,175,80,0.35);
}
.why-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ── APPROACH ── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.approach-steps { display: flex; flex-direction: column; gap: 18px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,207,74,0.14);
  border-radius: 18px;
  transition: all 0.3s;
}
.step:hover {
  border-color: rgba(111,207,74,0.35);
  transform: translateX(8px);
  background: rgba(45,122,45,0.07);
  box-shadow: -4px 0 20px rgba(111,207,74,0.1);
}
.step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-bright));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 14px rgba(76,175,80,0.35);
}
.step-content h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* 3D Orb */
.glow-orb {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(45,122,45,0.35) 0%, rgba(111,207,74,0.12) 40%, transparent 70%);
  border-radius: 50%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: orb-pulse 5s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%       { transform: scale(1.06); filter: brightness(1.2); }
}
.glow-orb-inner {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(45,122,45,0.5) 0%, rgba(45,122,45,0.15) 55%, transparent);
  border-radius: 50%;
  border: 1px solid rgba(111,207,74,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  box-shadow: 0 0 80px rgba(45,122,45,0.4), inset 0 0 40px rgba(45,122,45,0.2);
}
.orbit {
  position: absolute;
  border: 1px dashed rgba(111,207,74,0.2);
  border-radius: 50%;
  animation: orbit-spin linear infinite;
}
.orbit-1 { width: 300px; height: 300px; animation-duration: 10s; }
.orbit-2 { width: 360px; height: 360px; animation-duration: 17s; animation-direction: reverse; }
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.orbit-dot {
  width: 9px; height: 9px;
  background: var(--green-neon);
  border-radius: 50%;
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--green-neon), 0 0 24px var(--green-neon);
}
.orbit-dot-gold {
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold-light), 0 0 24px var(--gold-light);
}

/* ── TEAM ── */
.team-header { text-align: center; margin-bottom: 72px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,207,74,0.14);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-neon), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.team-card:hover {
  transform: translateY(-9px);
  border-color: rgba(111,207,74,0.3);
  box-shadow: 0 20px 50px rgba(45,122,45,0.15);
}
.team-card:hover::before { transform: scaleX(1); }
.team-emoji { font-size: 52px; margin-bottom: 16px; display: block; }
.team-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ── VISION ── */
.vision-inner { max-width: 1200px; margin: 0 auto; }
.vision-banner {
  background: linear-gradient(135deg, rgba(45,122,45,0.25), rgba(111,207,74,0.1), rgba(201,168,76,0.1));
  border: 1px solid rgba(111,207,74,0.25);
  border-radius: 36px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(45,122,45,0.2), inset 0 1px 0 rgba(255,255,255,0.07);
}
.vision-banner::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(111,207,74,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.vision-banner h2 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.vision-banner p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.vision-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.vision-tag {
  background: rgba(111,207,74,0.1);
  border: 1px solid rgba(111,207,74,0.22);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s;
}
.vision-tag:hover {
  background: rgba(111,207,74,0.16);
  border-color: rgba(111,207,74,0.4);
}

/* ── CONTACT ── */
.contact-inner { max-width: 1200px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 72px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,207,74,0.14);
  border-radius: 18px;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-primary);
}
.contact-item:hover {
  border-color: rgba(111,207,74,0.4);
  transform: translateX(6px);
  background: rgba(45,122,45,0.08);
  box-shadow: 0 8px 30px rgba(45,122,45,0.12);
}
.contact-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(76,175,80,0.3);
}
.contact-item-text { font-size: 15px; font-weight: 500; }
.contact-item-sub { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
.socials { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.social-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,207,74,0.14);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s;
}
.social-link:hover {
  border-color: rgba(111,207,74,0.35);
  transform: translateX(5px);
  background: rgba(45,122,45,0.07);
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.social-icon--fb { background: rgba(24,119,242,0.15); }
.social-icon--yt { background: rgba(255,0,0,0.12); }
.social-icon--tt { background: rgba(255,255,255,0.06); }
.social-name { font-size: 14px; font-weight: 500; }
.social-handle { font-size: 12px; color: var(--text-secondary); }

/* Contact form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,207,74,0.18);
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 0 40px rgba(45,122,45,0.08);
}
.contact-form h3 { font-size: 22px; font-weight: 600; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px; letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group select option { background: #111d11; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(111,207,74,0.5);
  box-shadow: 0 0 0 3px rgba(111,207,74,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: #fff; border: none;
  padding: 16px; border-radius: 50px;
  font-size: 16px; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 6px 26px rgba(76,175,80,0.35);
  margin-top: 8px; font-family: inherit;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(76,175,80,0.5); }
.form-success { display: none; text-align: center; padding: 24px; color: var(--green-neon); font-size: 16px; font-weight: 500; }

/* ── FOOTER ── */
footer {
  background: #070e07;
  border-top: 1px solid rgba(111,207,74,0.1);
  padding: 52px 5% 36px;
  position: relative; z-index: 2;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.footer-tagline { font-size: 14px; color: var(--text-secondary); max-width: 280px; line-height: 1.55; margin-top: 10px; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color 0.25s; }
.footer-nav a:hover { color: var(--green-neon); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-made { color: rgba(111,207,74,0.5); font-size: 13px; }

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 8px rgba(111,207,74,0.5));
}
.footer-brand-text {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg,#a8f060,#c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   THANK YOU PAGE (extracted from thanks.html)
══════════════════════════════════════ */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 5%;
}
.thanks-card {
  width: min(720px, 100%);
  background: linear-gradient(135deg, rgba(45,122,45,0.18), rgba(111,207,74,0.06));
  border: 1px solid rgba(111,207,74,0.22);
  border-radius: 28px;
  padding: 44px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(45,122,45,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
  display: grid;
  gap: 18px;
  text-align: center;
}
.thanks-check {
  width: 96px;
  height: 96px;
  margin: 0 auto 4px;
  filter: drop-shadow(0 0 30px rgba(111,207,74,0.35));
}
.thanks-card h1 {
  font-size: clamp(26px, 4.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.thanks-card p {
  font-size: clamp(15px, 2.4vw, 17px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 58ch;
  margin: 0 auto;
}
.thanks-note {
  background: rgba(111,207,74,0.07);
  border: 1px solid rgba(111,207,74,0.15);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.55;
}
.thanks-btn {
  width: min(320px, 100%);
  margin: 8px auto 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand strong {
  color: var(--green-neon);
  font-weight: 600;
  letter-spacing: 0.15em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .approach-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid, .why-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-links { display: none; }
  .footer-top { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .mission-grid, .why-grid, .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .vision-banner { padding: 48px 24px; }
  .contact-form { padding: 30px 22px; }
  .thanks-card { padding: 30px 22px; }
  .thanks-check { width: 84px; height: 84px; }
}