:root {
  --bg: #0b1220;
  --panel: #101a2e;
  --text: #f8fafc;
  --muted: #b1bdd0;
  --accent: #f59e0b;
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #08101c;
}

.hero {
  position: relative;
  min-height: 76vh;
  padding: 32px 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(130deg, rgba(8, 16, 28, 0.88), rgba(8, 16, 28, 0.56)),
    url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.14) 100%);
}

.content,
.section {
  position: relative;
  width: min(1100px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.9;
}

.lead {
  max-width: 640px;
  margin: 20px 0 0;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1.05rem;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #101010;
  text-decoration: none;
  font-weight: 800;
}

.ghost {
  background: transparent;
  color: white;
  border: 1px solid var(--line);
}

.section {
  margin: 0 auto;
  padding: 64px 16px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.services article,
.contact-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.services p,
.contact-card p,
.banner p {
  color: var(--muted);
  line-height: 1.7;
}

.banner {
  text-align: center;
  background: #0e1728;
}

.banner p {
  margin: 0;
  font-size: 1.05rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 760px) {
  .contact {
    grid-template-columns: 1fr;
  }
}
