@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BrunoAce;
  src: url("../fonts/BrunoAce-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #ffffff;
  --muted: #b9c1c4;
  --paper: #f5f5f2;
  --text: #111317;
  --charcoal: #111418;
  --graphite: #1d2227;
  --steel: #263941;
  --red: #ff1634;
  --line: rgba(255, 255, 255, .13);
  --radius: 28px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--charcoal);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 0;
  width: 100%;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 10px 14px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(17, 20, 24, .78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo span {
  display: block;
  font-weight: 700;
  line-height: 1.1;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 164px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(17, 20, 24, .98) 0%, rgba(17, 20, 24, .92) 42%, rgba(17, 20, 24, .35) 100%),
    image-set(url("../img/hero-bg.png") 1x);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(transparent, var(--charcoal));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: BrunoAce, Manrope, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(42px, 6vw, 86px);
}

.hero__copy {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 22px;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  transition: transform .2s, background-color .2s;
}

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

.btn_dark {
  background: rgba(255, 255, 255, .12);
}

.btn_dark:hover {
  background: rgba(255, 255, 255, .2);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.hero__badges li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .06);
}

.quote-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 20, 24, .78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quote-card__label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.quote-card__brand {
  margin-top: 12px;
  font-family: BrunoAce, Manrope, sans-serif;
  font-size: 40px;
  text-transform: uppercase;
}

.quick-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.field {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

textarea.field {
  min-height: 104px;
  padding-top: 14px;
  resize: vertical;
}

.field::placeholder {
  color: rgba(255, 255, 255, .64);
}

.field:focus {
  outline: 2px solid rgba(255, 22, 52, .7);
  border-color: transparent;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 76px 0;
}

.section_light {
  color: var(--text);
  background: var(--paper);
}

.section__head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  max-width: 780px;
  font-size: clamp(32px, 4vw, 56px);
}

.section__copy {
  max-width: 470px;
  color: var(--muted);
  font-size: 18px;
}

.section_light .section__copy {
  color: #596168;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  overflow: hidden;
}

.brand-card h3 {
  font-family: BrunoAce, Manrope, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

.brand-card p {
  color: #5d646a;
}

.brand-card__image {
  display: grid;
  place-items: center;
  min-height: 150px;
  margin: auto -12px 16px;
}

.brand-card__image img {
  max-height: 170px;
  object-fit: contain;
}

.brand-card__link {
  margin-top: auto;
  color: var(--red);
  font-weight: 700;
}

.service-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-tile {
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(17, 20, 24, .94), rgba(17, 20, 24, .66)),
    var(--tile-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.service-tile h3 {
  max-width: 420px;
  font-family: BrunoAce, Manrope, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.service-tile p {
  max-width: 440px;
  color: var(--muted);
}

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

.step {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .06);
}

.step__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.step h3 {
  font-size: 21px;
}

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

.review-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card,
.faq-card {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  color: var(--text);
}

.review-card__stars {
  color: var(--red);
  font-weight: 700;
}

.review-card p,
.faq-card p {
  color: #596168;
}

.review-card strong,
.faq-card h3 {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.area-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
}

.area-strip p {
  color: #596168;
}

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

.area-list li {
  padding: 10px 13px;
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.compare-table {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius);
  background: #fff;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
}

.compare-row > div {
  padding: 18px 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.compare-row:first-child > div {
  border-top: 0;
  background: var(--text);
  color: #fff;
  font-weight: 700;
}

.compare-row > div:first-child {
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
}

.panel_light {
  border-color: rgba(0, 0, 0, .08);
  background: #fff;
}

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

.list li {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.section_light .list li,
.panel_light .list li {
  border-color: rgba(0, 0, 0, .1);
}

.list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  min-width: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--red);
}

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

.trust-item {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
}

.trust-item strong {
  display: block;
  font-size: 28px;
}

.trust-item span {
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  z-index: 12;
  bottom: 0;
  display: none;
  padding: 12px 0;
  background: rgba(17, 20, 24, .88);
  backdrop-filter: blur(12px);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  padding: 44px 0;
  color: var(--muted);
  background: #090b0d;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  padding: 24px;
  background: rgba(0, 0, 0, .66);
  overflow: auto;
}

.modal.active {
  display: grid;
  place-items: center;
}

.modal__box {
  width: min(100%, 620px);
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
}

.modal__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.modal__head h2 {
  font-size: 30px;
}

.modal__close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--text);
}

.modal .field {
  border-color: rgba(0, 0, 0, .13);
  background: #fff;
  color: var(--text);
}

.modal .field::placeholder {
  color: #6a6f73;
}

.success-message {
  display: none;
  margin-top: 12px;
  color: #137a43;
  font-weight: 700;
}

.success-message.active {
  display: block;
}

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

  .hero__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .quote-card {
    max-width: 560px;
  }

  .brand-grid,
  .trust-row,
  .steps,
  .review-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-band,
  .area-strip {
    grid-template-columns: 1fr;
  }

  .section__head {
    display: block;
  }
}

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

  .site-header {
    top: 10px;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .logo small,
  .header-phone {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero__copy {
    font-size: 18px;
  }

  .hero__actions,
  .sticky-cta__inner,
  .site-footer__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .sticky-cta {
    display: block;
  }

  .btn {
    width: 100%;
  }

  .brand-grid,
  .trust-row,
  .steps,
  .review-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
  }

  .compare-row {
    display: block;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
  }

  .compare-row:first-child {
    display: none;
  }

  .brand-card,
  .panel {
    padding: 24px;
  }

  .section {
    padding: 56px 0;
  }
}
