:root {
  --bg: #03090b;
  --panel: rgba(18, 27, 31, 0.78);
  --panel-strong: rgba(20, 30, 35, 0.94);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #f5f7f8;
  --muted: #aeb7bd;
  --dim: #78858c;
  --red: #dd1b1b;
  --red-dark: #b71012;
  --blue: #6ec6ff;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  --font-condensed: "Bahnschrift Condensed", "Arial Narrow", "Franklin Gothic Condensed", Impact, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 5%, rgba(40, 56, 61, 0.26), transparent 30vw),
    linear-gradient(180deg, #020607 0%, #050b0d 48%, #020607 100%);
  color: var(--text);
  font-family: var(--font-body);
}

body {
  min-width: 320px;
}

button,
input,
select {
  font: inherit;
}

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

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

img,
video,
svg {
  display: block;
}

.container {
  width: min(1180px, calc(100% - clamp(32px, 6vw, 70px)));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  padding: 38px 0 0;
}

.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
}

.logo {
  position: relative;
  display: inline-grid;
  width: 140px;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 30px;
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.logo i {
  position: absolute;
  top: 4px;
  right: 10px;
  width: 26px;
  height: 18px;
  border: 2px solid var(--red);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  transform: rotate(16deg);
}

.logo i::before,
.logo i::after {
  position: absolute;
  content: "";
  bottom: -3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.logo i::before {
  left: 3px;
}

.logo i::after {
  right: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.7vw, 48px);
  color: #e4e8ea;
  font-family: var(--font-condensed);
  font-size: 15px;
}

.main-nav a,
.header-phone,
.footer-inner button,
.link-button {
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover,
.header-phone:hover,
.footer-inner button:hover,
.link-button:hover {
  color: #fff;
}

.header-phone {
  justify-self: end;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 14, 17, 0.8);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(610px, 76vh, 720px);
  padding: 1px 0 62px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg) 78%);
  pointer-events: none;
}

.hero-video-wrap {
  position: absolute;
  z-index: 0;
  top: 92px;
  right: max(0px, calc((100vw - 1440px) / 2));
  width: min(62vw, 930px);
  height: min(58vw, 590px);
  max-height: 640px;
  opacity: 1;
  overflow: hidden;
  border-radius: 0;
  filter: contrast(1.18) saturate(1.05) brightness(1.18);
}

.hero-video-wrap::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(3, 9, 11, 0.46) 25%, rgba(3, 9, 11, 0.02) 58%, rgba(3, 9, 11, 0.14) 100%),
    radial-gradient(circle at 55% 52%, rgba(150, 206, 226, 0.2), transparent 27%),
    radial-gradient(circle at 22% 45%, rgba(97, 139, 156, 0.16), transparent 28%);
  pointer-events: none;
}

.hero-video-wrap::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background:
    radial-gradient(ellipse 20% 7% at 58% 52%, rgba(225, 246, 255, 0.46), rgba(109, 197, 255, 0.24) 34%, transparent 68%),
    radial-gradient(ellipse 12% 5% at 48% 53%, rgba(225, 246, 255, 0.28), rgba(109, 197, 255, 0.14) 34%, transparent 68%),
    radial-gradient(ellipse 28% 15% at 57% 55%, rgba(103, 184, 231, 0.16), transparent 64%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 64% 42%, rgba(122, 174, 194, 0.24), transparent 18vw),
    radial-gradient(circle at 44% 38%, rgba(73, 102, 112, 0.18), transparent 18vw),
    radial-gradient(circle at 25% 0%, rgba(30, 44, 48, 0.22), transparent 35vw),
    linear-gradient(90deg, #020607 0%, rgba(2, 6, 7, 0.9) 29%, rgba(2, 6, 7, 0.18) 66%, rgba(2, 6, 7, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: clamp(610px, 76vh, 720px);
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 132px;
}

.hero-copy {
  width: min(720px, 64%);
  margin-bottom: clamp(42px, 7vh, 70px);
}

.hero-copy h1,
.section h2,
.modal-card h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(42px, 4.35vw, 58px);
  line-height: 1.12;
}

