:root {
  --bg: #05070b;
  --bg-2: #07111f;
  --panel: #0b1220;
  --panel-soft: #101a2b;
  --text: #f7f1e5;
  --muted: #b8b0a1;
  --gold: #d7ad58;
  --gold-2: #f2d98a;
  --line: rgba(215, 173, 88, 0.24);
  --white-line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 173, 88, 0.16), transparent 34rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 55%, #09090b);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-phone {
  transition: color 0.2s ease;
}

.nav a:hover,
.header-phone:hover {
  color: var(--gold-2);
}

.header-phone {
  color: var(--gold-2);
  font-weight: 700;
  white-space: nowrap;
}

.hero,
.section,
.final-cta,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 40px;
  min-height: calc(100vh - 86px);
  align-items: center;
  padding: 72px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 19px;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #111014;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 42px rgba(215, 173, 88, 0.24);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button--line {
  border-color: var(--white-line);
  color: var(--muted);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 38px 0 0;
}

.hero__stats div {
  padding: 18px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.hero__stats dt {
  color: var(--gold-2);
  font-size: 26px;
  font-weight: 800;
}

.hero__stats dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 22, 0.88);
  box-shadow: var(--shadow);
}

.logo-orbit {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  overflow: hidden;
}

.logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--white-line);
}

.route-card span {
  color: var(--gold-2);
  font-weight: 800;
}

.route-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 42px;
  max-width: none;
  align-items: end;
}

.section-heading--split > p {
  color: var(--muted);
}

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

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-grid article,
.services-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.problem-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--gold-2);
  font-weight: 800;
}

.problem-grid p,
.services-grid p,
.offer-card p,
.guarantee p,
.faq p,
.final-cta p {
  color: var(--muted);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 32px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 173, 88, 0.15), rgba(10, 20, 36, 0.88)),
    var(--panel);
  box-shadow: var(--shadow);
}

.offer-card .button {
  justify-self: start;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-2);
  content: "✓";
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  padding: 26px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--gold-2);
  font-weight: 800;
}

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

.guarantee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.guarantee__text {
  max-width: 760px;
}

.guarantee__badge {
  display: grid;
  place-items: center;
  flex: 0 0 190px;
  height: 190px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(215, 173, 88, 0.08);
  text-align: center;
}

.guarantee__badge strong {
  display: block;
  color: var(--gold-2);
  font-size: 72px;
  line-height: 0.95;
}

.guarantee__badge span {
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(215, 173, 88, 0.16), rgba(255, 255, 255, 0.04));
}

.final-cta h2 {
  max-width: 720px;
}

.contact-actions {
  justify-content: flex-end;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  color: #111014;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .section-heading--split,
  .offer-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
  }

  .problem-grid,
  .services-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
  }

  .brand span {
    display: none;
  }

  .header-phone {
    font-size: 14px;
  }

  .hero,
  .section,
  .final-cta,
  .footer {
    width: min(100% - 20px, 1180px);
  }

  .hero {
    padding: 42px 0 28px;
  }

  h1 {
    font-size: 42px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__stats,
  .problem-grid,
  .services-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .offer-card,
  .guarantee,
  .final-cta {
    padding: 22px;
  }

  .button {
    width: 100%;
  }

  .guarantee {
    display: block;
  }

  .guarantee__badge {
    width: 160px;
    height: 160px;
    margin-top: 24px;
  }

  .footer {
    display: grid;
    padding-bottom: 84px;
  }

  .floating-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 18px;
  }
}
