:root {
  --bg: #07111f;
  --panel: #0e1b2f;
  --panel-2: #14253f;
  --text: #f4f7fb;
  --muted: #93a5c4;
  --accent: #ffbf2f;
  --accent-2: #46c7ff;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--bg), #14213d);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 17, 31, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04111e;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 72px 0 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(70, 199, 255, 0.16);
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section__header h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero__text,
.section__header p,
.info-card p,
.step-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #ffca5f);
  color: #07111f;
}

.btn--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.btn--full {
  width: 100%;
  margin-top: 8px;
}

.hero__highlights {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero__card,
.info-card,
.step-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.hero__card {
  padding: 24px;
  border-radius: 24px;
}

.card-head h2 {
  margin: 0 0 4px;
  font-size: 1.35rem;
}

.card-head p {
  margin: 0 0 18px;
  color: var(--muted);
}

label {
  display: block;
  margin-bottom: 12px;
}

label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.select-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-card {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 191, 47, 0.12);
  border: 1px solid rgba(255, 191, 47, 0.2);
}

.quote-card p {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.quote-card small {
  color: #ffe7aa;
}

.stats {
  padding: 18px 0 10px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats__grid article {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.stats__grid strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
}

.stats__grid span {
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.03);
}

.section__header {
  text-align: center;
  margin-bottom: 30px;
}

.cards-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.step-card {
  padding: 24px;
  border-radius: 22px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--accent);
}

.map-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.brand--footer {
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .hero__grid,
  .cards-grid,
  .steps-grid,
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  .select-row {
    grid-template-columns: 1fr;
  }
}
