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

:root {
  --navy: #0b1120;
  --navy2: #111827;
  --navy3: #1a2540;
  --teal: #00c2a8;
  --teal-dark: #009e88;
  --teal-glow: rgba(0,194,168,0.15);
  --amber: #f59e0b;
  --cream: #f0f4f8;
  --gray: #8fa3b8;
  --light: #c8d8e8;
  --white: #ffffff;
  --card-bg: #141e30;
  --border: rgba(0,194,168,0.15);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(11,17,32,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  display: block;
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--light);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--teal);
  transition: left 0.25s, right 0.25s;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--teal); }
.nav-links li a:hover::after,
.nav-links li a.active::after { left: 1.1rem; right: 1.1rem; }

.nav-cta {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark) !important; color: var(--navy) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ── FOOTER ── */
footer {
  background: #070d1a;
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-top: 1rem; max-width: 300px; }

.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-logo-text span { color: var(--teal); }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  color: var(--gray);
  font-size: 0.88rem;
}
.footer-contact-item .icon { color: var(--teal); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: #4a5568; }
.footer-legal-links { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.8rem; color: #4a5568; text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--teal); }
.footer-legal-links .sep { color: #2d3748; font-size: 0.8rem; }
.footer-legal-links span:last-child { font-size: 0.8rem; color: #4a5568; }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: #1a2540;
  border: 1px solid #2a3a50;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-icon:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }

/* ── SHARED SECTION STYLES ── */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-glow);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,194,168,0.25);
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--navy);
  padding: 0.85rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ── CARD ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,194,168,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,194,168,0.1);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 130px 5% 60px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #0d1625 0%, var(--navy) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,194,168,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.page-hero p { font-size: 1.05rem; color: var(--gray); max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 1rem 5%;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #444; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TEAL LINE ACCENT ── */
.teal-line {
  width: 48px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── RESPONSIVE NAV ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #0d1625;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 5%;
    gap: 0.3rem;
    display: none;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.8rem 0; font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
