*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a6b3c;
  --green-light: #2d9e5f;
  --gold: #c9a227;
  --gold-light: #f0c842;
  --dark: #0a1a0f;
  --dark2: #0f2318;
  --white: #ffffff;
  --gray: #f5f7f5;
  --text: #1a2b1f;
  --text-light: #4a6355;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,26,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  transition: all 0.3s;
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.logo-icon { font-size: 22px; }
.gold { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark); padding: 10px 22px;
  border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 14px;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: rgba(10,26,15,0.98); padding: 12px 0;
}
.mobile-menu a { padding: 14px 28px; color: white; text-decoration: none; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1a0f 0%, #1a3d24 50%, #0d2b1a 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 100px 24px 60px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(45,158,95,0.18) 0%, transparent 70%);
}
.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='%232d9e5f' fill-opacity='0.04'%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");
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-block; padding: 8px 20px;
  border: 1px solid var(--gold); border-radius: 50px;
  color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 2px;
  margin-bottom: 28px; animation: fadeDown 0.8s ease;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 8vw, 80px); font-weight: 900;
  line-height: 1.05; margin-bottom: 24px;
  animation: fadeUp 0.9s ease 0.1s both;
}
.green-text { color: var(--green-light); }
.hero-sub { font-size: clamp(24px, 4vw, 44px); color: var(--gold); }
.hero-desc {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.75);
  max-width: 620px; margin: 0 auto 36px;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-bottom: 40px; animation: fadeUp 0.9s ease 0.3s both;
}
.stat-item { padding: 0 32px; text-align: center; }
.stat-num { display: block; font-size: 36px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 1px; margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.9s ease 0.4s both; }
.btn-primary {
  padding: 16px 36px; background: var(--gold); color: var(--dark);
  border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 16px;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(201,162,39,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.5); }
.btn-outline {
  padding: 16px 36px; background: transparent;
  border: 2px solid rgba(255,255,255,0.35); color: white;
  border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 16px;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px;
}
.scroll-arrow { animation: bounce 2s infinite; margin-top: 4px; font-size: 18px; }

/* ── COUNTDOWN ── */
.countdown-section {
  background: linear-gradient(90deg, #0d2b1a 0%, #1a4d2a 50%, #0d2b1a 100%);
  border-top: 1px solid rgba(201,162,39,0.2);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: 36px 24px;
}
.countdown-container { max-width: 900px; margin: 0 auto; text-align: center; }
.countdown-label { font-size: 13px; letter-spacing: 2px; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.countdown-timer { display: flex; align-items: center; justify-content: center; gap: 8px; }
.time-block { text-align: center; }
.time-num {
  display: block; font-size: clamp(36px, 7vw, 64px); font-weight: 800;
  background: linear-gradient(135deg, #fff, #c9a227);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; font-family: 'Playfair Display', serif;
}
.time-unit { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }
.time-sep { font-size: 48px; color: var(--gold); opacity: 0.6; font-weight: 300; line-height: 1; padding-bottom: 16px; }

/* ── SECTIONS ── */
.section { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; padding: 6px 18px;
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50px; color: var(--gold); font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.section-subtitle { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 56px; line-height: 1.6; }

/* ── BRIDGE ── */
.bridge-section { text-align: center; }
.bridge-image-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  margin-bottom: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,162,39,0.2);
}
.bridge-img { width: 100%; display: block; transition: transform 0.6s; }
.bridge-image-wrap:hover .bridge-img { transform: scale(1.02); }
.bridge-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: rgba(255,255,255,0.8); font-size: 14px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 48px; text-align: left;
}
.feature-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px 24px;
  transition: all 0.3s;
}
.feature-card:hover {
  background: rgba(45,158,95,0.1); border-color: rgba(45,158,95,0.3);
  transform: translateY(-4px);
}
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── TIMELINE ── */
.timeline-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  max-width: 100%; padding: 100px 24px;
}
.timeline-section .section-title,
.timeline-section .section-subtitle,
.timeline-section .section-tag { text-align: center; display: block; }
.timeline-section .section-tag { display: inline-block; }
.timeline-section > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.timeline-image-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.timeline-img { width: 100%; display: block; }
.milestones-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; max-width: 1200px; margin: 0 auto;
}
.milestone-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px 16px; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.milestone-card:hover, .milestone-card.active {
  background: rgba(45,158,95,0.12); border-color: var(--green-light);
}
.milestone-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); margin-bottom: 10px;
}
.milestone-card.active .milestone-dot { background: var(--green-light); box-shadow: 0 0 10px var(--green-light); }
.milestone-period { font-size: 13px; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.milestone-event { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ── PRICING ── */
.pricing-section { text-align: center; }
.pricing-image-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px;
}
.pricing-img { width: 100%; display: block; }
.pricing-table-wrap { overflow-x: auto; }
.pricing-table {
  width: 100%; border-collapse: collapse; text-align: left;
  background: rgba(255,255,255,0.03); border-radius: 16px; overflow: hidden;
}
.pricing-table thead tr { background: var(--green); }
.pricing-table th { padding: 16px 20px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; color: white; }
.pricing-table td { padding: 14px 20px; font-size: 14px; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); }
.row-highlight-blue td:first-child { border-left: 3px solid #4fc3f7; }
.row-highlight-green td:first-child { border-left: 3px solid var(--green-light); }
.row-highlight-yellow td:first-child { border-left: 3px solid var(--gold); }
.row-highlight-pink td:first-child { border-left: 3px solid #f48fb1; }
.pricing-table tbody tr:hover { background: rgba(255,255,255,0.05); }
.pricing-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.5); text-align: left; }

