@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:    #040e1c;
  --navy2:   #071628;
  --navy3:   #0c2040;
  --blue:    #1a56db;
  --blue2:   #1e40af;
  --gold:    #f5a623;
  --gold2:   #e09415;
  --green:   #10b981;
  --text:    #f0f4ff;
  --muted:   #8ba3c4;
  --dimmed:  #4a6080;
  --glass:   rgba(255,255,255,0.04);
  --glass2:  rgba(255,255,255,0.07);
  --border:  rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(4,14,28,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-logo .accent { color: var(--gold); }
.nav-logo .sub {
  font-size: 10px; font-weight: 400;
  color: var(--muted); letter-spacing: 2px;
  text-transform: uppercase;
  display: block; margin-top: -2px;
}
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 7px 13px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text); background: var(--glass2);
}
.nav-links .nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700; padding: 8px 18px;
  border-radius: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold2); }
.nav-links .nav-free {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green) !important; font-weight: 600;
  border-radius: 8px;
}
.nav-links .nav-free:hover { background: rgba(16,185,129,0.2); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ─── SHARED LAYOUT ─── */
.wrap { max-width: 1120px; margin: auto; padding: 0 24px; }
.pt-nav { padding-top: 68px; }

/* ─── SECTION LABELS ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 2px; background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800; line-height: 1.08;
  margin-bottom: 16px;
}
.section-body {
  color: var(--muted); font-size: 16px; line-height: 1.75;
  max-width: 520px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.18s, opacity 0.18s, background 0.18s;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); opacity: 1; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); opacity: 1; }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: #0da271; opacity: 1; }
.btn-wa {
  background: #25D366; color: white;
}
.btn-wa:hover { background: #1fb558; opacity: 1; }

/* ─── CARDS ─── */
.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--border2);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}

/* ─── REVEAL ANIM ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ─── FOOTER ─── */
footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
  margin-top: 100px;
}
.footer-grid {
  max-width: 1120px; margin: auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800; margin-bottom: 12px;
}
.footer-brand .logo .accent { color: var(--gold); }
.footer-brand p {
  color: var(--muted); font-size: 14px; line-height: 1.7;
  margin-bottom: 18px;
}
.footer-col h5 {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--muted); text-decoration: none; font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-contact-line {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: 14px; margin-bottom: 10px;
}
.footer-contact-line a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1120px; margin: auto;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { color: var(--dimmed); font-size: 13px; }
.footer-bottom a { color: var(--dimmed); text-decoration: none; font-size: 13px; }
.footer-bottom a:hover { color: var(--muted); }
.powered {
  color: var(--dimmed); font-size: 12px;
  display: flex; align-items: center; gap: 6px;
}
.powered span { color: var(--blue); font-weight: 600; }

/* ─── PROMO PULSE ─── */
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.35); }
  50%      { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}
.pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

/* ─── RESPONSIVE ─── */
@media(max-width:900px){
  nav { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(4,14,28,0.99);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch;
    padding: 8px 0 24px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    z-index: 998;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 13px 24px; border-radius: 0; display: block; font-size: 15px; }
  .nav-links .nav-cta {
    margin: 10px 20px 0; border-radius: 10px;
    text-align: center; display: block; padding: 12px 20px;
  }
  .nav-links .nav-free {
    margin: 6px 20px 0; border-radius: 10px;
    text-align: center; display: block; padding: 12px 20px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:600px){
  footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
