* {
  box-sizing: border-box;
}

:root {
  --bg: #091624;
  --bg-soft: #0f2238;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --text: #eef4fb;
  --muted: #b7c4d6;
  --gold: #f2c14e;
  --gold-2: #ffd978;
  --line: rgba(255,255,255,0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0,0,0,0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(242,193,78,0.12), transparent 22%),
    linear-gradient(180deg, #081320 0%, #0a1727 100%);
  color: var(--text);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(8, 19, 32, 0.8);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0b1220;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: var(--shadow);
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 14px;
}

select {
  background: var(--panel);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.badge,
.section-kicker {
  display: inline-block;
  color: var(--gold-2);
  background: rgba(242,193,78,0.08);
  border: 1px solid rgba(242,193,78,0.22);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.03;
  margin: 18px 0 18px;
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 12px 0;
}

h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.lead,
.section-head p,
.card p,
.stat span,
.contact-box p,
.quote-form span {
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
}

.btn-secondary {
  background: var(--panel);
  color: var(--white);
  border-color: var(--line);
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 16px;
}

.point {
  color: var(--text);
}

.hero-card,
.card,
.stat,
.contact-box,
.quote-form {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(242,193,78,0.22), transparent 65%);
}

.service-mini-list {
  padding-left: 18px;
  line-height: 1.9;
  color: var(--text);
}

.contact-card {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.section {
  padding: 40px 0 70px;
}

.section-dark {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-head.left {
  text-align: left;
  margin: 0 0 22px;
}

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

.card {
  padding: 24px;
}

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

.stat {
  padding: 24px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--gold-2);
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.contact-box {
  padding: 24px;
}

.quote-form {
  padding: 24px;
  display: grid;
  gap: 14px;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding: 14px 14px;
  font: inherit;
}

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

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .cards,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav,
  .footer-wrap,
  .actions,
  .quick-points,
  .hero-cta,
  .hero-grid,
  .contact-grid,
  .cards,
  .stats {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .actions {
    width: 100%;
  }

  .phone-link,
  select {
    width: 100%;
    text-align: center;
  }

  h1 {
    max-width: none;
  }
}
