:root {
  --bg: #07090c;
  --bg-soft: #0e1218;
  --panel: #121821;
  --panel-2: #171f2a;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #a9b2c3;
  --orange: #ff7a1a;
  --orange-2: #ff9d42;
  --steel: #7a8799;
  --radius: 26px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 122, 26, 0.17), transparent 28rem),
    radial-gradient(circle at 90% 8%, rgba(105, 126, 155, 0.18), transparent 32rem),
    linear-gradient(180deg, #07090c 0%, #0a0d12 55%, #050608 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 35%, rgba(255,122,26,0.03));
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 12, 0.78);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, background 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 122, 26, 0.58);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 122, 26, 0.26), rgba(255, 122, 26, 0.04));
  box-shadow: 0 0 38px rgba(255, 122, 26, 0.22);
  color: var(--orange);
}

.brand span:last-child {
  color: var(--text);
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  min-width: 0;
}

.menu a {
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a[aria-current="page"] {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #160b03;
  box-shadow: 0 18px 46px rgba(255, 122, 26, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button-dark {
  border-color: rgba(255, 122, 26, 0.35);
  background: rgba(255, 122, 26, 0.08);
  color: var(--orange-2);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 56px 0 62px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: contrast(1.18) saturate(0.86);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(7, 9, 12, 0.84) 46%, rgba(7, 9, 12, 0.5) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange-2);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5.3vw, 4.95rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-heading {
  display: grid;
  gap: 0.02em;
  max-width: 900px;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72);
}

.hero-heading-accent,
.hero-heading-main,
.hero-heading-sub {
  display: block;
}

.hero-heading-accent {
  color: var(--orange);
  font-size: 0.82em;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.hero-heading-main {
  color: #fff;
  font-size: 1.08em;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.hero-heading-sub {
  color: #f6f7fb;
  font-size: 0.42em;
  font-weight: 950;
  letter-spacing: -0.012em;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: -12px 0 26px;
  padding: 12px 22px;
  border-radius: 0 18px 18px 0;
  background:
    linear-gradient(90deg, rgba(255, 122, 26, 0.95), rgba(255, 122, 26, 0.72)),
    var(--orange);
  color: #120801;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(255, 122, 26, 0.2);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.6vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.lead {
  max-width: 760px;
  color: #d9dee8;
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 38px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.fact {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.fact strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.fact span {
  color: var(--muted);
  font-size: 0.92rem;
}

.fact-text-only {
  display: flex;
  align-items: center;
}

.fact-text-only span {
  color: var(--text);
  font-weight: 850;
}

.request-card,
.form-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(21, 29, 39, 0.96), rgba(9, 12, 17, 0.96));
  box-shadow: var(--shadow);
}

.request-card {
  padding: 26px;
  margin-top: -58px;
}

.request-card p,
.form-card p,
.muted {
  color: var(--muted);
}

.section {
  padding: 94px 0;
}

.section-tight {
  padding: 58px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

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

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

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

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

.card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.082), rgba(255,255,255,0.032));
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.22);
  min-width: 0;
}

.card-pad {
  padding: 28px;
}

.service-card {
  min-height: 420px;
}

.service-card img,
.case-card img,
.media-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08);
}

.service-card .card-pad,
.case-card .card-pad {
  display: flex;
  flex-direction: column;
  min-height: 190px;
}

.service-card p,
.case-card p,
.review-card p,
.city-card p {
  color: var(--muted);
}

.service-card .button,
.case-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 122, 26, 0.13), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.reviews-section .container {
  position: relative;
  z-index: 1;
}

.review-controls {
  display: flex;
  gap: 10px;
}

.slider-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.slider-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 26, 0.56);
  background: rgba(255, 122, 26, 0.12);
}

.review-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(840px, 1fr);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 0 18px;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

.review-case {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  min-height: 360px;
  scroll-snap-align: start;
}

.review-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.review-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.7%, rgba(255,255,255,0.72) 49.7% 50.3%, transparent 50.3% 100%),
    linear-gradient(180deg, transparent 65%, rgba(7,9,12,0.42));
  pointer-events: none;
}

.review-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08);
}

.review-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.review-badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 122, 26, 0.34);
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.1);
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-content blockquote {
  margin: 0;
  color: #e7ebf3;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.55;
}

.review-author {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.review-dots button[aria-current="true"] {
  width: 30px;
  background: var(--orange);
}

.contacts-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin: 12px 0 24px;
}

.contact-lines a,
.contact-lines div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-lines strong {
  color: var(--orange-2);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-lines span {
  color: var(--text);
  font-weight: 800;
}

.map-card {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--panel);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.22) contrast(1.05);
}

.map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.map-actions p {
  margin: 0;
}

