:root {
  --bg: #0a0f0d;
  --bg-light: #111916;
  --fg: #e8ede9;
  --fg-muted: #8a9b8e;
  --accent: #4ade80;
  --accent-dark: #22c55e;
  --accent-glow: rgba(74, 222, 128, 0.15);
  --surface: #161e1a;
  --border: #1e2b23;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  color: var(--accent);
  font-size: 1.2rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
}

.nav-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--accent-glow);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 200px;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* PROOF BAR */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.proof-icon {
  color: var(--accent);
  font-weight: 700;
}

/* SECTIONS COMMON */
.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* SERVICES */
.services {
  padding: 6rem 2rem;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateY(-2px);
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

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

/* INDUSTRIES */
.industries {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.industries-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.industry-tag {
  padding: 0.65rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
  transition: all 0.3s;
}

.industry-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.industries-note p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* PROCESS */
.process {
  padding: 6rem 2rem;
}

.process-inner {
  max-width: 800px;
  margin: 0 auto;
}

.process-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.step-line {
  width: 2px;
  height: 40px;
  background: var(--border);
  margin-left: 23px;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 50%, var(--bg) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

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

.closing-locations {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.loc-dot {
  color: var(--accent);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

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

.footer-copy {
  color: var(--fg-muted);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: #0a0f0d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.25);
}

.btn-primary.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary.btn-full {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 1.5rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.btn-icon {
  font-size: 1.1rem;
}

/* ─── NAV CTA ──────────────────────────────────────────────────────────── */

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--accent);
  color: #0a0f0d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-dark);
}

/* ─── HERO CTAS ────────────────────────────────────────────────────────── */

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* ─── CONTACT / QUOTE FORM ─────────────────────────────────────────────── */

.contact {
  padding: 6rem 2rem;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--fg);
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.contact-detail-link:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.contact-detail-icon {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 0.15rem;
}

.contact-detail-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

/* Form */
.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--fg-muted);
}

.form-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.5;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.8rem;
  opacity: 0.7;
}

.form-error {
  color: #f87171;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-success-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ─── CLOSING CTAS ─────────────────────────────────────────────────────── */

.closing-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.closing-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-sep {
  color: var(--border);
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-num {
    font-size: 2rem;
  }

  .proof-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
  }

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

  .nav-location {
    display: none;
  }

  .step {
    gap: 1.2rem;
  }

  .closing-locations {
    flex-direction: column;
    gap: 0.3rem;
  }

  .loc-dot {
    display: none;
  }

  .industry-grid {
    gap: 0.5rem;
  }

  .industry-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-secondary {
    font-size: 0.9rem;
    padding: 0.75rem 1.4rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .quote-form {
    padding: 1.5rem;
  }

  .closing-contact {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-sep {
    display: none;
  }
}