:root {
  --bg: #07080b;
  --bg-2: #0d1118;
  --ink: #111318;
  --muted: #68707c;
  --line: #e7e8ea;
  --white: #ffffff;
  --soft: #f6f6f3;
  --yellow: #ffc400;
  --yellow-2: #ffdb51;
  --yellow-dark: #c99400;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

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

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-head p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-head::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 3px;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(255, 196, 0, 0.22);
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: none;
}

.btn--ghost {
  min-height: 48px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}

.btn--dark {
  background: var(--bg);
  color: var(--white);
  box-shadow: none;
}

.icon-round {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  background: rgba(255, 196, 0, .14);
  color: var(--yellow);
}

.icon-round svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  color: var(--white);
}

.site-header__inner {
  width: min(1240px, calc(100% - 56px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.logo span {
  color: var(--yellow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
  font-size: 14px;
}

.nav a {
  opacity: .92;
  transition: color .2s ease, opacity .2s ease;
}

.nav a:hover {
  color: var(--yellow);
  opacity: 1;
}

.header-cta {
  min-height: 45px;
  padding-inline: 20px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.3);
  width: 44px;
  height: 44px;
  border-radius: 3px;
  background: rgba(0,0,0,.15);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: #06080e;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .9s ease, transform 6.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,7,12,.96) 0%, rgba(5,7,12,.86) 31%, rgba(5,7,12,.34) 64%, rgba(5,7,12,.20) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.06) 56%, rgba(0,0,0,.52) 100%);
  pointer-events: none;
}

.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-slider__arrow,
.hero-slider__dot {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(8,10,14,.58);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: .2s ease;
}

.hero-slider__arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.hero-slider__dots {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(8,10,14,.38);
  backdrop-filter: blur(10px);
}

.hero-slider__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
}

.hero-slider__arrow:hover,
.hero-slider__dot:hover,
.hero-slider__dot.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding-top: 78px;
}

.hero__copy {
  width: min(650px, 100%);
  padding: 54px 0 70px;
}

.eyebrow {
  display: inline-flex;
  color: var(--yellow);
  font-weight: 950;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: .93;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
  font-size: .61em;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero p {
  max-width: 540px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.88);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 600;
}

.hero__checks {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.92);
  font-weight: 750;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__checks li::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 950;
  font-size: 18px;
}

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

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
}

.video-link span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.85);
  color: var(--white);
}

.video-link svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  fill: currentColor;
}

.stats-strip {
  background: var(--white);
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  position: relative;
  min-height: 122px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 22px 18px;
}

.stat-item > div {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-rows: 42px minmax(40px, auto);
  justify-items: center;
  align-items: start;
  row-gap: 8px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  right: 0;
  width: 1px;
  background: var(--line);
}

.stat-item svg {
  width: 38px;
  height: 38px;
  display: block;
  stroke: var(--ink);
  margin: 0 auto;
}

.stat-item strong {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 42px;
  font-size: 13px;
  line-height: 1.35;
}

.offer {
  padding: 58px 0 34px;
  background: var(--soft);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  text-align: center;
}

.offer-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55 / 1;
  background: #10141c;
  border: 4px solid var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,.11);
  isolation: isolate;
}

.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  filter: contrast(1.04) saturate(1.05);
}

.offer-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,.16) 100%);
  pointer-events: none;
  z-index: 1;
}

.offer-card:hover img {
  transform: scale(1.055);
}

.offer-card h3 {
  margin: 14px 0 4px;
  font-size: 16px;
  line-height: 1.25;
}

.offer-card p {
  margin: 0;
  color: #30343b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.center-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.process {
  padding: 44px 0 56px;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 52px;
  border-top: 2px dashed #d7d8db;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step__icon {
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid #bfc3c9;
  background: var(--white);
}

.process-step__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--ink);
}

