:root {
  --black: #07090b;
  --black-2: #0d1114;
  --steel: #1c252b;
  --steel-2: #28343b;
  --white: #ffffff;
  --text: #e8eef1;
  --muted: #9ca9af;
  --yellow: #fff200;
  --green: #b5ff00;
  --line: rgba(255,255,255,.14);
  --shadow: 0 28px 70px rgba(0,0,0,.46);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(255,242,0,.16), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(181,255,0,.13), transparent 26%),
    linear-gradient(135deg, #050607 0%, #131a1f 42%, #080a0c 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .72;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255,255,255,.045) 18.2% 18.5%, transparent 18.8% 47%, rgba(255,255,255,.04) 47.2% 47.55%, transparent 47.9%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 82px);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

.header { position: relative; padding-bottom: 70px; }
.nav {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 50;
}
.brand {
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 13px 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0,0,0,.26);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8,11,13,.68);
  backdrop-filter: blur(14px);
}
.nav-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 900;
  transition: .2s ease;
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  outline: 0;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

.hero { padding-top: 12px; }
.banner-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.19);
  background: #11171b;
  box-shadow: var(--shadow);
}
.banner-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(310px, .78fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 26px;
}
.panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    linear-gradient(135deg, rgba(40,52,59,.94), rgba(8,10,12,.95));
  box-shadow: var(--shadow);
}
.hero-copy,
.price-card,
.intro-card,
.service-card,
.location-card,
.contact-card { border-radius: var(--radius); }
.hero-copy { padding: clamp(28px, 5vw, 56px); overflow: hidden; position: relative; }
.hero-copy::after {
  content: "";
  position: absolute;
  right: -85px;
  top: -85px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,242,0,.24), transparent 70%);
}
.overline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.overline::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
}
h1, h2, h3 { color: var(--white); line-height: .98; }
h1 {
  font-size: clamp(3rem, 9vw, 7.4rem);
  text-transform: uppercase;
  letter-spacing: -.07em;
  text-shadow: 0 8px 0 rgba(0,0,0,.43);
  position: relative;
  z-index: 1;
}
.subtitle {
  margin-top: 12px;
  color: var(--yellow);
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  font-weight: 950;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.service-line {
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 950;
  letter-spacing: .03em;
  position: relative;
  z-index: 1;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; position: relative; z-index: 1; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-3px); outline: 0; }
.primary { color: #090b0d; background: linear-gradient(135deg, var(--yellow), var(--green)); box-shadow: 0 18px 38px rgba(255,242,0,.18); }
.ghost { color: var(--white); border-color: var(--line); background: rgba(255,255,255,.07); }
.dark { color: var(--white); background: #0b0e10; border-color: rgba(0,0,0,.25); }
.full { width: 100%; }

.price-card {
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.price-card h2 { font-size: clamp(1.5rem, 3vw, 2.45rem); text-transform: uppercase; }
.price-card strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.08em;
  text-shadow: 0 8px 0 rgba(0,0,0,.42);
}

.intro, .services, .location, .contact { padding: 86px 0; }
.title-block { max-width: 760px; margin-bottom: 28px; }
.title-block h2,
.location-card h2,
.contact-title h2 { font-size: clamp(2rem, 5vw, 4.15rem); letter-spacing: -.055em; }
.intro-card {
  padding: clamp(25px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 24px;
  align-items: center;
  line-height: 1.75;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.highlight-text { color: var(--yellow); font-weight: 950; text-transform: uppercase; letter-spacing: .03em; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  min-height: 188px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,255,0,.22), transparent 70%);
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(255,242,0,.46); }
.service-card span { color: var(--green); font-weight: 950; letter-spacing: .14em; }
.service-card h3 { font-size: clamp(1.45rem, 2.6vw, 2.2rem); letter-spacing: -.04em; position: relative; z-index: 1; }

.price-band {
  border-block: 1px solid rgba(255,242,0,.24);
  background: linear-gradient(90deg, rgba(255,242,0,.90), rgba(181,255,0,.86));
  color: #080a0c;
}
.price-inner {
  padding-block: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
.price-band .overline { color: #111; margin-bottom: 8px; }
.price-band .overline::before { background: #111; }
.price-band h2 { color: #080a0c; font-size: clamp(3rem, 8vw, 6.5rem); letter-spacing: -.08em; text-shadow: 0 4px 0 rgba(255,255,255,.28); }

.location-card {
  padding: clamp(26px, 5vw, 54px);
  display: flex;
  align-items: center;
  gap: 24px;
}
.location-mark {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: #080a0c;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  font-size: 3rem;
  font-weight: 950;
}
.location-card p:last-child { margin-top: 12px; color: var(--muted); font-weight: 900; }
.contact-layout { display: grid; grid-template-columns: 1fr minmax(310px, .82fr); gap: 24px; align-items: start; }
.contact-title p:last-child { margin-top: 22px; max-width: 640px; color: var(--text); line-height: 1.75; font-size: 1.12rem; }
.contact-card { padding: clamp(23px, 4vw, 38px); }
.contact-row { display: grid; gap: 8px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row:first-child { padding-top: 0; }
.contact-row span { color: var(--muted); font-size: .75rem; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.contact-row a,
.contact-row strong { color: var(--white); font-size: 1.14rem; font-weight: 950; }
.contact-card .btn { margin-top: 24px; }
.footer { border-top: 1px solid var(--line); padding: 32px 0 104px; background: rgba(0,0,0,.26); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); }
.footer strong, .footer a { color: var(--white); font-weight: 950; }
.footer p { margin-top: 6px; }
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  color: #080a0c;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  box-shadow: 0 22px 52px rgba(0,0,0,.38);
  font-weight: 950;
}
.floating-call span { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: min(320px, 100%);
    display: grid;
    gap: 6px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  body.menu-open .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-menu a { border-radius: 14px; }
  .hero-layout,
  .intro-card,
  .contact-layout { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .section,
  .nav { width: min(100% - 24px, var(--max)); }
  .header { padding-bottom: 48px; }
  .brand { font-size: .82rem; }
  .banner-card { border-radius: 16px; }
  .hero-copy,
  .price-card,
  .intro-card,
  .service-card,
  .location-card,
  .contact-card { border-radius: 22px; }
  .actions .btn,
  .price-inner .btn { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 148px; }
  .intro, .services, .location, .contact { padding: 58px 0; }
  .location-card { flex-direction: column; align-items: flex-start; }
  .location-mark { width: 76px; height: 76px; font-size: 2.3rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .floating-call { left: 12px; right: 12px; bottom: 12px; align-items: center; border-radius: 16px; }
}
