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

:root {
  --green-900: #052e16;
  --green-800: #064e23;
  --green-700: #0a6930;
  --green-600: #15803d;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-300: #86efac;
  --gold: #d4a84b;
  --gold-light: #f0c870;
  --dark: #040d06;
  --dark-2: #080f0a;
  --dark-3: #0c1a0e;
  --dark-4: #111f14;
  --glass: rgba(15, 40, 20, 0.6);
  --glass-border: rgba(34, 197, 94, 0.2);
  --text-primary: #f0fdf4;
  --text-secondary: #bbf7d0;
  --text-muted: #6ee7b7;
  --font: 'Outfit', sans-serif;
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green-700); border-radius: 3px; }

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(4, 13, 6, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); line-height: 1.1; }
.nav-logo-sub { font-size: 0.65rem; color: var(--green-400); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.nav-links a:not(.nav-cta) {
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--green-400);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom center;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  transform: scaleX(1);
}
.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
  color: var(--green-400);
  background: rgba(34, 197, 94, 0.04);
}
.nav-cta {
  background: linear-gradient(135deg, var(--green-600), var(--green-500)) !important;
  color: white !important; font-weight: 600 !important;
  padding: 10px 22px !important;
}
.nav-cta:hover, .nav-cta.active { 
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.4) !important; 
  transform: translateY(-1px); 
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero_main_1.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: heroAISlideshow 32s infinite;
  transition: background-image 1.5s ease-in-out;
}
@keyframes heroAISlideshow {
  0%, 20% { background-image: url('../img/hero_main_1.png'); }
  25%, 45% { background-image: url('../img/hero_main_2.png'); }
  50%, 70% { background-image: url('../img/hero_main_3.png'); }
  75%, 95% { background-image: url('../img/hero_main_4.png'); }
  100% { background-image: url('../img/hero_main_1.png'); }
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,13,6,0.85) 0%, rgba(4,13,6,0.6) 50%, rgba(5,46,22,0.75) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--green-500); opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%; padding-top: 100px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--green-400);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-400);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-title-green {
  background: linear-gradient(135deg, var(--green-400), var(--green-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary); max-width: 640px;
  margin-bottom: 40px; line-height: 1.7;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white; text-decoration: none;
  padding: 14px 32px; border-radius: 12px;
  font-size: 1rem; font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(34, 197, 94, 0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--glass-border);
  color: var(--text-primary); text-decoration: none;
  padding: 14px 32px; border-radius: 12px;
  font-size: 1rem; font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--green-400); color: var(--green-400); background: rgba(34,197,94,0.08); }

.hero-stats {
  display: flex; gap: 48px; z-index: 2;
  margin-top: 64px;
  animation: fadeInUp 0.8s 0.8s ease both;
}
.hero-stat-value { font-size: 2.2rem; font-weight: 800; color: var(--green-400); display: block; line-height: 1.2; }
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--green-500), transparent); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 5%; scroll-margin-top: 96px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-400); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--green-500); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px;
}
.section-desc {
  color: var(--text-secondary); font-size: 1.05rem; max-width: 640px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-desc { margin: 0 auto; }
.text-green { color: var(--green-400); }

/* ===== ABOUT ===== */
#about { background: var(--dark-2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-top: 60px;
}
.about-image-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.about-image-wrap img { width: 100%; height: auto; display: block; }
.about-image-wrap::before {
  content: ''; position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--green-600), transparent, var(--gold));
  border-radius: var(--radius); z-index: -1;
}
.about-image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(4,13,6,0.9); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 16px 20px;
}
.about-image-badge strong { display: block; font-size: 1.5rem; color: var(--green-400); font-weight: 800; }
.about-image-badge span { font-size: 0.8rem; color: var(--text-muted); }

.about-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.about-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 12px;
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.about-feature:hover { border-color: var(--green-500); transform: translateX(4px); }
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.about-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== ECOSYSTEM ===== */
#ecosystem { background: var(--dark-3); }
.ecosystem-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 64px 0;
  flex-wrap: wrap;
}
.eco-node {
  text-align: center; flex: 1; min-width: 160px; max-width: 220px;
  position: relative; padding: 32px 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}
