/* ── FONTS: preconnect + load from Google, fallback to system stack ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..900;1,9..40,100..900&display=swap');

:root {
  --orange:      #F4500A;
  --orange-h:    #FF6B2B;
  --orange-bg:   #FFF0E8;
  --navy:        #0C1B33;
  --white:       #FFFFFF;
  --smoke:       #F7F7F5;
  --text:        #1A1A2E;
  --muted:       #6B7280;
  --border:      #E5E7EB;

  /* safe system font stacks */
  --font-body:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-head:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI Black', 'Arial Black', Arial, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px; color: var(--text);
  background: var(--white); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── NAV ── */
nav {
  position: sticky !important;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white) !important;
  border-bottom: 1.5px solid var(--border);
  padding: 0 5%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: 100%;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 800;
  color: var(--navy); text-decoration: none !important;
  display: flex; align-items: baseline; gap: 0;
  letter-spacing: -0.3px; line-height: 1;
  flex-shrink: 0;
}
.logo .logo-accent { color: var(--orange); }
.logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 2.5px; color: var(--muted);
  text-transform: uppercase; margin-left: 5px;
  align-self: center;
}

.nav-links {
  display: flex; gap: 0;
  list-style: none !important; margin: 0; padding: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  display: block; padding: .32rem 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  color: var(--muted); text-decoration: none !important;
  border-radius: 20px; transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
}
.nav-links a.active { background: var(--smoke); }

.nav-right {
  display: flex; align-items: center; gap: .6rem;
  flex-shrink: 0;
}

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none; outline: none;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s;
}

/* mobile dropdown */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1.5px solid var(--border);
  padding: 1rem 5% 1.5rem;
  z-index: 9998;
  flex-direction: column; gap: .2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex !important; }
.mobile-menu a {
  display: block; padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600;
  color: var(--navy); text-decoration: none !important;
  border-radius: 8px; transition: background .2s;
}
.mobile-menu a:hover, .mobile-menu a.active {
  background: var(--smoke); color: var(--orange);
}
.mobile-menu .btn {
  margin-top: .75rem;
  width: 100%; justify-content: center;
  display: flex;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 700;
  padding: .58rem 1.3rem; border-radius: 6px;
  cursor: pointer; text-decoration: none !important;
  transition: all .2s; border: none;
  white-space: nowrap; line-height: 1;
}
.btn-solid { background: var(--orange); color: var(--white) !important; }
.btn-solid:hover { background: var(--orange-h); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--navy) !important;
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); }
.btn-lg { font-size: 0.92rem; padding: .8rem 1.8rem; border-radius: 8px; }
.btn-white { background: var(--white); color: var(--navy) !important; }
.btn-white:hover { background: var(--orange-bg); }
.btn-outline-white {
  background: transparent; color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); }

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--orange-bg); color: var(--orange);
  padding: .28rem .9rem; border-radius: 20px;
  margin-bottom: 1rem;
}
.tag-dark { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -1.5px;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1px; color: var(--navy);
}
h3 {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.2px;
}
.lead {
  font-size: 1rem; color: var(--muted);
  line-height: 1.75; max-width: 560px;
}
.accent { color: var(--orange); }

/* ── LAYOUT ── */
.section { padding: 5rem 5%; }
.container { max-width: 1180px; margin: 0 auto; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 800;
  color: var(--white); margin-bottom: .75rem;
}
.footer-logo span { color: var(--orange); }
.footer-desc {
  font-size: 0.82rem; line-height: 1.7; max-width: 240px;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none !important; margin-bottom: .5rem;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; color: rgba(255,255,255,0.28);
  flex-wrap: wrap; gap: .5rem;
}

/* ── SCROLL FADE ── */
.fade-in {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ── CTA BAND (shared) ── */
.cta-band {
  background: var(--orange); padding: 3.5rem 5%;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.cta-band h2 { color: var(--white); max-width: 540px; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-right { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .section { padding: 3.5rem 5%; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  nav { padding: 0 4%; }
}
