:root {
  --bg: #050506;
  --panel: #111217;
  --panel-soft: #171923;
  --line: #2b2f3a;
  --text: #f3f5ff;
  --muted: #b9becd;
  --dim: #7d8495;
  --blue: #0057ff;
  --blue-bright: #4f85ff;
  --silver: #d7d9df;
  --danger: #ffb4ab;
  --success: #a6f4bf;
  --radius: 8px;
  --container: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(94vw, var(--container));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand,
h1,
h2,
h3,
.button {
  font-family: "Space Grotesk", Inter, sans-serif;
}

.brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  white-space: nowrap;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 132px 20px 80px;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), #050506 94%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
}

h3 {
  margin: 0;
  font-size: 26px;
}

.hero-copy {
  width: min(760px, 100%);
  margin: 24px auto 0;
  color: var(--silver);
  font-size: 18px;
  line-height: 1.65;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 28px auto 0;
  list-style: none;
}

.hero-points li,
.specialized span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 18, 23, 0.72);
  color: var(--muted);
  padding: 10px 14px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
  color: white;
}

.section,
.positioning,
.quote-section {
  padding: 90px 0;
}

.section-muted,
.positioning {
  background: var(--panel-soft);
}

.split,
.quote-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.split p,
.quote-layout p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.quote-form,
.review-grid blockquote {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #101115;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card div {
  padding: 28px;
}

.service-card p,
.service-card li {
  color: var(--muted);
  line-height: 1.6;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.specialized {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.specialized div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.process-image {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  margin-top: 28px;
}

.steps li::before {
  content: counter(steps);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c0d12;
  color: var(--blue-bright);
  font-weight: 900;
}

.steps strong,
.steps span {
  grid-column: 2;
}

.steps span {
  color: var(--muted);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  padding: 8px 12px;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.gallery-empty {
  grid-column: 1 / -1;
  color: var(--muted);
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-grid blockquote {
  margin: 0;
  padding: 28px;
  color: var(--silver);
  line-height: 1.7;
}

.quote-section {
  background: #030304;
}

.service-area {
  margin-top: 26px;
  color: var(--silver) !important;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #090a0d;
  color: white;
  padding: 0 14px;
}

input[type="file"] {
  min-height: auto;
  padding: 13px;
}

small {
  color: var(--dim);
}

input:focus,
select:focus {
  border-color: var(--blue-bright);
  outline: 2px solid rgba(79, 133, 255, 0.24);
}

.form-button {
  width: 100%;
  border-radius: var(--radius);
}

.form-button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030304;
  color: var(--dim);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-inner strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    padding: 16px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .split,
  .quote-layout,
  .process-layout,
  .service-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .specialized div {
    justify-content: flex-start;
  }

  .process-image {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    font-size: 15px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-actions,
  .form-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section,
  .positioning,
  .quote-section {
    padding: 64px 0;
  }

  .quote-form {
    padding: 20px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
