:root {
  --bg: #0b1117;
  --bg-soft: #101821;
  --surface: #151d27;
  --surface-muted: #1b2530;
  --surface-strong: #0e151d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #e7edf3;
  --text-strong: #f8fbff;
  --muted: #b1bcc7;
  --muted-strong: #d5dde4;
  --accent: #ff6a00;
  --accent-strong: #ff7f1f;
  --accent-soft: rgba(255, 106, 0, 0.14);
  --blue: #74a4cf;
  --green: #69aa8c;
  --amber: #d39d3c;
  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.16);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1240px, calc(100vw - 48px));
  --fs-body: clamp(1rem, 0.16vw + 0.96rem, 1.06rem);
  --fs-copy-lead: clamp(1.06rem, 0.34vw + 0.98rem, 1.18rem);
  --fs-card-title: clamp(1.14rem, 0.36vw + 1.06rem, 1.28rem);
  --fs-hero-title: clamp(2.7rem, 3.9vw, 4rem);
  --fs-section-title: clamp(2.3rem, 4.1vw, 3.95rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 102px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid rgba(255, 106, 0, 0.56);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page {
  position: relative;
  overflow: clip;
}

.page > :not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1140px, calc(100vw - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: #0b1117;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: #0d131a;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.brand {
  position: relative;
  z-index: 2;
  color: var(--text-strong);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__accent {
  color: var(--accent);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 34px);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(231, 237, 243, 0.72);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text-strong);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-strong);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button--primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-strong);
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.26);
}

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

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}

.button--large {
  min-width: 232px;
}

.hero {
  position: relative;
  padding: 138px 0 42px;
}

.hero__ambient {
  display: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(400px, 0.84fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 36px;
}

.hero__content {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.eyebrow::after {
  display: none;
}

.eyebrow--hero {
  padding: 0;
  border: 0;
  background: transparent;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.hero__title,
.section-heading h2,
.quote-band h2 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-transform: none;
}

.hero__title {
  font-size: var(--fs-hero-title);
  max-width: 14.5ch;
  text-wrap: balance;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.text-accent {
  color: var(--accent-strong);
}

.section-title {
  width: 100%;
  text-wrap: initial;
}

.hero__description {
  max-width: 38rem;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: var(--fs-copy-lead);
  font-weight: 500;
  line-height: 1.72;
}

.text-emphasis-copy {
  font-size: var(--fs-body);
  font-weight: 500;
  font-style: normal;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero__trust li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
}

.hero__media {
  justify-self: end;
  width: 100%;
  max-width: 540px;
}

.hero__media-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: #101820;
  box-shadow: var(--shadow-lg);
}

.hero__media-frame::before {
  display: none;
}

.hero__media-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  pointer-events: none;
}

.hero__media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.92) contrast(1.08) brightness(0.96);
}

.hero__media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  gap: 6px;
  max-width: 260px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: #121922;
  box-shadow: var(--shadow-md);
}