.map-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.icon-card {
  position: relative;
  padding: 28px;
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 122, 26, 0.12);
  color: var(--orange-2);
  font-weight: 900;
}

.before-after-projects {
  display: grid;
  gap: 22px;
}

.before-after-project {
  padding: 24px;
}

.before-after-title {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  margin-bottom: 22px;
}

.before-after-title p {
  margin: 0;
  color: var(--muted);
}

.before-after-comparison {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #0a0d12;
}

.before-after-comparison::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 2px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.62);
}

.before-after-comparison img {
  width: 100%;
  height: min(58vw, 620px);
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.before-label,
.after-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 9, 12, 0.84);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
  background: rgba(255, 122, 26, 0.92);
  color: #140901;
}

.price-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-row {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.036);
  min-width: 0;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong {
  color: var(--orange-2);
}

.equipment-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.equipment-strip .media-card img {
  height: 100%;
  min-height: 430px;
}

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

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

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.7);
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: #d8deea;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #dce2ec;
  font-size: 0.9rem;
  font-weight: 800;
}

.field-label {
  color: #dce2ec;
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: inherit;
  max-width: 100%;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #150a02;
  font-weight: 850;
  padding: 9px 12px;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.messenger-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.messenger-choice label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.messenger-choice input {
  accent-color: var(--orange);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note a,
.legal-doc a {
  color: var(--orange-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero--compact h1 {
  max-width: 820px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-doc {
  max-width: 820px;
}

.legal-doc h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

.legal-doc .list {
  margin: 0 0 18px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 26, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,122,26,0.25), rgba(255,255,255,0.05)),
    linear-gradient(180deg, rgba(27,35,46,0.94), rgba(9,12,16,0.94));
  padding: 42px;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.16);
  filter: blur(6px);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 98px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7,9,12,0.95), rgba(7,9,12,0.63)),
    var(--hero-image, none) center / cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #dbe1eb;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
  min-width: 0;
}

.copyright {
  margin-top: 34px;
  color: #717b8c;
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  body {
    background:
      radial-gradient(circle at 0% 0%, rgba(255, 122, 26, 0.16), transparent 20rem),
      linear-gradient(180deg, #07090c 0%, #0a0d12 62%, #050608 100%);
  }

  .menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(12, 16, 22, 0.98);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid,
  .equipment-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    max-width: 780px;
  }

  .request-card {
    max-width: 520px;
    align-self: start;
    margin-top: 0;
  }

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

  .review-slider {
    grid-auto-columns: minmax(78vw, 1fr);
  }

  .review-case {
    grid-template-columns: 1fr;
  }

  .review-image-wrap {
    min-height: 300px;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .menu {
    top: 68px;
  }

  .phone-link {
    display: none;
  }

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

  .request-card {
    order: -1;
    max-width: none;
    margin-top: 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.94) 0%, rgba(7, 9, 12, 0.86) 58%, rgba(7, 9, 12, 0.96) 100%);
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  .hero-heading {
    gap: 0.03em;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.76);
  }

  .hero-heading-accent {
    font-size: 0.78em;
  }

  .hero-heading-main {
    font-size: 1em;
  }

  .hero-heading-sub {
    font-size: 0.46em;
    line-height: 1.15;
  }

  .hero-location-badge {
    margin: -8px 0 22px;
    padding: 10px 14px;
    border-radius: 0 14px 14px 0;
    font-size: 0.82rem;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .messenger-choice {
    grid-template-columns: 1fr;
  }

  .review-controls {
    display: none;
  }

  .review-slider {
    grid-auto-columns: 88vw;
    gap: 14px;
  }

  .review-image-wrap {
    min-height: 230px;
  }

  .review-content {
    padding: 24px;
  }

  .map-actions {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .map-buttons {
    justify-content: stretch;
  }

  .map-buttons .button {
    width: 100%;
  }

  .hero-facts,
  .grid-2,
  .grid-3,
  .grid-4,
  .before-after-title,
  .price-row {
    grid-template-columns: 1fr;
  }

  .before-after-project {
    padding: 16px;
  }

  .before-after-comparison img {
    height: 430px;
    min-height: 430px;
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding: 42px 0;
  }

  .service-card img,
  .case-card img,
  .media-card img {
    height: 205px;
  }

  .cta-band {
    padding: 22px;
    border-radius: 26px;
  }

  .brand {
    letter-spacing: 0.02em;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .request-card,
  .form-card,
  .card-pad,
  .icon-card {
    padding: 22px;
  }

  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .nav {
    gap: 10px;
  }

  .brand {
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(1.84rem, 10.5vw, 2.55rem);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .eyebrow::before {
    width: 26px;
  }

  .fact,
  .price-row {
    padding: 18px;
  }

  .button {
    min-height: 46px;
    padding: 0 15px;
    font-size: 0.94rem;
  }
}