.process-step__number {
  position: absolute;
  right: 6px;
  bottom: -7px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-weight: 950;
  font-size: 13px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.process-step p {
  width: min(210px, 100%);
  margin: 0 auto;
  color: #555d68;
  font-size: 13px;
  line-height: 1.45;
}

.calculator {
  padding: 66px 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,196,0,.16), transparent 32%),
    linear-gradient(135deg, #07080b 0%, #101723 100%);
  color: var(--white);
}

.calculator .section-head p {
  color: rgba(255,255,255,.72);
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 26px;
  align-items: stretch;
}

.calc-panel,
.calc-summary {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}

.calc-panel {
  padding: 28px;
}

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

.calc-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 750;
}

.calc-field input,
.calc-field select,
.calc-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 14px 14px;
  outline: none;
}

.calc-field select option {
  color: #111;
}

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

.calc-field input::placeholder,
.calc-field textarea::placeholder {
  color: rgba(255,255,255,.38);
}

.calc-field input:focus,
.calc-field select:focus,
.calc-field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,196,0,.14);
}

.calc-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 18px;
}

.calc-choice {
  position: relative;
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  background: rgba(255,255,255,.055);
  cursor: pointer;
}

.calc-choice input {
  position: absolute;
  opacity: 0;
}

.calc-choice strong {
  font-size: 13px;
}

.calc-choice span {
  color: rgba(255,255,255,.54);
  font-size: 12px;
  line-height: 1.3;
}

.calc-choice:has(input:checked) {
  border-color: var(--yellow);
  background: rgba(255,196,0,.13);
}

.calc-summary {
  padding: 26px;
  display: grid;
  align-content: start;
}

.calc-preview {
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    #111722;
  background-size: 34px 34px;
  overflow: hidden;
}

.calc-sign {
  color: #fff8d7;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 950;
  letter-spacing: -.07em;
  text-shadow: 0 0 10px rgba(255,225,120,.9), 0 0 34px rgba(255,196,0,.64), 0 0 70px rgba(255,196,0,.32);
  transition: .22s ease;
}

.calc-sign[data-effect="halo"] {
  color: #0e121b;
  -webkit-text-stroke: 1px rgba(255,255,255,.52);
  text-shadow: 0 0 16px rgba(255,235,160,.96), 0 0 48px rgba(255,196,0,.74), 0 0 85px rgba(255,196,0,.44);
}

.calc-sign[data-effect="front_halo"] {
  color: #fff8d7;
  text-shadow: 0 0 10px rgba(255,235,160,.95), 0 0 44px rgba(255,196,0,.8), 0 0 92px rgba(255,196,0,.56);
}

.calc-sign[data-effect="none"] {
  color: #fff;
  text-shadow: 8px 11px 0 rgba(0,0,0,.36);
}

.summary-list {
  margin: 20px 0 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.summary-list dt {
  color: rgba(255,255,255,.55);
}

.summary-list dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.integration-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,196,0,.34);
  background: rgba(255,196,0,.11);
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.55;
}

.why {
  background: #050807;
  color: var(--white);
  padding: 42px 0;
}

.why .section-head {
  margin-bottom: 28px;
}

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

.why-item {
  text-align: center;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
}

.why-item svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  stroke: var(--yellow);
}


.seo-area {
  padding: 62px 0 58px;
  background: #f4f4f1;
}

.seo-area__panel {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.07);
  padding: 34px;
}

.seo-area__header {
  max-width: 900px;
  margin-bottom: 26px;
}

.seo-area__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--yellow-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.seo-area h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.seo-area__header p,
.seo-area__copy p,
.seo-area__cta p {
  margin: 0;
  color: #555d68;
  line-height: 1.75;
}

