:root {
  --bg: #050b16;
  --panel: #0c1424;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --line: #1f2937;
  --accent: #60a5fa;
  --accent-dark: #1e3a8a;
}

* { box-sizing: border-box; }

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

.container { width: min(1120px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 11, 22, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.logo {
  height: 56px;
  width: auto;
  border-radius: 8px;
}

.hero {
  padding: 84px 0 72px;
  background: radial-gradient(circle at 15% 10%, #172554 0%, #050b16 58%);
}

.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #334155;
  color: #bfdbfe;
  font-size: 0.8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 14px 0 12px; max-width: 16ch; }
.hero p { color: var(--muted); max-width: 720px; line-height: 1.7; }

.hero-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

.section { padding: 68px 0; }
.section h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 14px; }

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.card p { color: var(--muted); line-height: 1.65; }

.area p { color: var(--muted); }

.map-wrap {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.quote {
  background: linear-gradient(180deg, rgba(96,165,250,0.08), rgba(5,11,22,0));
}

.quote-form {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  max-width: 760px;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #0b1220;
  color: var(--text);
}

input::placeholder, textarea::placeholder { color: #94a3b8; }

.form-status {
  margin: 4px 2px 0;
  font-size: .92rem;
  color: #cbd5e1;
}
.form-status.success { color: #86efac; }
.form-status.error { color: #fca5a5; }

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0b1020;
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }

.btn-secondary {
  background: transparent;
  border-color: #475569;
  color: #dbeafe;
}

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  color: #94a3b8;
}

@media (max-width: 640px) {
  .logo { height: 48px; }
  .map-wrap iframe { height: 280px; }
}