/* ── WHY ── */
.why-section { text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; text-align: left; }
.why-card {
  background: linear-gradient(135deg, rgba(45,158,95,0.08), rgba(201,162,39,0.05));
  border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 36px 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); border-color: rgba(45,158,95,0.3); }
.why-num { font-size: 56px; font-weight: 900; color: rgba(201,162,39,0.15); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── CONTACT ── */
.contact-section { text-align: center; position: relative; }
.contact-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,158,95,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 40px; max-width: 760px; margin: 0 auto 48px;
  text-align: left; position: relative; z-index: 2;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }
.form-group:last-child { margin-bottom: 0; }
label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }
input, select, textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 14px 16px; color: white; font-size: 15px;
  font-family: 'Inter', sans-serif; outline: none; transition: border 0.2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
select option { background: #1a3d24; color: white; }
input:focus, select:focus, textarea:focus { border-color: var(--green-light); background: rgba(255,255,255,0.08); }
textarea { resize: vertical; }
.form-group.full { grid-column: 1/-1; }
.btn-submit {
  width: 100%; padding: 18px; background: linear-gradient(135deg, var(--green-light), var(--green));
  color: white; border: none; border-radius: 12px; font-size: 17px; font-weight: 700;
  cursor: pointer; transition: all 0.3s; margin-top: 20px;
  box-shadow: 0 4px 20px rgba(45,158,95,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,158,95,0.5); }
.contact-info-row {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.contact-info-item { display: flex; align-items: center; gap: 14px; }
.info-icon { font-size: 28px; }
.info-label { display: block; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.info-value { display: block; font-size: 16px; font-weight: 700; color: white; text-decoration: none; }
.info-value:hover { color: var(--gold); }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: linear-gradient(135deg, #1a3d24, #0f2318);
  border: 1px solid rgba(201,162,39,0.3); border-radius: 24px;
  padding: 48px 40px; max-width: 460px; text-align: center;
  animation: scaleIn 0.3s ease;
}
.modal-icon { font-size: 56px; margin-bottom: 20px; }
.modal-box h3 { font-size: 26px; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
.modal-box p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }

/* ── FOOTER ── */
.footer {
  background: #040e08; border-top: 1px solid rgba(201,162,39,0.15);
  padding: 40px 24px; text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.35); max-width: 600px; margin: 0 auto 12px; line-height: 1.6; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .stat-item { padding: 0 16px; }
  .contact-info-row { flex-direction: column; align-items: center; }
  .contact-form { padding: 28px 20px; }
}
