:root {
  --bg: #0a0f1a;
  --bg-surface: #111827;
  --bg-card: #1a2235;
  --fg: #f1f5f9;
  --fg-muted: #94a3b8;
  --accent: #10b981;
  --accent-glow: rgba(16, 185, 129, 0.15);
  --accent-secondary: #06b6d4;
  --gradient-start: #10b981;
  --gradient-end: #06b6d4;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.15;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--accent-glow) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin-bottom: 24px;
  color: var(--fg);
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 320px;
}

.pulse-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.2);
  animation: pulse 3s ease-in-out infinite;
}

.pulse-ring.delay-1 {
  animation-delay: 1s;
  width: 260px;
  height: 260px;
}

.pulse-ring.delay-2 {
  animation-delay: 2s;
  width: 320px;
  height: 320px;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
  padding: 32px 40px;
  text-align: center;
  box-shadow: 0 0 40px var(--accent-glow);
}

.metric-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  display: block;
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* STATS */
.stats {
  padding: 60px 8%;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* FEATURES */
.features {
  padding: 100px 8%;
}

.features-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.features-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.feature-highlight {
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(160deg, var(--bg-surface) 0%, rgba(16, 185, 129, 0.04) 100%);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* SERVICES */
.services {
  padding: 100px 8%;
  background: var(--bg-surface);
}

.services-content {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.services-text {
  flex: 1;
  min-width: 320px;
}

.services-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.services-text > p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.services-visual {
  flex: 0 0 auto;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
}

.location-pin {
  font-size: 2rem;
  margin-bottom: 12px;
}

.location-address {
  color: var(--fg);
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.location-hours {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* CLOSING */
.closing {
  padding: 120px 8%;
  text-align: center;
}

.closing-content {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  padding: 48px 8% 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 6% 40px;
    min-height: auto;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .lede {
    margin: 0 auto;
  }

  .hero-visual {
    width: 240px;
    height: 240px;
  }

  .pulse-ring { width: 160px; height: 160px; }
  .pulse-ring.delay-1 { width: 200px; height: 200px; }
  .pulse-ring.delay-2 { width: 240px; height: 240px; }

  .stats-grid {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
  }
}