:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --cyan: #22d3ee;
  --cyan-2: #67e8f9;
  --green: #34d399;
  --dark: #020617;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 15%, rgba(34, 211, 238, 0.25), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.16), transparent 32%),
    radial-gradient(circle at 55% 90%, rgba(59, 130, 246, 0.18), transparent 38%);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: var(--cyan);
  color: var(--dark);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.2);
}
.brand strong { display: block; font-size: 18px; line-height: 1; }
.brand small { display: block; margin-top: 5px; color: #bae6fd; letter-spacing: 0.28em; text-transform: uppercase; font-size: 11px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a, .header-email, .footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}
.nav a:hover, .header-email:hover, .footer a:hover { color: var(--cyan-2); }
.header-email { color: var(--cyan-2); }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.menu-btn span {
  display: block;
  height: 2px;
  width: 20px;
  background: white;
  margin: 5px auto;
  border-radius: 10px;
}

.section { padding: 92px 0; }
.hero { padding-top: 115px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}
.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(103, 232, 249, 0.28);
  background: rgba(34, 211, 238, 0.1);
  color: #cffafe;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  font-size: clamp(48px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -0.06em;
  margin-bottom: 26px;
  font-weight: 900;
}
h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  font-weight: 900;
}
h3 { font-size: 20px; line-height: 1.2; margin-bottom: 12px; }
p { color: var(--muted); font-size: 17px; }
.hero-copy p { max-width: 700px; font-size: 18px; line-height: 1.8; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 20px;
  padding: 17px 25px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--cyan); color: var(--dark); }
.btn.primary:hover { background: var(--cyan-2); }
.btn.secondary { background: rgba(255,255,255,.06); color: var(--text); border: 1px solid var(--line); }
.btn.full { width: 100%; margin-top: 22px; font-size: 16px; }

.dashboard {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255,255,255,.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 26px 26px 0 0;
  background: rgba(15,23,42,.92);
}
.dashboard-top span, .coverage-card span, .selected-card span, .form-title small { display:block; color: var(--muted-2); font-size: 14px; }
.dashboard-top strong { display: block; font-size: 28px; font-weight: 900; }
.dashboard-top em {
  align-self: start;
  font-style: normal;
  color: #bbf7d0;
  background: rgba(52,211,153,.14);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 24px 24px;
  background: rgba(15,23,42,.92);
}
.stat {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  padding: 20px;
}
.stat strong { display: block; color: var(--cyan-2); font-size: 38px; font-weight: 900; letter-spacing: -0.05em; }
.stat span { color: var(--muted); font-size: 14px; }
.coverage-card {
  padding: 22px 24px 24px;
  border-radius: 0 0 26px 26px;
  background: rgba(15,23,42,.92);
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
}
.bar-row i {
  display: block;
  height: 8px;
  background: var(--cyan);
  border-radius: 999px;
}
.bar-row small { min-width: 78px; color: var(--muted-2); font-size: 12px; }

.section-heading { max-width: 780px; margin-bottom: 42px; }
.eyebrow {
  display: block;
  color: var(--cyan-2);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}
.eyebrow.dark { color: rgba(2, 6, 23, 0.72); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 32px;
}
.filters button, .project-options button {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all .2s ease;
}
.filters button.active, .project-options button.active {
  border-color: transparent;
  background: var(--cyan);
  color: var(--dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 292px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.11); }
.service-card.hidden { display: none; }
.service-card .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(34,211,238,.14);
  font-size: 24px;
  margin-bottom: 22px;
}
.service-card small {
  position: absolute;
  top: 28px;
  right: 24px;
  color: #cffafe;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
}
.service-card p, .process-card p, .industry-list p, .selected-card p { font-size: 14px; line-height: 1.75; color: var(--muted); }

.industries-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255,255,255,.08);
  padding: 48px;
  backdrop-filter: blur(18px);
}
.industry-list { display: grid; gap: 16px; }
.industry-list article {
  display: flex;
  gap: 18px;
  border-radius: 28px;
  background: rgba(2,6,23,.7);
  padding: 24px;
}
.industry-list span {
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--cyan);
  color: var(--dark);
  font-size: 23px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15,23,42,.82);
  padding: 26px;
}
.process-card strong {
  color: var(--cyan-2);
  font-size: 52px;
  letter-spacing: -0.08em;
  font-weight: 900;
}
.process-card h3 { margin-top: 26px; }

.project-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
}
.project-box {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255,255,255,.08);
  padding: 24px;
  backdrop-filter: blur(18px);
}
.project-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.project-options button {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-options button::after { content: "›"; font-size: 20px; }
.selected-card {
  margin-top: 18px;
  border-radius: 28px;
  background: rgba(2,6,23,.78);
  padding: 26px;
}
.selected-card h3 { color: var(--cyan-2); font-size: 28px; margin-top: 8px; }

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  border-radius: 36px;
  background: var(--cyan);
  color: var(--dark);
  padding: 48px;
}
.contact-panel p { color: rgba(2,6,23,.78); }
.contact-links { display: grid; gap: 13px; margin-top: 30px; }
.contact-links a, .contact-links span {
  display: block;
  background: var(--dark);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  padding: 17px;
  font-weight: 900;
}
.quote-form {
  border-radius: 30px;
  background: var(--dark);
  color: white;
  padding: 30px;
}
.form-title { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; }
.form-title span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--cyan);
}
.form-title strong { display: block; font-size: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: white;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}
select option { background: var(--dark); }
input:focus, select:focus, textarea:focus { border-color: var(--cyan); }
input::placeholder, textarea::placeholder { color: #64748b; }
#email, #projectSelect, textarea { grid-column: 1 / -1; }
.form-note {
  display: none;
  margin-top: 16px;
  color: #bbf7d0 !important;
  background: rgba(52,211,153,.12);
  border-radius: 18px;
  padding: 14px;
  font-size: 14px;
}
.form-note.visible { display: block; }

.footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
}
.footer p { margin: 0; font-size: 14px; color: var(--muted-2); }
.footer div div { display: flex; flex-wrap: wrap; gap: 18px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay { transition-delay: .15s; }

@media (max-width: 980px) {
  .header-email { display: none; }
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(2,6,23,.98);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: grid; gap: 16px; }
  .hero-grid, .industries-panel, .project-grid, .contact-panel { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 70px 0; }
  .hero { padding-top: 86px; }
  h1 { font-size: 46px; }
  .hero-actions, .filters { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .stats-grid, .service-grid, .process-grid, .project-options, .form-grid { grid-template-columns: 1fr; }
  .dashboard, .industries-panel, .project-box, .contact-panel, .quote-form { padding: 20px; border-radius: 26px; }
  .dashboard-top, .stats-grid, .coverage-card { padding-left: 18px; padding-right: 18px; }
  .contact-panel { gap: 24px; }
}