.eco-node:hover { border-color: var(--green-500); transform: translateY(-8px); box-shadow: 0 24px 64px rgba(34,197,94,0.15); }
.eco-arrow {
  font-size: 1.5rem; color: var(--green-600); flex-shrink: 0;
  padding: 0 8px;
}
.eco-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.eco-name { font-size: 1rem; font-weight: 800; color: var(--green-400); margin-bottom: 4px; }
.eco-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.4; }
.eco-tag {
  display: inline-block; margin-top: 8px;
  background: rgba(34,197,94,0.1); color: var(--green-400);
  border-radius: 100px; padding: 2px 10px; font-size: 0.7rem; font-weight: 600;
}

/* ===== PRODUCTS ===== */
#products { background: var(--dark-2); }
.products-grid { display: flex; flex-direction: column; gap: 80px; margin-top: 64px; }
.product-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.product-card.reverse { direction: rtl; }
.product-card.reverse > * { direction: ltr; }

.product-image-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--dark-3);
}
.product-image-wrap img { width: 100%; height: 420px; object-fit: cover; }
.product-image-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,13,6,0.8) 0%, transparent 50%);
}
.product-number {
  position: absolute; top: 20px; right: 20px;
  font-size: 5rem; font-weight: 900;
  color: rgba(34,197,94,0.08); line-height: 1;
  font-family: var(--font);
}
.product-badge {
  position: absolute; bottom: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(4,13,6,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); border-radius: 100px;
  padding: 6px 14px; font-size: 0.75rem; color: var(--green-400); font-weight: 700;
}

.product-content { padding: 8px 0; }
.product-label {
  display: inline-block; margin-bottom: 12px;
  background: rgba(34,197,94,0.1); color: var(--green-400);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 6px; padding: 4px 12px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.product-title { font-size: 2.4rem; font-weight: 900; margin-bottom: 16px; line-height: 1; }
.product-title sup { font-size: 0.9rem; font-weight: 400; }
.product-subtitle { font-size: 1rem; color: var(--green-400); font-weight: 600; margin-bottom: 16px; }
.product-desc { color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; font-size: 0.95rem; }

.product-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.product-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-primary);
}
.product-feature-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-500);
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
}

/* ===== STATS ===== */
#stats {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--dark-3) 50%, var(--green-900) 100%);
  position: relative; overflow: hidden;
}
#stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.08) 0%, transparent 70%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 60px;
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  overflow: hidden;
}
.stat-card {
  text-align: center; padding: 48px 24px;
  background: var(--glass); transition: var(--transition);
  border-right: 1px solid var(--glass-border);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(34,197,94,0.08); }
.stat-number {
  font-size: 3.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--green-400), var(--green-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; display: block; margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }

/* ===== MISSION ===== */
#mission { background: var(--dark); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.mission-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.mission-image img { width: 100%; height: auto; display: block; }
.mission-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--dark) 100%);
}
.mission-quote {
  border-left: 3px solid var(--green-500);
  padding: 20px 24px; margin: 32px 0;
  background: var(--glass); border-radius: 0 12px 12px 0;
  font-style: italic; font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
}
.mission-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.mission-tag {
  padding: 6px 16px; border-radius: 100px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  font-size: 0.8rem; color: var(--green-400); font-weight: 600;
}

/* ===== CONTACT ===== */
#contact { background: var(--dark-2); }
.contact-wrapper {
  max-width: 800px; margin: 60px auto 0;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 56px;
  backdrop-filter: blur(16px);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(4,13,6,0.8); border: 1.5px solid var(--glass-border);
  border-radius: 10px; padding: 12px 16px;
  color: var(--text-primary); font-family: var(--font); font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--dark-3); }

/* CAPTCHA STYLES */
.captcha-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 10px 0;
}
.captcha-box {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  transition: var(--transition);
}
.captcha-box:hover {
  background: rgba(34, 197, 94, 0.07);
  border-color: rgba(34, 197, 94, 0.3);
}
.captcha-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.captcha-subtext {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-top: 4px;
}
.captcha-action {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(4, 13, 6, 0.5);
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}
.captcha-question {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
#math-quest {
  color: var(--green-400);
  min-width: 60px;
  display: inline-block;
  text-align: center;
}
.math-equal {
  color: var(--text-muted);
}
.captcha-input input {
  width: 80px !important;
  text-align: center;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  padding: 8px !important;
  border-radius: 8px !important;
  background: var(--dark) !important;
  border-color: var(--green-600) !important;
}
.captcha-input input:focus {
  border-color: var(--green-400) !important;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.2) !important;
}

