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

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

:root {
  --bg:       #000000;
  --bg2:      #0a0a0a;
  --bg3:      #111111;
  --card:     #0f0f0f;
  --card-h:   #161616;
  --accent:   #75ebe1;
  --accent2:  #0ef;
  --text:     #ffffff;
  --text-dim: rgba(255,255,255,0.6);
  --text-faint: rgba(255,255,255,0.3);
  --border:   rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(10px);
  padding: 0 40px;
  height: 12vh;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.title {
  font-size: 1.8rem; font-weight: 700;
  color: var(--text); cursor: pointer;
  letter-spacing: 1px;
}
.nav ul {
  list-style: none; display: flex; gap: 8px;
  font-size: 0.95rem; font-weight: 500;
  text-transform: uppercase;
}
.nav ul li { padding: 0 0.5em 0.25em; cursor: pointer; position: relative; overflow: hidden; transition: .3s; }
.nav ul li a { text-decoration: none; color: grey; transition: color 0.3s; }
.nav ul li a:hover, .nav ul li a.active-link { color: var(--accent); }
.nav ul li:before {
  content: ""; position: absolute;
  inset: calc(100% - 3px) 0 0 0;
  background: linear-gradient(to right, #135058, #F1F2B5);
  scale: 0 1; transition: .3s, translate 0s .3s;
}
.nav ul:hover li:before { scale: 1; }
.nav ul li:hover:before { translate: 0; transition: .3s; }
.nav ul:hover li:has(~ li:hover):before { translate: 100% 0; transition: .2s .2s, scale 0s .4s; }
.nav ul:hover li:hover ~ li:before { translate: -100% 0; transition: .2s .2s, scale 0s .4s; }

/* ── HERO ── */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: calc(12vh + 60px) 40px 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(117,235,225,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 5px;
  color: var(--accent); margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 16px; color: var(--text-dim);
  max-width: 560px; line-height: 1.7;
}
.accent { color: var(--accent); }

/* ── SECTIONS ── */
.section {
  padding: 80px 72px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.section-dark {
  background: var(--bg3);
  max-width: 100%;
  padding: 80px 72px;
}
.section-dark > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  color: var(--accent); margin-bottom: 12px; display: block;
}
.section-eyebrow.center, h2.center { text-align: center; }
h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.body-text { font-size: 14px; line-height: 1.8; color: var(--text-dim); margin-bottom: 16px; }

/* ── TWO COL ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.col-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.stat-card:hover { background: var(--card-h); border-color: rgba(117,235,225,0.25); transform: translateY(-4px); }
.stat-card i { font-size: 28px; color: var(--accent); }
.stat-num { font-size: 28px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text-dim); font-weight: 500; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.feature-card:hover { background: var(--card-h); border-color: rgba(117,235,225,0.2); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(117,235,225,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent);
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--text-dim); line-height: 1.7; }

/* ── TEAM ── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.team-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 28px; text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.team-card:hover { background: var(--card-h); border-color: rgba(117,235,225,0.2); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(117,235,225,0.1);
  border: 2px solid rgba(117,235,225,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--accent);
  margin: 0 auto 18px;
}
.team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--text-dim); line-height: 1.7; }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center; padding: 80px 40px;
  background: linear-gradient(135deg, rgba(117,235,225,0.04) 0%, transparent 60%);
  border-top: 1px solid var(--border);
}
.cta-section h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 14px; }
.cta-section p { color: var(--text-dim); font-size: 15px; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #000;
  border: none; padding: 13px 28px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  border-radius: 8px; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-family: 'Poppins', sans-serif;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-primary.full-width { width: 100%; justify-content: center; margin-top: 8px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.3); padding: 13px 28px;
  font-size: 14px; font-weight: 600;
  border-radius: 8px; cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-outline:hover { border-color: var(--accent); background: rgba(117,235,225,0.06); }

/* ── CONTACT LAYOUT ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.info-cards { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.info-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px;
  transition: border-color 0.3s;
}
.info-card:hover { border-color: rgba(117,235,225,0.25); }
.info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(117,235,225,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent); flex-shrink: 0;
}
.info-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.info-card p { font-size: 13px; color: var(--text-dim); }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 16px; text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.social-btn:hover { background: rgba(117,235,225,0.1); border-color: var(--accent); color: var(--accent); }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-dim); letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; color: var(--text);
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group select option { background: #111; color: var(--text); }
.form-group textarea { resize: vertical; }

.form-response {
  margin-top: 14px; padding: 10px 14px;
  border-radius: 8px; font-size: 13px; text-align: center;
}
.form-response.success { color: var(--accent); background: rgba(117,235,225,0.08); border: 1px solid rgba(117,235,225,0.25); }
.form-response.error   { color: #ff4d4d; background: rgba(255,77,77,0.08); border: 1px solid rgba(255,77,77,0.25); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; transition: color 0.3s;
}
.faq-q i { transition: transform 0.3s; color: var(--text-dim); }
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 4px; }
.faq-a p { padding: 0 20px 18px; font-size: 13px; color: var(--text-dim); line-height: 1.7; }

/* ── FOOTER ── */
.footer {
  background: rgba(15,15,15,0.9);
  border-top: 1px solid var(--border);
  padding: 24px 72px;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.footer p { font-size: 13px; color: var(--text-dim); }
.footer .social-icons { display: flex; gap: 16px; }
.footer .social-icons a { color: var(--text-dim); font-size: 16px; text-decoration: none; transition: color 0.3s; }
.footer .social-icons a:hover { color: var(--accent); }
