/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

/* ===== COLORS ===== */
:root {
  --green: #00ff88;
  --green-dark: #00cc66;
  --green-glow: rgba(0, 255, 136, 0.25);
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #161616;
  --card-bg: #141414;
  --text: #e0e0e0;
  --text-muted: #888;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid rgba(0,255,136,0.15);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: #000 !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  box-shadow: 0 0 20px var(--green-glow);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--green);
  font-size: 26px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  list-style: none;
  flex-direction: column;
  background: #111;
  padding: 16px 24px;
  gap: 16px;
  border-top: 1px solid rgba(0,255,136,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at center top, rgba(0,255,136,0.08) 0%, #0a0a0a 60%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ff88' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 30px rgba(0,255,136,0.5));
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 0 60px rgba(0,255,136,0.2);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--green);
  color: #000;
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 0 30px var(--green-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green-glow);
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; font-size: 16px; padding: 16px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: #111;
  border-top: 1px solid rgba(0,255,136,0.15);
  border-bottom: 1px solid rgba(0,255,136,0.15);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section { padding: 90px 24px; }
.dark-section { background: var(--dark3); }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1px solid rgba(0,255,136,0.12);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,255,136,0.1);
}
.card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 32px 20px;
  background: rgba(0,255,136,0.04);
  border: 1px solid rgba(0,255,136,0.1);
  border-radius: 12px;
}
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--green);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step p { color: var(--text-muted); font-size: 0.93rem; }
.step-arrow {
  font-size: 2rem;
  color: var(--green);
  opacity: 0.5;
  align-self: center;
  padding-top: 0;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}
.benefit-item:hover { border-color: rgba(0,255,136,0.3); }
.benefit-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.benefit-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-size: 1rem;
}
.benefit-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== LOCATION TAGS ===== */
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.location-tags span {
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.25);
  color: var(--green);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.location-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
input, textarea {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.1);
}
textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}
.form-success {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(0,255,136,0.08);
  border: 1px solid var(--green);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green);
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hidden { display: none !important; }
.form-error {
  color: #ff5555;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(255,85,85,0.3);
  border-radius: 6px;
  background: rgba(255,85,85,0.06);
}

/* ===== CONTACT INFO ===== */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.2);
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.2s, box-shadow 0.2s;
}
.contact-info-item:hover {
  background: rgba(0,255,136,0.12);
  box-shadow: 0 0 20px rgba(0,255,136,0.15);
}
.contact-info-icon { font-size: 1.2rem; }

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 1px solid rgba(0,255,136,0.1);
  padding: 48px 24px 28px;
  text-align: center;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0,255,136,0.3));
}
.footer-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.footer-link {
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}
.footer-link:hover { opacity: 0.75; }
.footer-copy {
  color: #444;
  font-size: 12px;
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .stat { min-width: 50%; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .stat { min-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
