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

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

:root {
  --bg: #0d0d0d;
  --surface: #161616;
  --border: #222;
  --teal: #00D4AA;
  --teal-dim: rgba(0, 212, 170, 0.12);
  --white: #f0f0f0;
  --muted: #888;
  --text: #d4d4d4;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 48px; height: 64px;
}
.nav-logo {
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: -0.3px;
}
.nav-logo span { color: var(--teal); }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  margin-left: 32px; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  margin-left: 32px;
  background: var(--teal); color: #000 !important;
  padding: 8px 18px; border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #00bfa0 !important; color: #000 !important; }

/* HERO */
.hero {
  padding: 120px 48px 100px;
  max-width: 860px; margin: 0 auto; text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--teal-dim); color: var(--teal);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 20px; border: 1px solid rgba(0,212,170,0.25);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 3.2rem; font-weight: 700;
  color: var(--white); line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 20px;
}
.hero h1 span { color: var(--teal); }
.hero p {
  font-size: 1.1rem; color: var(--muted);
  max-width: 520px; margin: 0 auto 36px;
}
.btn {
  display: inline-block; text-decoration: none;
  background: var(--teal); color: #000;
  font-weight: 600; font-size: 0.95rem;
  padding: 13px 28px; border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { background: #00bfa0; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--border); margin-left: 12px;
}
.btn-ghost:hover { background: var(--surface); transform: translateY(-1px); }

/* SECTIONS */
.section { padding: 80px 48px; max-width: 1040px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.section h2 {
  font-size: 2rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px; letter-spacing: -0.5px;
}
.section .lead {
  font-size: 1rem; color: var(--muted);
  max-width: 560px; margin-bottom: 52px;
}

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--teal); transform: translateY(-2px); }
.card-icon { font-size: 1.6rem; margin-bottom: 16px; }
.card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); margin: 0 48px; }

/* ABOUT BLOCK */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.8; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px;
}
.stat-card .num { font-size: 2rem; font-weight: 700; color: var(--teal); }
.stat-card .label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* CONTACT */
.contact-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 56px;
  max-width: 580px; margin: 0 auto; text-align: center;
}
.contact-wrap h2 { font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
.contact-wrap p { color: var(--muted); margin-bottom: 32px; }
.email-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal-dim); color: var(--teal);
  border: 1px solid rgba(0,212,170,0.25);
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: background 0.2s;
}
.email-link:hover { background: rgba(0,212,170,0.2); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
footer p { font-size: 0.82rem; color: var(--muted); }
footer a { color: var(--muted); text-decoration: none; margin-left: 24px; font-size: 0.82rem; }
footer a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 80px 24px 60px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 60px 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-wrap { padding: 36px 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  footer a { margin: 0 10px; }
}
