:root {
  --bg: #0f1217;
  --bg-soft: #171c23;
  --surface: #ffffff;
  --surface-alt: #f4f6f9;
  --surface-glass: rgba(18, 22, 27, 0.75);
  --surface-dark: #151a21;
  --line-light: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(16, 19, 24, 0.08);
  --text-main: #f7f8fa;
  --text-dark: #101319;
  --text-muted: #aeb7c2;
  --text-soft: #5c6674;
  --accent: #ff5629;
  --accent-strong: #ff7a00;
  --accent-deep: #d83a15;
  --shadow-lg: 0 30px 80px rgba(3, 6, 10, 0.35);
  --shadow-md: 0 20px 50px rgba(15, 21, 28, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 25%),
    radial-gradient(circle at top right, rgba(255, 86, 41, 0.14), transparent 22%),
    linear-gradient(180deg, #0f1217 0%, #12171d 38%, #0d1014 100%);
  color: var(--text-main);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.45);
  outline-offset: 3px;
}

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

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.28;
  z-index: 0;
}

.page-shell::before {
  top: -10rem;
  left: -12rem;
  background: rgba(255, 122, 0, 0.45);
}

.page-shell::after {
  bottom: -16rem;
  right: -8rem;
  background: rgba(255, 86, 41, 0.32);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(15, 18, 23, 0.92), rgba(15, 18, 23, 0.66));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 15px 35px rgba(255, 86, 41, 0.3);
}

.brand__text {
  display: grid;
  gap: 0.18rem;
}

.brand__text strong,
.header-phone__value,
.hero-callout__phone,
.cta-phone strong,
.mobile-callbar__phone strong {
  font-family: "Exo 2", sans-serif;
}

.brand__text strong {
  font-size: 1.1rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.brand__text small {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-phone {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.header-phone__label,
.eyebrow,
.hero-callout__label,
.panel-kicker,
.cta-phone span,
.mobile-callbar__phone span {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 700;
}

.header-phone__label,
.hero-callout p,
.panel-kicker,
.mobile-callbar__phone span {
  color: var(--text-muted);
}

.header-phone__value {
  font-size: clamp(1.15rem, 1vw + 0.95rem, 1.55rem);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.35rem;
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 20px 40px rgba(255, 98, 38, 0.32);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 24px 48px rgba(255, 98, 38, 0.42);
}

.button--secondary,
.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
}

.button--secondary {
  background: rgba(255, 122, 0, 0.08);
}

.button--large {
  min-height: 3.8rem;
  padding-inline: 1.85rem;
  font-size: 1.03rem;
}

.hero {
  padding: 3.5rem 0 4.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  margin: 0;
  color: #ffb58d;
}

.eyebrow--dark {
  color: var(--accent-deep);
}

h1,
h2,
h3,
p,
ul,
ol,
dl {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Exo 2", sans-serif;
}

h1 {
  font-size: clamp(2.3rem, 3vw + 1.3rem, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.hero-lead {
  max-width: 44rem;
  color: #d8dde5;
  font-size: clamp(1rem, 0.4vw + 0.94rem, 1.18rem);
  line-height: 1.7;
}

.hero-callout {
  display: grid;
  gap: 0.6rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 86, 41, 0.18), rgba(255, 122, 0, 0.14)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  max-width: 34rem;
}

.hero-callout__phone {
  font-size: clamp(1.8rem, 1.5vw + 1.45rem, 2.8rem);
  line-height: 1;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  list-style: none;
  max-width: 42rem;
}

.benefits-list li,
.check-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eef2f6;
  min-height: 100%;
}

.benefits-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 0.3rem rgba(255, 122, 0, 0.1);
}

.benefits-list li::after,
.check-list li::after {
  content: "";
  position: absolute;
  left: 1.44rem;
  top: 50%;
  width: 0.42rem;
  height: 0.76rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-62%) rotate(45deg);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.visual-card {
  position: relative;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: calc(var(--radius-xl) - 0.6rem);
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.visual-card__meta,
.visual-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visual-card__meta {
  margin-bottom: 1rem;
}

.visual-card__meta span,
.info-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.visual-card__meta span {
  padding: 0.72rem 1rem;
  color: #eef3f8;
  font-size: 0.9rem;
}

.service-scene {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 0.2rem);
}

.info-pill {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  flex: 1 1 14rem;
}

.info-pill strong {
  font-size: 1rem;
}

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

.section {
  padding: 4.8rem 0;
  position: relative;
}

.section--light {
  background: var(--surface-alt);
  color: var(--text-dark);
}

.section--light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 86, 41, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 249, 0.98));
}

.section--light .container {
  z-index: 1;
}