.seo-area__content {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.seo-area__copy {
  padding: 24px;
  border-left: 4px solid var(--yellow);
  background: #fafafa;
}

.seo-area__copy h3,
.city-box h3 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.seo-area__copy p + p {
  margin-top: 14px;
}

.city-box {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #e3e4e6;
  background: #f8f8f6;
  color: #23272f;
  font-size: 13px;
  font-weight: 800;
}

.city-cloud span:nth-child(4n + 1) {
  border-color: rgba(255,196,0,.5);
  background: rgba(255,196,0,.12);
}

.seo-area__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.seo-area__cta p {
  max-width: 620px;
}



.faq-quote {
  padding: 56px 0 62px;
  background: var(--white);
}

.faq-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 58px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  border: 0;
  background: transparent;
  color: #16191f;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-button span:last-child {
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.quote-box {
  background: #070907;
  color: var(--white);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #1b211e;
}

.quote-box h2 {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.quote-box p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
  font-size: 14px;
}

.quote-contact-short {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -4px 0 18px;
}

.quote-contact-short a,
.quote-contact-short span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 196, 0, .38);
  background: rgba(255, 196, 0, .1);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.quote-contact-short span {
  color: #fff;
}

.quote-box p a,
.footer-col a[href^="tel:"],
.footer-col a[href^="mailto:"] {
  color: var(--yellow);
  font-weight: 850;
}

.footer-col a[href^="tel:"]:hover,
.footer-col a[href^="mailto:"]:hover,
.quote-box p a:hover {
  color: var(--yellow-2);
}

.quote-form {
  display: grid;
  gap: 9px;
}

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.field-icon {
  position: relative;
}

.field-icon input,
.field-icon textarea,
.field-icon select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dfe2e5;
  background: #fff;
  color: #111;
  padding: 13px 14px 13px 40px;
  outline: none;
}

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

.field-icon svg {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 17px;
  height: 17px;
  stroke: #a1a7af;
}

.file-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
}

.file-line input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 34px;
  padding: 0 15px;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
  cursor: pointer;
}

.privacy-note {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  line-height: 1.45;
  margin: 2px 0 0;
}

.form-status {
  min-height: 18px;
  color: var(--yellow);
  font-size: 13px;
  line-height: 1.4;
}

.site-footer {
  background: #050605;
  color: var(--white);
  padding: 34px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) .7fr .7fr .9fr;
  gap: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand p {
  margin: 10px 0 0;
  max-width: 330px;
  color: rgba(255,255,255,.64);
  line-height: 1.6;
  font-size: 13px;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.64);
  font-size: 13px;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.footer-bottom__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .nav {
    gap: 18px;
  }

  .offer-grid {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    gap: 14px;
  }

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

  .process-grid::before {
    display: none;
  }

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

@media (max-width: 920px) {
  .site-header__inner {
    width: min(100% - 36px, 1180px);
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(5,7,12,.96);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 20px 70px rgba(0,0,0,.35);
  }

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

  .nav a {
    padding: 14px 12px;
  }

  .header-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background-position: 58% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(5,7,12,.94) 0%, rgba(5,7,12,.88) 48%, rgba(5,7,12,.42) 100%);
  }

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

  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
    display: none;
  }

  .calculator-grid,
  .faq-quote-grid,
  .seo-area__content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .seo-area__cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero,
  .hero__content {
    min-height: 680px;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero__actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .video-link {
    width: 100%;
  }

  .video-link {
    justify-content: center;
  }

  .offer-grid,
  .process-grid,
  .stats-strip__grid,
  .why-grid,
  .calc-row,
  .calc-choice-grid,
  .quote-form__row {
    grid-template-columns: 1fr;
  }

  .stat-item::after {
    display: none;
  }

  .offer {
    padding-top: 44px;
  }

  .quote-box,
  .calc-panel,
  .calc-summary,
  .seo-area__panel {
    padding: 20px;
    border-radius: 18px;
  }

  .seo-area__copy,
  .city-box {
    padding: 18px;
  }
}

.faq-quote .section-head::after {
  margin-left: 0;
  margin-right: auto;
}