.hero-copy p {
  width: min(430px, 100%);
  margin: 34px 0 30px;
  color: #c6cdd1;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  border-color: var(--red);
  background: linear-gradient(135deg, #f02020, var(--red-dark));
  box-shadow: 0 14px 40px rgba(221, 27, 27, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff2a2a, #c91113);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(5, 11, 13, 0.48);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 25px 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(17, 27, 32, 0.94), rgba(13, 21, 25, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 0 24px;
  border-right: 1px solid var(--line-soft);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-item svg {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item .icon-parts {
  padding: 5px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 42%, rgba(110, 198, 255, 0.1), transparent 68%),
    rgba(255, 255, 255, 0.02);
  stroke-width: 2.15;
}

.trust-item .icon-accent,
.reason-item .icon-accent {
  stroke: var(--red);
}

.trust-item p {
  margin: 0;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.trust-item span {
  color: #d9e0e3;
}

.section {
  position: relative;
  z-index: 5;
  padding: 28px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.link-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-family: var(--font-condensed);
  font-size: 16px;
  cursor: pointer;
}

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

.brand-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: end;
}

.brand-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.brand-logo-img {
  width: clamp(118px, 8.7vw, 132px);
  height: 104px;
  object-fit: contain;
}

.brand-logo-img.is-wide {
  width: clamp(134px, 9.4vw, 148px);
}

.section-panel,
.contact-card,
.review-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 34, 39, 0.84), rgba(10, 17, 20, 0.88)),
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.06), transparent 24%);
  box-shadow: var(--shadow);
}

