:root {
  --bg: #080808;
  --bg-soft: #101010;
  --gold: #d8b25d;
  --gold-soft: #f0d48c;
  --text: #f5f2e9;
  --muted: #b7ae99;
  --line: rgba(216, 178, 93, 0.26);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #17120a 0%, var(--bg) 45%);
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.045;
  background-image: radial-gradient(#ffffff 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.8);
  border-color: var(--line);
}

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

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.logo span {
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 22px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, #b58b34, #f0d48c 60%, #b98e38);
  color: #17130b;
  box-shadow: 0 8px 26px rgba(216, 178, 93, 0.35);
}

.btn-dark {
  border-color: var(--line);
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
}

.btn-outline {
  border-color: var(--line);
  color: var(--gold-soft);
}

.phone-link {
  gap: 8px;
  white-space: nowrap;
}

.phone-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding-top: 96px;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.06) contrast(1.04) brightness(0.82);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.38) 14%, rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 72% 18%, rgba(216, 178, 93, 0.18) 0%, rgba(216, 178, 93, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

@media (min-width: 1100px) {
  .hero-content {
    margin-left: 16px;
  }
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.08;
  margin: 0 0 18px;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0;
  color: #e7dfcf;
  line-height: 1.68;
  max-width: 660px;
}

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

.hero-metrics {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
}

.hero-metrics div {
  border: 1px solid var(--line);
  background: rgba(6, 6, 6, 0.56);
  border-radius: 14px;
  padding: 16px 14px;
}

.hero-metrics span {
  display: block;
  color: var(--gold-soft);
  font-weight: 700;
}

.hero-metrics p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.section-dark {
  background: linear-gradient(180deg, rgba(17, 15, 11, 0.66), rgba(10, 10, 10, 0.95));
}

h2 {
  margin: 0 0 28px;
  font-size: clamp(1.6rem, 3.1vw, 2.5rem);
  color: var(--gold-soft);
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.text-grid p,
.section-lead {
  margin: 0;
  color: #e7dfcf;
  line-height: 1.76;
}

.section-lead + .section-lead {
  margin-top: 12px;
}

.cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(11, 11, 11, 0.7);
  padding: 22px 20px;
}

.card h3,
.steps h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.card ul {
  margin: 0;
  padding-left: 20px;
  color: #ece4d3;
  line-height: 1.6;
}

.steps {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.68);
  padding: 24px 22px;
}

.steps ol {
  margin: 0;
  padding-left: 24px;
  line-height: 1.7;
  color: #efe7d7;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 10px 24px;
}

.company-grid p {
  margin: 0;
  color: #e8e0d0;
}

.company-address {
  grid-column: 1 / -1;
  padding-top: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  background: #070707;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
}

.footer-wrap a {
  color: var(--gold-soft);
  text-decoration: none;
}

.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(10, 10, 10, 0.62);
}

.yandex-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fc3f1d;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.82rem;
}

.rating-value {
  color: var(--gold-soft);
  font-weight: 700;
}

.rating-stars {
  color: #ffd469;
  letter-spacing: 0.08em;
  font-size: 0.93rem;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .text-grid,
  .cards,
  .company-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 92vh;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .header-wrap {
    min-height: 66px;
  }

  .btn {
    width: 100%;
  }
}