.hero__media-badge span {
  color: rgba(231, 237, 243, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__media-badge strong {
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero__media-badge p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero__stats-wrap {
  position: relative;
  z-index: 1;
}

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

.stat-card {
  display: grid;
  align-content: start;
  min-height: 128px;
  padding: 24px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  color: var(--text-strong);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 2.7vw, 2.85rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.stat-card span {
  margin-top: 10px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-heading {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-bottom: 44px;
  text-align: left;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 28px 48px;
  justify-items: stretch;
}

.section-heading--about {
  width: 100%;
}

.section-heading--split > div {
  min-width: 0;
  width: 100%;
  max-width: none;
}

.section-heading--split h2 {
  max-width: none;
  font-size: clamp(2.35rem, 4vw, 3.95rem);
  text-wrap: initial;
}

.section-heading--split p {
  max-width: 48rem;
}

.section-heading__title-block {
  display: grid;
  gap: 18px;
  align-content: start;
}

.section-heading--about .section-title--about {
  max-width: none;
  font-size: clamp(2.55rem, 4.05vw, 4.05rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: initial;
}

.section-title--about .section-title__line {
  display: block;
  white-space: nowrap;
}

.section-heading h2 {
  font-size: var(--fs-section-title);
  max-width: 13ch;
  text-wrap: balance;
}

.section-heading h2.section-title--single-line {
  max-width: none;
  white-space: nowrap;
  text-wrap: initial;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.section-heading__copy {
  max-width: 62rem;
  color: var(--muted-strong);
  font-size: var(--fs-copy-lead);
  font-weight: 500;
  line-height: 1.72;
}

.about,
.services,
.reviews,
.contacts,
.quote-band {
  background: transparent;
}

.about::after,
.services::after,
.reviews::after,
.contacts::after {
  display: none;
}

.about__grid,
.services__grid,
.reviews__grid,
.contacts__grid {
  display: grid;
  gap: 22px;
}

.about__grid {
  grid-template-columns: 0.9fr 1fr 0.9fr;
}

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

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

.about-card,
.service-card,
.review-card,
.contact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.about-card:hover,
.service-card:hover,
.review-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md);
}

.about-card::before,
.service-card::before,
.review-card::before,
.contact-card::before {
  display: none;
}

.about-card {
  padding: 32px;
}

.about-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.about-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.about-card__number {
  display: block;
  margin-bottom: 0;
  color: var(--text-strong);
  font-family: "Manrope", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.about-card--accent {
  border-color: rgba(255, 106, 0, 0.18);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
}

.about-card--accent h3 {
  color: #fff;
}

.about-card--accent .check-list {
  color: rgba(255, 255, 255, 0.76);
}

.check-list,
.route-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 12px;
  color: var(--muted-strong);
}

.check-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.72;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: translateY(-50%);
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-card .route-tags {
  margin-top: 6px;
}

.route-tags span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  color: var(--text-strong);
  font-size: 0.82rem;
  font-weight: 600;
}

.service-card {
  min-height: 100%;
  padding: 32px;
  grid-template-rows: auto auto 1fr;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  border: 1px solid currentColor;
  border-radius: 12px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card__icon--orange {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.service-card__icon--yellow {
  color: var(--amber);
  background: rgba(211, 157, 60, 0.1);
}

.service-card__icon--blue {
  color: var(--blue);
  background: rgba(68, 97, 123, 0.08);
}

.service-card__icon--violet {
  color: #9fb0c2;
  background: rgba(159, 176, 194, 0.08);
}

.service-card__icon--green {
  color: var(--green);
  background: rgba(49, 83, 69, 0.08);
}

.service-card__icon--amber {
  color: var(--amber);
  background: rgba(122, 91, 31, 0.08);
}

.service-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Manrope", sans-serif;
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
  font-size: 1.01rem;
}

.review-card {
  padding: 30px;
  grid-template-rows: auto 1fr auto;
}

.review-card__rating {
  margin-bottom: 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.review-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.76;
}

.review-card strong {
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.quote-band {
  padding-top: 28px;
  padding-bottom: 28px;
}

.quote-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "content button";
  align-items: end;
  gap: 24px 32px;
  overflow: hidden;
  padding: 42px clamp(26px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
}

.quote-band__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--accent);
}

.quote-band__inner::after {
  display: none;
}

.quote-band__content,
.quote-band .button {
  position: relative;
  z-index: 1;
}

.quote-band__content {
  grid-area: content;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
}

.quote-band h2 {
  max-width: none;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  text-wrap: initial;
}

.quote-band p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.72;
}

.quote-band .button {
  grid-area: button;
  justify-self: end;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.22);
}

.quote-band .button:hover,
.quote-band .button:focus-visible {
  background: var(--accent-strong);
}

.contacts__grid {
  gap: 22px;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.location-panel__content {
  display: grid;
  align-content: start;
  gap: 16px;
}

.location-panel__content h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.26;
}

.location-panel__content p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.location-panel__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text-strong);
  font-weight: 700;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.location-panel__link:hover,
.location-panel__link:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
}

.location-panel__map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0f161e;
}

.location-panel__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: #252b33;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.22));
  transform: translate(-36px, -58px);
}

.map-pin__icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #f04f43;
  color: #fff;
  box-shadow: 0 4px 10px rgba(149, 28, 22, 0.24);
}

.map-pin__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 3px;
  height: 18px;
  border-radius: 999px;
  background: #f04f43;
  transform: translateX(-50%);
}

.map-pin__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.map-pin__label {
  max-width: min(250px, calc(100vw - 142px));
  margin-left: -2px;
  padding: 10px 14px 10px 18px;
  border-radius: 0 10px 10px 0;
  background: #fff;
  color: #2f3742;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.18;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.16);
}

.contact-card {
  padding: 28px;
}

.contact-card__label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p:first-of-type {
  display: block;
  margin: 0;
  color: var(--text-strong);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.contact-card--form {
  grid-column: 1 / -1;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text);
  padding: 15px 16px;
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(159, 171, 184, 0.78);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.45);
  background: var(--surface);
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.12);
}

.contact-form input[type="email"] {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  grid-column: 1 / -1;
}

.contact-card p.contact-form__hint,
.contact-card p.contact-form__status,
.contact-form__consent {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-form__consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  accent-color: var(--accent);
}

.contact-form__consent a {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--text);
  text-decoration-color: rgba(255, 106, 0, 0.5);
  text-underline-offset: 3px;
}

.contact-form__consent a:hover {
  color: var(--accent);
}

.contact-card p.contact-form__status {
  min-height: 1.5em;
  color: var(--muted-strong);
  font-weight: 700;
}

