/* ── RESET & VARIABLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --g: #1DB954;
  --g-dark: #159a42;
  --g-light: #e8f8ee;
  --navy: #0f1e35;
  --navy2: #162840;
  --white: #ffffff;
  --off: #f6f9f6;
  --txt: #111827;
  --txt2: #4b5563;
  --txt3: #9ca3af;
  --border: #e5e7eb;
  --r: 14px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--txt); background: var(--white); -webkit-font-smoothing: antialiased; }

/* ── NAV ───────────────────────────────────────────────── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  gap: 1rem;
}
.logo-wrap { display: flex; align-items: center; gap: 4px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  font-size: 13px; color: var(--txt2); text-decoration: none; font-weight: 600;
  padding: 0 1.1rem; height: 68px; display: flex; align-items: center;
  border-bottom: 3px solid transparent; transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: var(--g); }
.nav-links a.active { color: var(--g); border-bottom-color: var(--g); }
.nav-cta {
  background: var(--g); border: none; color: #fff; padding: 9px 20px;
  border-radius: 8px; font-size: 13px; cursor: pointer; font-weight: 700;
  font-family: var(--font-body); transition: background .2s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--g-dark); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: auto;
}
.footer-brand { font-family: var(--font-head); color: #fff; font-size: 18px; }
.footer-slogan { color: var(--g); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: 3px; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 11px; margin-top: .5rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--g); }

/* ── UTILITIES ─────────────────────────────────────────── */
.btn-green {
  background: var(--g); border: none; color: #fff; padding: 12px 26px;
  border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: var(--font-body); transition: background .2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-green:hover { background: var(--g-dark); }
.btn-outline {
  background: transparent; border: 2px solid var(--navy); color: var(--navy);
  padding: 12px 26px; border-radius: 10px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--font-body); transition: all .2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.sec-label { font-size: 11px; font-weight: 700; color: var(--g); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .4rem; }
.sec-title { font-family: var(--font-head); font-size: 30px; font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: .75rem; }
.sec-sub { font-size: 15px; color: var(--txt2); line-height: 1.8; max-width: 580px; }
.divbar { width: 44px; height: 3px; background: var(--g); border-radius: 2px; margin: 1rem 0 2rem; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  footer { padding: 2rem 1.25rem; flex-direction: column; align-items: flex-start; }
}
