@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #080a0d;
  --surface: #101318;
  --surface-2: #151920;
  --text: #f4f6f8;
  --muted: #9da5b0;
  --accent: #27c2ff;
  --border: rgba(255,255,255,.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); }

.hero {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 78% 35%, rgba(39,194,255,.12), transparent 30%),
    linear-gradient(145deg, #080a0d 0%, #0d1117 100%);
  border-bottom: 1px solid var(--border);
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-size: 20px; font-weight: 800; letter-spacing: -.5px; }
.logo span { font-weight: 500; opacity: .72; }
.nav-contact {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
}
.hero-content { padding: 120px 0 100px; }
.eyebrow, .section-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 18px;
}
h1 {
  font-size: clamp(52px, 8vw, 92px);
  line-height: .98;
  letter-spacing: -4px;
  margin: 0 0 28px;
  max-width: 850px;
}
h1 span { opacity: .48; }
.lead {
  color: var(--muted);
  max-width: 650px;
  font-size: 19px;
  margin-bottom: 34px;
}
.buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s ease;
}
.button.primary { background: var(--accent); color: #061016; }
.button.primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button.secondary { border: 1px solid var(--border); color: var(--text); }
.button.secondary:hover { background: rgba(255,255,255,.05); }

.section { padding: 105px 0; }
.about { background: #0b0e12; }
h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 0 0 26px;
}
.about p:not(.section-label) { color: var(--muted); font-size: 17px; }
.services { border-top: 1px solid var(--border); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 50px;
}
.service-card {
  min-height: 220px;
  padding: 25px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: .2s ease;
}
.service-card:hover { transform: translateY(-3px); border-color: rgba(39,194,255,.35); }
.icon {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 32px;
}
h3 { margin: 0 0 10px; font-size: 17px; }
.service-card p { color: var(--muted); font-size: 14px; margin: 0; }

.contact { padding-top: 25px; padding-bottom: 105px; }
.contact-box {
  background: linear-gradient(135deg, #10161d, #0e1116);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact-box p:not(.section-label) { color: var(--muted); max-width: 600px; }
.location { margin-top: 25px; }
.location span { color: var(--accent); padding: 0 7px; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.phone { font-size: 17px; font-weight: 600; }
footer { border-top: 1px solid var(--border); color: #707985; font-size: 12px; }
.footer-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; }

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-box { flex-direction: column; align-items: flex-start; }
  .contact-actions { align-items: flex-start; }
}
@media (max-width: 560px) {
  .container, .narrow { width: min(100% - 28px, 760px); }
  .hero { min-height: 650px; }
  .hero-content { padding-top: 95px; }
  h1 { letter-spacing: -2.5px; }
  .lead { font-size: 16px; }
  .section { padding: 75px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .contact-box { padding: 32px 24px; }
}
