:root {
  --blue: #0b4f9e;
  --blue-dark: #083a75;
  --blue-light: #e8f1fb;
  --blue-mid: #1a6fd4;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #fef2f2;
  --black: #111111;
  --white: #ffffff;
  --gray-bg: #f8fafc;
  --gray-muted: #5b6472;
  --gray-line: #e2e8f0;
  --gold: #f59e0b;
  --shadow: 0 24px 64px -32px rgba(11, 79, 158, 0.28);
  --soft: 0 10px 30px -18px rgba(17, 17, 17, 0.14);
  --max: 1160px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--gray-bg);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 86px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(11, 79, 158, 0.35);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--max), 100% - 36px);
  margin: auto;
}

.narrow {
  width: min(820px, 100% - 36px);
  margin: auto;
}

.section {
  padding: 74px 0;
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  color: var(--blue-dark);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(42px, 5.8vw, 68px);
  margin: 16px 0;
}

h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  margin: 10px 0 14px;
}

h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

p {
  margin: 0;
}

.lead {
  color: var(--gray-muted);
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(11, 79, 158, 0.18);
  background: var(--white);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: var(--soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  padding: 15px 22px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.btn-order {
  background: var(--red);
  box-shadow: 0 14px 32px -16px rgba(220, 38, 38, 0.75);
}

.btn-order:hover {
  background: var(--red-dark);
}

.btn-call {
  background: var(--blue);
  box-shadow: 0 14px 32px -16px rgba(11, 79, 158, 0.55);
}

.btn-call:hover {
  background: var(--blue-dark);
}

.btn-ghost {
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--gray-line);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  box-shadow: var(--soft);
}

.grid {
  display: grid;
  gap: 18px;
}

.top {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.top .wrap {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  flex: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-line);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo img {
  width: min(240px, 52vw);
  height: auto;
}

.navlinks {
  display: none;
  gap: 22px;
  align-items: center;
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
}

.navlinks a:hover {
  color: var(--blue);
}

.nav-call {
  display: none;
}

.stars {
  color: var(--gold);
  letter-spacing: 1px;
}

footer {
  background: var(--black);
  color: #b8c0cc;
}

.footer-grid {
  display: grid;
  gap: 24px;
  padding: 48px 0;
}

footer img {
  width: 220px;
  background: var(--white);
  border-radius: 10px;
  padding: 8px;
}

footer h3 {
  font-size: 16px;
  letter-spacing: 0;
  color: var(--white);
}

footer a {
  color: var(--white);
  font-weight: 700;
}

footer a:hover {
  color: var(--blue-light);
}

.map {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 12px;
}

.fine {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
}

.floating {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-line);
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 10px;
  padding: 10px 12px;
  box-shadow: 0 -12px 30px -20px rgba(17, 17, 17, 0.25);
}

.floating .btn {
  min-height: 52px;
  font-size: 15px;
  padding: 14px 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  max-width: 560px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 34px 28px;
  text-align: center;
}

.thanks-tick {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-light);
  display: grid;
  place-items: center;
  color: var(--blue);
  margin: 0 auto 18px;
}

.thanks-tick svg {
  width: 36px;
  height: 36px;
}

.thanks-steps {
  text-align: left;
  background: var(--blue-light);
  border: 1px solid rgba(11, 79, 158, 0.15);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 15px;
}

.thanks-steps b {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.thanks-note {
  font-size: 13px;
  color: var(--gray-muted);
  margin-top: 16px;
}

@media (min-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .navlinks,
  .nav-call {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1.2fr;
    align-items: start;
  }

  .floating {
    left: 50%;
    transform: translateX(-50%);
    max-width: 460px;
    right: auto;
    border-radius: 18px 18px 0 0;
    padding: 8px 10px;
  }

  .floating .btn {
    min-height: 46px;
    font-size: 14px;
  }
}

@media (max-width: 819px) {
  .top .wrap {
    justify-content: flex-start;
    overflow: auto;
    flex-wrap: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}