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

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

:root {
  --navy: #0A1628;
  --navy-mid: #112240;
  --accent: #00D4FF;
  --accent-dim: #0099BB;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --white: #F0F6FF;
  --muted: #8899BB;
  --card-bg: #0D1F3C;
  --border: rgba(0, 212, 255, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
nav ul a:hover, nav ul a.active { color: var(--accent); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-glow) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { max-width: 760px; position: relative; }

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 1rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── SECTIONS ── */
section {
  padding: 6rem 4rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  font-weight: 300;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--card-bg);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--accent); transform: translateY(-4px); }

.card-icon {
  width: 44px; height: 44px;
  background: var(--accent-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 5rem;
}

.stat {
  background: var(--card-bg);
  padding: 2rem;
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }

/* ── TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.team-card {
  background: var(--card-bg);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.team-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-role { font-size: 0.85rem; color: var(--accent); margin-bottom: 0.75rem; }
.team-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial {
  background: var(--card-bg);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial p { color: var(--muted); font-size: 0.97rem; line-height: 1.65; margin-bottom: 1.5rem; }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
}
.author-name { font-weight: 500; font-size: 0.9rem; }
.author-title { font-size: 0.8rem; color: var(--muted); }

/* ── CONTACT ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: start;
}

.contact-info p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }

.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--accent-glow);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.2rem; }
.contact-detail span { font-size: 0.95rem; color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card-bg);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  background: var(--accent);
  color: var(--navy);
  border: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.form-submit:hover { opacity: 0.88; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.about-visual {
  background: var(--card-bg);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-pill {
  background: var(--accent-glow);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-align: center;
}

.about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; font-size: 0.97rem; }

.values-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.value-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.92rem;
}
.value-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9rem 4rem 4rem;
  border-bottom: 0.5px solid var(--border);
}

.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 560px; font-weight: 300; }

/* ── FOOTER ── */
footer {
  border-top: 0.5px solid var(--border);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 0.75rem; line-height: 1.6; max-width: 240px; }

footer h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
footer ul a { color: var(--white); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
footer ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding: 1.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); text-decoration: none; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.65s ease both; }
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { gap: 1.25rem; }
  section, .hero, .page-hero { padding-left: 1.5rem; padding-right: 1.5rem; }
  .contact-wrapper, .about-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2rem 1.5rem; }
  .footer-bottom { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav ul { display: none; }
  .stats-bar { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}