.contact-card p.contact-form__status.is-success {
  color: #8cd6a8;
}

.contact-card p.contact-form__status.is-error {
  color: #ff9a86;
}

.contact-form .button {
  width: fit-content;
  min-width: 220px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a1016;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  padding: 24px 0 30px;
  color: var(--muted-strong);
}

.site-footer p {
  margin: 0;
}

.site-footer__company,
.site-footer__meta {
  display: grid;
  gap: 8px;
}

.site-footer__company p:first-child {
  color: var(--text);
  font-weight: 800;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer__links a {
  color: var(--muted-strong);
  text-decoration-color: rgba(255, 106, 0, 0.45);
  text-underline-offset: 3px;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.legal-page {
  padding: 132px 0 72px;
}

.legal-page__inner {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.legal-page h1 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.03;
}

.legal-page h2 {
  margin: 34px 0 12px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.2vw, 1.65rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-page p {
  margin: 0 0 14px;
}

.legal-page ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(17, 26, 35, 0.76);
  padding: clamp(22px, 3vw, 38px);
}

.legal-card a {
  color: var(--text);
  text-decoration-color: rgba(255, 106, 0, 0.5);
  text-underline-offset: 3px;
}

.legal-card a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(640px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(17, 26, 35, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--text);
  text-decoration-color: rgba(255, 106, 0, 0.5);
  text-underline-offset: 3px;
}

.cookie-banner a:hover {
  color: var(--accent);
}

.cookie-banner .button {
  min-height: 44px;
  padding: 0 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] {
  transform: translateX(-16px);
}

[data-reveal="right"] {
  transform: translateX(16px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1280px) {
  .hero__layout,
  .quote-band__inner {
    grid-template-columns: 1fr;
  }

  .quote-band__inner {
    grid-template-areas:
      "content"
      "button";
  }

  .hero__content,
  .hero__media,
  .quote-band h2,
  .quote-band p {
    max-width: none;
  }

  .hero__title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    max-width: 12ch;
  }

  .hero__media {
    justify-self: stretch;
  }

  .hero__media-frame {
    min-height: 520px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .section-heading--about .section-title--about {
    max-width: none;
  }
}

@media (max-width: 1100px) {
  .header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .header__cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 86px 16px auto;
    display: grid;
    gap: 18px;
    justify-items: start;
    padding: 22px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: rgba(12, 18, 25, 0.98);
    box-shadow: var(--shadow-lg);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 128px;
  }

  .hero__media {
    justify-self: stretch;
    max-width: none;
  }

  .hero__media-frame {
    min-height: 520px;
  }

  .hero__stats,
  .about__grid,
  .reviews__grid,
  .contacts__grid,
  .location-panel {
    grid-template-columns: 1fr;
  }

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

  .contact-card--form {
    grid-column: auto;
  }

  .quote-band .button {
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .hero__title {
    font-size: clamp(2.5rem, 6.2vw, 3.7rem);
    max-width: 13ch;
  }

  .section-heading h2,
  .section-heading--split h2,
  .quote-band h2 {
    font-size: clamp(2rem, 4.8vw, 3rem);
    max-width: none;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 32px, 1240px);
  }

  html {
    scroll-padding-top: 92px;
  }

  .header__inner {
    min-height: 80px;
  }

  .brand {
    font-size: 1.16rem;
    letter-spacing: 0.18em;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 32px;
  }

  .hero__actions,
  .contact-form,
  .hero__stats,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
  }

  .hero__media-frame {
    min-height: 430px;
  }

  .button--large,
  .contact-form .button,
  .quote-band .button {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 92px 0;
  }

  .text-emphasis-copy {
    font-size: 1rem;
    line-height: 1.68;
  }
}

@media (max-width: 540px) {
  .hero__title,
  .section-heading h2,
  .quote-band h2 {
    line-height: 1.04;
  }

  .section-heading h2.section-title--single-line {
    white-space: normal;
  }

  .section-title--about .section-title__line {
    white-space: normal;
  }

  .hero__title {
    font-size: clamp(2.1rem, 10vw, 3rem);
    max-width: none;
  }

  .hero__title-line {
    white-space: normal;
  }

  .button {
    font-size: 0.95rem;
  }

  .hero__media-frame {
    min-height: 360px;
    border-radius: 14px;
  }

  .hero__media-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .map-pin__label {
    max-width: 154px;
    padding: 8px 10px 8px 14px;
    font-size: 0.78rem;
    line-height: 1.18;
    white-space: normal;
  }

  .about-card,
  .service-card,
  .review-card,
  .contact-card,
  .quote-band__inner,
  .section-lead {
    padding: 24px;
    border-radius: 14px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__links {
    justify-content: center;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
  }

  .cookie-banner .button {
    width: 100%;
  }

  .text-emphasis-copy {
    font-size: 0.98rem;
    line-height: 1.66;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
