@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=DM+Serif+Display&display=swap');

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

:root {
  --teal: #0D9488;
  --teal-dim: rgba(13,148,136,0.15);
  --teal-border: rgba(13,148,136,0.3);
  --bg: #0f1117;
  --bg-card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --border-md: rgba(255,255,255,0.12);
  --text: #e8e8e8;
  --text-muted: rgba(255,255,255,0.45);
  --text-dim: rgba(255,255,255,0.25);
  --radius: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(15,17,23,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 22px;
  height: 22px;
}

.logo-mark span {
  background: var(--teal);
  border-radius: 2px;
}

.logo-mark span:nth-child(2),
.logo-mark span:nth-child(3) { opacity: 0.45; }

.nav-wordmark {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 13px !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; color: #fff !important; text-decoration: none !important; }

/* HERO */
.hero {
  padding: 96px 48px 80px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 0.5px solid var(--teal-border);
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.85; text-decoration: none; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 0.5px solid var(--border-md);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.3); text-decoration: none; color: var(--text); }

/* STATS BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 0.5px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* SECTIONS */
.section {
  padding: 80px 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.section + .section {
  border-top: 0.5px solid var(--border);
}

.section-eyebrow {
  font-size: 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}

.service-card:hover { border-color: var(--teal-border); }

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 20px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.badge {
  display: inline-block;
  background: var(--teal-dim);
  border: 0.5px solid var(--teal-border);
  color: var(--teal);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-detail i { color: var(--teal); font-size: 18px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: 13px;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid var(--border-md);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-field textarea { height: 120px; }

/* FOOTER */
footer {
  border-top: 0.5px solid var(--border);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-tagline { font-size: 13px; color: var(--text-dim); font-style: italic; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .hero { padding: 64px 20px 48px; }
  .hero h1 { font-size: 36px; }
  .section { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
}