.services .section-panel,
.calculator .section-panel {
  padding: 30px 28px 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  padding: 0 0 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(21, 31, 36, 0.9);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.service-card:hover {
  border-color: rgba(221, 27, 27, 0.54);
  background: rgba(26, 39, 45, 0.96);
  transform: translateY(-3px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
  filter: saturate(0.95) brightness(1.035);
}

.service-card span,
.service-card small {
  display: block;
  padding: 0 16px;
  font-family: var(--font-condensed);
}

.service-card span {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}

.service-card small {
  margin-top: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.calculator .section-panel {
  padding: 38px 36px 36px;
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(210px, 0.92fr);
  gap: 18px;
  align-items: end;
  margin-top: 34px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

input,
select {
  width: 100%;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(15, 24, 28, 0.86);
  color: #f4f7f8;
  padding: 0 18px;
  outline: 0;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #aeb7bd 50%),
    linear-gradient(135deg, #aeb7bd 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 24px,
    calc(100% - 16px) 24px;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

input:focus,
select:focus {
  border-color: rgba(110, 198, 255, 0.58);
  box-shadow: 0 0 0 3px rgba(110, 198, 255, 0.08);
}

.calc-note {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.calc-note.is-result {
  color: #fff;
  font-weight: 800;
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.85s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.reasons {
  margin-top: 18px;
  padding: 70px 0 62px;
  background:
    radial-gradient(circle at 50% 18%, rgba(56, 76, 84, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(5, 12, 14, 0.94), rgba(11, 20, 24, 0.72), rgba(5, 12, 14, 0.94)),
    linear-gradient(180deg, rgba(3, 9, 11, 0.64), rgba(3, 9, 11, 0.96));
}

.reasons::before,
.reasons::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.reasons::before {
  top: 0;
}

.reasons::after {
  bottom: 0;
}

.reasons h2 {
  text-align: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.reason-item {
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 0 24px;
  text-align: center;
}

.reason-item + .reason-item {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.reason-item svg {
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-equipment svg {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  padding: 9px;
  border: 1px solid rgba(221, 27, 27, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 46%, rgba(221, 27, 27, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 18px 38px rgba(0, 0, 0, 0.22);
  stroke-width: 2.15;
}

.reason-item h3 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: 20px;
  line-height: 1.15;
}

.reason-item p {
  margin: 18px 0 0;
  color: #c0c8cc;
  font-size: 15px;
  line-height: 1.45;
}

.review-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 38px;
}

.review-avatar {
  --avatar-accent: #d92a2a;
  display: grid;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.32), transparent 28px),
    linear-gradient(145deg, var(--avatar-accent), rgba(15, 24, 28, 0.92) 74%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 900;
}

.stars {
  color: #ffb000;
  letter-spacing: 0;
}

.review-service {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border: 1px solid rgba(110, 198, 255, 0.22);
  border-radius: 999px;
  background: rgba(110, 198, 255, 0.08);
  color: #9fd8ff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.review-body p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #d6dddf;
  line-height: 1.45;
}

.review-controls {
  display: grid;
  gap: 22px;
  justify-items: end;
  color: #b7c0c4;
}

.review-controls > div {
  display: flex;
  gap: 12px;
}

.circle-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.circle-button:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
}

.contact {
  padding-bottom: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(420px, 1.14fr);
}

.contact-card {
  padding: 38px;
}

.contact-card + .contact-card {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.lead-form .btn {
  width: 100%;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #8de4a8;
  font-size: 14px;
}

.contact-list {
  display: grid;
  gap: 21px;
  margin: 30px 0 28px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 18px;
  align-items: center;
  color: #e7ecee;
}

.contact-list svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}

.map-link img {
  width: 100%;
  height: clamp(180px, 18vw, 244px);
  object-fit: cover;
  transition: transform 0.25s ease;
}

.map-link:hover img {
  transform: scale(1.03);
}

.site-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8d989d;
}

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

.footer-inner p {
  margin: 0;
}

.footer-inner button {
  border: 0;
  background: transparent;
  color: #8d989d;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100vw - 40px));
  max-height: min(86vh, 850px);
  overflow: auto;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(24, 36, 42, 0.98), rgba(8, 14, 17, 0.98)),
    radial-gradient(circle at 10% 5%, rgba(110, 198, 255, 0.1), transparent 30%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62);
}

.modal-card.is-wide {
  width: min(1120px, calc(100vw - 40px));
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: -14px -14px 0 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5, 11, 13, 0.86);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.modal-content {
  margin-top: 26px;
}

  .modal-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

.modal-form .full,
.modal-form .btn,
.modal-status {
  grid-column: 1 / -1;
}

  .price-list,
.review-list,
.brand-modal-grid {
  display: grid;
  gap: 14px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}

.price-row strong {
  font-family: var(--font-condensed);
  font-size: 20px;
}

.price-row span {
  color: #fff;
  font-weight: 800;
}

.service-modal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.service-modal-grid img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.95) brightness(1.035);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(360px, 508px) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-detail-media {
  width: 100%;
  max-width: 508px;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) brightness(1.035);
}

.service-detail-info {
  display: grid;
  align-content: start;
  gap: 18px;
}

.service-lead {
  margin: 0;
  color: #d5dde0;
  font-size: 18px;
  line-height: 1.55;
}

.service-facts {
  display: grid;
  gap: 12px;
}

.service-fact,
.service-includes,
.service-price-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.service-fact {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
}

.service-fact span,
.service-includes li,
.service-price-card .price-row span {
  color: #c4cdd1;
}

.service-fact strong {
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 20px;
}

.service-detail-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.service-includes,
.service-price-card {
  padding: 22px;
}

.service-includes h3,
.service-price-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-condensed);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

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

.service-includes li {
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
}

.service-includes li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "";
}

.service-detail-cta {
  width: 100%;
  min-width: 280px;
  margin-top: 18px;
}

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

.brand-modal-grid span,
.review-list article,
.legal-copy {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.brand-modal-grid span {
  padding: 18px;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.review-list article,
.legal-copy {
  padding: 18px;
}

.review-list {
  max-height: min(62vh, 680px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
}

.review-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 16px;
  align-items: start;
}

.review-list .review-avatar {
  width: 52px;
  height: 52px;
  font-size: 18px;
}

.review-list-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.review-list strong {
  font-family: var(--font-condensed);
  font-size: 20px;
}

.review-list p {
  margin: 12px 0 0;
  color: #c8d0d4;
  line-height: 1.5;
}

.legal-copy p {
  margin: 0;
  color: #c8d0d4;
  line-height: 1.5;
}

.call-box {
  display: grid;
  gap: 18px;
}

.call-box p {
  margin: 0;
  color: #c8d0d4;
  line-height: 1.5;
}

.call-number {
  display: block;
  padding: 18px;
  border: 1px solid rgba(110, 198, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(110, 198, 255, 0.08);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.call-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

body.modal-open {
  overflow: hidden;
}

.mobile-cta {
  display: none;
}

body.cta-suppressed .mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 150px 1fr auto;
    gap: 24px;
  }

  .main-nav {
    gap: 22px;
  }

  .trust-strip,
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(n + 3) {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--line-soft);
  }

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

  .service-card:last-child {
    grid-column: span 1;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card + .contact-card {
    border-left: 1px solid var(--line-soft);
    border-top: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 20px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .logo {
    width: 116px;
    font-size: 25px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .main-nav,
  .header-phone {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-phone {
    display: flex;
  }

  .site-header.is-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 14, 17, 0.985);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  }

  .site-header.is-open .header-phone {
    justify-self: stretch;
    min-height: 50px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 14, 17, 0.985);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  }

  .hero-video-wrap {
    top: 72px;
    right: -30vw;
    width: 132vw;
    height: clamp(430px, 67vh, 580px);
    opacity: 0.92;
    filter: contrast(1.24) saturate(1.1) brightness(1.3);
  }

  .hero-video-wrap::before {
    background:
      linear-gradient(180deg, rgba(3, 9, 11, 0.16), rgba(3, 9, 11, 0.02) 48%, rgba(3, 9, 11, 0.74) 100%),
      linear-gradient(90deg, rgba(3, 9, 11, 0.9) 0%, rgba(3, 9, 11, 0.5) 34%, rgba(3, 9, 11, 0.02) 72%, rgba(3, 9, 11, 0.2) 100%),
      radial-gradient(circle at 59% 52%, rgba(164, 220, 240, 0.28), transparent 28%);
  }

  .hero-video-wrap::after {
    background:
      radial-gradient(ellipse 25% 8% at 58% 52%, rgba(235, 248, 255, 0.62), rgba(109, 197, 255, 0.28) 34%, transparent 70%),
      radial-gradient(ellipse 34% 18% at 56% 55%, rgba(103, 184, 231, 0.24), transparent 66%);
  }

  .hero-video {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 70% 31%, rgba(125, 191, 218, 0.2), transparent 31vw),
      linear-gradient(180deg, rgba(2, 6, 7, 0.28) 0%, rgba(2, 6, 7, 0.08) 42%, rgba(2, 6, 7, 0.92) 100%),
      linear-gradient(90deg, #020607 0%, rgba(2, 6, 7, 0.78) 42%, rgba(2, 6, 7, 0.12) 100%);
  }

  .hero-copy {
    width: 100%;
  }

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

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

  .review-controls {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 28px, 540px);
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background:
      linear-gradient(135deg, rgba(20, 31, 36, 0.96), rgba(6, 12, 15, 0.96)),
      radial-gradient(circle at 78% 30%, rgba(221, 27, 27, 0.2), transparent 42%);
    box-shadow:
      0 18px 54px rgba(0, 0, 0, 0.52),
      0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    backdrop-filter: blur(16px);
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease;
  }

  body.modal-open .mobile-cta {
    display: none;
  }

  .mobile-cta a,
  .mobile-cta button {
    display: inline-flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-condensed);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-cta__call {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.045);
  }

  .mobile-cta__book {
    border: 1px solid var(--red);
    background: linear-gradient(135deg, #f02020, var(--red-dark));
    box-shadow: 0 12px 32px rgba(221, 27, 27, 0.26);
    cursor: pointer;
  }

  .site-header {
    padding-top: 16px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 26px;
  }

  .hero-content {
    min-height: 660px;
    padding-top: 112px;
  }

  .hero-copy {
    margin-bottom: 28px;
  }

  .hero-copy h1 {
    max-width: min(100%, 520px);
    font-size: clamp(36px, 9.4vw, 48px);
    line-height: 1.06;
  }

  .hero-copy p {
    max-width: 320px;
    margin: 22px 0 26px;
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    min-height: 54px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
    overflow: hidden;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 94px;
    padding: 15px 14px;
    border: 0;
    background: rgba(255, 255, 255, 0.025);
  }

  .trust-item svg {
    width: 42px;
    height: 42px;
  }

  .trust-item .icon-parts {
    padding: 3px;
  }

  .trust-item p {
    font-size: 15px;
    line-height: 1.25;
  }

  .trust-item:nth-child(n + 3) {
    margin-top: 0;
    padding-top: 15px;
    border-top: 0;
  }

  .section {
    padding: 20px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .section h2,
  .modal-card h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }

  .brand-logo-img {
    width: clamp(104px, 34vw, 138px);
    height: 90px;
  }

  .brand-logo-img.is-wide {
    width: clamp(128px, 42vw, 158px);
  }

  .services .section-panel,
  .calculator .section-panel,
  .contact-card,
  .modal-card {
    padding: 24px 18px;
  }

  .service-grid,
  .calc-form,
  .reason-grid,
  .modal-form,
  .brand-modal-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    display: grid;
    grid-template-columns: minmax(118px, 38%) 1fr;
    grid-template-rows: 1fr auto;
    min-height: 132px;
    padding: 0;
  }

  .service-card img {
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 132px;
    aspect-ratio: auto;
  }

  .service-card span,
  .service-card small {
    align-self: end;
    padding-right: 14px;
    padding-left: 14px;
  }

  .service-card span {
    margin-top: 0;
    padding-top: 17px;
    font-size: 18px;
  }

  .service-card small {
    align-self: start;
    padding-bottom: 17px;
  }

  input,
  select {
    height: 54px;
  }

  .reason-item + .reason-item {
    border-left: 0;
  }

  .reason-item {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .reason-item svg,
  .reason-equipment svg {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }

  .reason-item p {
    margin-top: 12px;
  }

  .reason-item:first-child {
    border-top: 0;
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
  }

  .review-meta {
    gap: 9px;
  }

  .review-avatar {
    width: 54px;
    height: 54px;
  }

  .review-controls {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-grid {
    display: block;
  }

  .contact-card + .contact-card {
    margin-top: 0;
  }

  .contact-list li {
    grid-template-columns: 24px 1fr;
    gap: 14px;
  }

  .map-link img {
    height: 220px;
  }

  .modal {
    align-items: flex-end;
    padding: 10px;
  }

  .modal-card {
    width: calc(100vw - 20px);
    max-height: 92svh;
    padding: 24px 18px;
    border-radius: 12px 12px 8px 8px;
  }

  .modal-close {
    margin-right: -6px;
  }

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

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

  .service-detail,
  .service-detail-bottom {
    grid-template-columns: 1fr;
  }

  .service-detail-media {
    min-height: 230px;
  }

  .service-lead {
    font-size: 16px;
  }

  .service-detail-cta {
    width: 100%;
    min-width: 0;
  }

  .review-list {
    max-height: 68svh;
    padding-right: 4px;
  }
}

@media (max-width: 380px) {
  .btn {
    padding: 0 22px;
  }

  .mobile-cta {
    grid-template-columns: 0.95fr 1.05fr;
    right: 10px;
    left: 10px;
    padding: 7px;
  }

  .mobile-cta a,
  .mobile-cta button {
    min-height: 46px;
    padding: 0 8px;
    font-size: 15px;
  }

  .brand-logo-img {
    width: 108px;
    height: 82px;
  }

  .brand-logo-img.is-wide {
    width: 126px;
  }

  .service-card span {
    font-size: 17px;
  }

  .hero-content {
    min-height: 640px;
  }

  .hero-video-wrap {
    right: -42vw;
    width: 146vw;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: 82px;
    padding: 14px 16px;
  }

  .service-card {
    grid-template-columns: minmax(104px, 36%) 1fr;
  }

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