.section-head {
  display: grid;
  gap: 0.85rem;
  max-width: 46rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(2rem, 2vw + 1rem, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-head p:last-child,
.split-block__content > p:last-of-type,
.split-block__panel p,
.trust-copy__text,
.review-card p,
.contact-list dd,
.cta-panel p,
.hero-callout p {
  font-size: 1rem;
  line-height: 1.7;
}

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

.service-card,
.review-card,
.trust-card,
.step-card,
.contacts-panel,
.map-card,
.split-block__panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.service-card {
  position: relative;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 86, 41, 0.08);
  display: grid;
  gap: 0.8rem;
}

.service-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(255, 86, 41, 0.12), rgba(255, 122, 0, 0.18));
  color: var(--accent-deep);
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
}

.service-card h3,
.split-block__panel h3,
.trust-card h3 {
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--text-dark);
}

.service-card p,
.section--light .section-head p:last-child,
.step-card p,
.review-card strong,
.contact-list dd,
.contact-list a,
.site-footer p,
.site-footer a {
  color: var(--text-soft);
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 1.5rem;
  align-items: start;
}

.split-block__content {
  display: grid;
  gap: 1rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
  padding: 0;
}

.split-block__panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.12), rgba(255, 86, 41, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  min-height: 9.4rem;
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
}

.trust-block {
  display: grid;
  gap: 2rem;
}

.trust-copy {
  max-width: 52rem;
  display: grid;
  gap: 1rem;
}

.trust-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 86, 41, 0.16), rgba(255, 122, 0, 0.2));
  color: #fff;
}

.trust-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card p,
.trust-card h3,
.section .split-block__panel h3,
.section .split-block__panel p {
  color: var(--text-main);
}

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

.review-card {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 86, 41, 0.08);
}

.review-card__stars {
  color: var(--accent-strong);
  letter-spacing: 0.15em;
}

.review-card strong {
  font-size: 0.95rem;
}

.cta-section {
  padding-top: 1rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 86, 41, 0.22), rgba(255, 122, 0, 0.14)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.cta-panel__actions {
  display: grid;
  gap: 1rem;
}

.cta-phone {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(14, 17, 21, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-phone strong {
  font-size: clamp(1.6rem, 1.1vw + 1.3rem, 2.25rem);
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
}

.contacts-panel,
.map-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 1.5rem;
}

.contacts-panel {
  display: grid;
  gap: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list div {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(16, 19, 24, 0.08);
}

.contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list dt {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
}

.contact-list dd a {
  color: var(--accent-deep);
  font-weight: 700;
}

.map-card {
  min-height: 32rem;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 29rem;
  border: 0;
  border-radius: calc(var(--radius-lg) - 0.2rem);
}

.site-footer {
  padding: 1.6rem 0 7rem;
  color: var(--text-muted);
}

.footer-row {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-callbar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 25;
  display: none;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.7rem calc(0.7rem + env(safe-area-inset-bottom));
  border-radius: 1.4rem;
  background: rgba(12, 15, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(7, 10, 14, 0.45);
}

.mobile-callbar__phone {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  flex: 1 1 auto;
}

.mobile-callbar__phone strong {
  font-size: 1.2rem;
  white-space: nowrap;
}

.mobile-callbar__button {
  flex: 0 0 auto;
  min-height: 3.15rem;
  padding-inline: 1.2rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .cta-panel,
  .split-block,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 820px) {
  .site-header {
    padding: 0.85rem 0;
  }

  .header-row,
  .header-actions,
  .footer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .header-phone {
    text-align: center;
  }

  h1 {
    max-width: 100%;
  }

  .benefits-list,
  .check-list,
  .reviews-grid,
  .services-grid,
  .steps-grid,
  .trust-icons {
    grid-template-columns: 1fr;
  }

  .section,
  .hero {
    padding: 3.6rem 0;
  }

  .map-card {
    min-height: 24rem;
  }

  .map-card iframe {
    min-height: 24rem;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(255, 122, 0, 0.2), transparent 35%),
      linear-gradient(180deg, #0f1217 0%, #11161d 40%, #0c0f14 100%);
  }

  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .brand__text small {
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-copy,
  .hero-visual,
  .section-head,
  .trust-copy,
  .contacts-panel,
  .review-card,
  .service-card,
  .step-card {
    gap: 1rem;
  }

  .hero-callout,
  .cta-panel,
  .visual-card,
  .contacts-panel,
  .map-card {
    padding: 1.15rem;
  }

  .button,
  .button--large {
    width: 100%;
  }

  .hero-actions,
  .section-cta,
  .contacts-actions {
    display: grid;
  }

  .hero-callout__phone,
  .cta-phone strong {
    font-size: clamp(1.55rem, 5vw + 0.2rem, 2.1rem);
  }

  .mobile-callbar {
    display: flex;
  }

  .site-footer {
    padding-bottom: calc(8.5rem + env(safe-area-inset-bottom));
  }
}