.captcha-refresh-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition);
}
.captcha-refresh-btn:hover {
  color: var(--green-400);
  background: rgba(34, 197, 94, 0.1);
  transform: rotate(30deg);
}

.contact-submit {
  width: 100%; margin-top: 8px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white; border: none; border-radius: 12px;
  padding: 16px; font-family: var(--font); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 8px 32px rgba(34,197,94,0.25);
}
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(34,197,94,0.35); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); border-top: 1px solid var(--glass-border);
  padding: 60px 5% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; font-size: 1rem;
  transition: var(--transition);
}
.footer-social:hover { border-color: var(--green-500); color: var(--green-400); }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--green-400); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--glass-border); padding-top: 24px;
  color: var(--text-muted); font-size: 0.82rem;
}
.footer-bottom a { color: var(--green-400); text-decoration: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
 
/* ===== SWEETALERT CUSTOM STYLES ===== */
.swal2-custom-popup {
  background: rgba(8, 15, 10, 0.98) !important;
  backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(34, 197, 94, 0.25) !important;
  border-radius: 24px !important;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(34, 197, 94, 0.1) !important;
  font-family: 'Outfit', sans-serif !important;
  padding: 2rem !important;
}
.swal2-custom-title {
  color: #f0fdf4 !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
}
.swal2-html-container {
  color: #bbf7d0 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}
.swal2-icon {
  border-width: 2px !important;
}
.swal2-custom-confirm {
  background: linear-gradient(135deg, var(--green-700), var(--green-500)) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 36px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  transition: var(--transition) !important;
}
.swal2-custom-confirm:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4) !important;
}
.swal2-timer-progress-bar {
  background: var(--green-400) !important;
}

/* ===== MOBILE NAV MENU ===== */
.nav-mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(4,13,6,0.98); backdrop-filter: blur(24px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--text-primary); text-decoration: none;
  font-size: 1.5rem; font-weight: 700;
  transition: var(--transition);
}
.nav-mobile-menu a:hover, .nav-mobile-menu a.active { color: var(--green-400); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .about-grid, .mission-grid { grid-template-columns: 1fr; }
  .product-card, .product-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .product-image-wrap img { height: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { margin-top: 40px; gap: 32px; }
}

@media (max-height: 800px) {
  #hero {
    min-height: 100vh;
    height: auto;
    overflow: visible;
    padding-bottom: 80px;
  }
  .hero-content {
    padding-top: 100px;
  }
  .hero-scroll {
    display: none;
  }
}
@media (max-width: 768px) {
  section { padding: 70px 5%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .ecosystem-flow { gap: 8px; }
  .eco-arrow { display: none; }
  .eco-node { min-width: 140px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .contact-wrapper { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
/* ===== PRODUCT PAGES SPECIAL ===== */
.product-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 5% 0;
}
.product-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,13,6,0.6), var(--dark));
}
.product-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.product-details-content {
  padding: 80px 5%;
  background: var(--dark);
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 64px;
}
.detail-item {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  background: var(--glass);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}
.detail-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.detail-item h4 {
  margin-bottom: 8px;
  color: var(--green-400);
}

.sidebar-card {
  background: var(--dark-3);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  margin-bottom: 24px;
}
.sidebar-card h5 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.sidebar-card ul {
  list-style: none;
}
.sidebar-card li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.sidebar-card.gold {
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.1), rgba(4, 13, 6, 0.5));
  border-color: rgba(212, 168, 75, 0.3);
}

/* Partner Link */
.footer-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.partner-link {
  color: var(--green-400);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.partner-link:hover {
  color: var(--green-300);
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .details-grid { grid-template-columns: 1fr; }
}

/* Pitch Slides */
.pitch-slides {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.pitch-slide {
  display: flex;
  gap: 24px;
  background: var(--dark-3);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.pitch-slide:hover {
  transform: translateX(10px);
  border-color: var(--green-500);
}
.slide-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-600);
  opacity: 0.5;
  line-height: 1;
}
.slide-content h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: var(--text-primary);
}
.slide-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== PREMIUM WORLD-CLASS UPGRADES ===== */
/* Premium Gradient Animation for Hero Title */
.hero-title-green {
  background: linear-gradient(135deg, var(--green-400), var(--green-300), var(--green-500), var(--green-400));
  background-size: 300% 300%;
  animation: gradient-shift 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Dynamic Gradient Glow for Primary Buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }

/* Advanced Card Gradients */
.eco-node, .product-image-wrap {
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.eco-node:hover {
  box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.4), 0 24px 64px rgba(34, 197, 94, 0.15);
}

/* ===== INVESTOR PITCH DECK PAGE ===== */

/* Video Hero */
.pitch-hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 120px 5% 80px;
  background: var(--dark);
}
.pitch-hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(34,197,94,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(212,168,75,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.pitch-hero-video .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.pitch-hero-video .hero-badge {
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.pitch-hero-video .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.pitch-hero-video .hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.4s ease both;
}

/* Investor Stats Bar */
.investor-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 60px 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  animation: fadeInUp 0.8s 0.6s ease both;
}
.investor-stat {
  text-align: center;
  padding: 36px 20px;
  background: var(--glass);
  transition: var(--transition);
}
.investor-stat:hover {
  background: rgba(34,197,94,0.08);
}
.investor-stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-400), var(--green-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1.2;
  margin-bottom: 6px;
}
.investor-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* Video Showcase Grid */
.video-showcase {
  padding: 100px 5%;
  background: var(--dark-2);
  position: relative;
}
.video-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(34,197,94,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--dark-3);
  transition: var(--transition);
  aspect-ratio: 16/9;
}
.video-card:hover {
  border-color: var(--green-500);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(34,197,94,0.12);
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}
.video-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(4,13,6,0.95), transparent);
  z-index: 3;
  pointer-events: none;
}
.video-card-label span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Featured Video (Full Width) */
.featured-video {
  max-width: 1000px;
  margin: 60px auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.featured-video:hover {
  border-color: var(--green-500);
  box-shadow: 0 32px 80px rgba(34,197,94,0.15);
}
.featured-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Investor Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-600), transparent);
  margin: 0;
  border: none;
}

/* Revenue Model Cards */
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.revenue-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.revenue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.revenue-card:hover::before {
  transform: scaleX(1);
}
.revenue-card:hover {
  border-color: var(--green-500);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(34,197,94,0.12);
}
.revenue-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.revenue-card h4 {
  color: var(--green-400);
  margin-bottom: 8px;
  font-size: 1rem;
}
.revenue-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Investor CTA Panel */
.investor-cta-panel {
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-900), var(--dark), var(--green-900));
}
.investor-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}
.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(212,168,75,0.3);
  letter-spacing: 0.3px;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212,168,75,0.4);
}

/* Pitch Section */
.pitch-section {
  padding: 100px 5%;
  position: relative;
}
.pitch-section:nth-child(even) {
  background: var(--dark-2);
}
.pitch-section .section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-500), var(--green-700), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding: 28px 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition);
}
.timeline-item:hover {
  border-color: var(--green-500);
  transform: translateX(8px);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 12px rgba(34,197,94,0.5);
}
.timeline-item h4 {
  color: var(--green-400);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.timeline-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Homepage Video Section */
.home-video-showcase {
  padding: 80px 5%;
  background: var(--dark-3);
  position: relative;
  border-top: 1px solid rgba(46,204,64,0.1);
  border-bottom: 1px solid rgba(46,204,64,0.1);
}
.home-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}
.home-video-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 16/9;
  transition: var(--transition);
}
.home-video-card:hover {
  border-color: var(--green-500);
  box-shadow: 0 16px 48px rgba(34,197,94,0.1);
}
.home-video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1200px) {
  .investor-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .investor-stats-bar { grid-template-columns: 1fr 1fr; }
  .video-grid, .home-video-grid { grid-template-columns: 1fr; }
  .revenue-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .timeline { padding-left: 30px; }
  .timeline::before { left: 10px; }
  .timeline-item::before { left: -26px; }
  .pitch-hero-video { min-height: auto; padding: 140px 5% 60px; }
}