.footer-col a[href^="tel:"],
.footer-col a[href^="mailto:"] {
  color: var(--yellow);
  font-weight: 850;
}

.footer-col a[href^="tel:"]:hover,
.footer-col a[href^="mailto:"]:hover {
  color: var(--yellow-2);
}


@media (max-width: 760px) {
  .hero-slide {
    background-position: center center;
  }

  .hero-slider__controls {
    bottom: 18px;
  }

  .hero-slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }
}


/* SEO CMS pages */
.seo-area__pages {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.seo-area__pages h3,
.seo-internal-links h2 {
  margin: 0 0 14px;
}

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

.seo-links-grid a {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: .2s ease;
}

.seo-links-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 211, 90, .55);
  color: #ffd35a;
}

.seo-page {
  background: #07080b;
  color: #fff;
}

.seo-hero {
  padding: 138px 0 80px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 211, 90, .16), transparent 34%),
    linear-gradient(135deg, #07080b 0%, #111827 100%);
}

.seo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
  gap: 42px;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

.breadcrumbs a {
  color: #ffd35a;
  text-decoration: none;
}

.seo-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: .95;
  letter-spacing: -.06em;
}

.seo-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 19px;
  line-height: 1.65;
}

.seo-hero__image {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 80px rgba(0,0,0,.36);
}

.seo-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.seo-content,
.seo-internal-links {
  padding: 76px 0;
}

.seo-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.seo-article {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
}

.seo-article h2 {
  margin: 0 0 16px;
  font-size: 30px;
  letter-spacing: -.03em;
}

.seo-article h2:not(:first-child) {
  margin-top: 34px;
}

.seo-article p {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

.seo-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}

.seo-side-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.065);
}

.seo-side-card h2 {
  margin: 0 0 10px;
}

.seo-side-card p,
.seo-side-card a:not(.btn) {
  color: rgba(255,255,255,.72);
}

.seo-faq {
  display: grid;
  gap: 12px;
}

.seo-faq article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(0,0,0,.16);
}

.seo-faq h3 {
  margin: 0 0 8px;
}

.seo-faq p {
  margin: 0;
}

.seo-internal-links {
  background: rgba(255,255,255,.035);
}

@media (max-width: 980px) {
  .seo-hero__grid,
  .seo-content__grid {
    grid-template-columns: 1fr;
  }

  .seo-sidebar {
    position: static;
  }

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

@media (max-width: 640px) {
  .seo-hero {
    padding: 112px 0 58px;
  }

  .seo-links-grid {
    grid-template-columns: 1fr;
  }

  .seo-article {
    padding: 22px;
  }
}

/* Mobile hero slider scaling fix */
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 72px;
    background: #06080e;
  }

  .hero-slider {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    height: clamp(210px, 58vw, 300px);
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .38);
  }

  .hero-slide {
    background-size: cover;
    background-position: center center;
    transform: scale(1.015);
  }

  .hero-slide.is-active {
    transform: scale(1);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5,7,12,.18) 72px, rgba(5,7,12,.28) 300px, rgba(5,7,12,.96) 390px, rgba(5,7,12,1) 100%),
      linear-gradient(90deg, rgba(5,7,12,.36) 0%, rgba(5,7,12,.14) 100%);
  }

  .hero__content {
    min-height: auto;
    align-items: flex-start;
    padding-top: calc(clamp(210px, 58vw, 300px) + 38px);
  }

  .hero__copy {
    padding: 28px 0 88px;
  }

  .hero-slider__controls {
    top: calc(72px + clamp(210px, 58vw, 300px) - 52px);
    bottom: auto;
  }
}

@media (max-width: 420px) {
  .hero-slider {
    left: 12px;
    right: 12px;
    height: 218px;
    border-radius: 16px;
  }

  .hero__content {
    padding-top: 256px;
  }

  .hero-slider__controls {
    top: 238px;
  }
}
