:root {
  --bg: #12090b;
  --bg-soft: #1b0d10;
  --bg-card: #231114;
  --bg-card-2: #2b1418;
  --text: #fff4f1;
  --muted: #d9beb8;
  --line: rgba(255, 220, 220, 0.12);
  --primary: #ff5a42;
  --primary-2: #ff7a00;
  --accent: #ffb347;
  --dark-accent: #7c1623;
  --success: #ffc46b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1200px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.12), transparent 28%),
    radial-gradient(circle at left center, rgba(124, 22, 35, 0.28), transparent 36%),
    linear-gradient(180deg, #12090b 0%, #180a0d 42%, #100709 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 90, 66, 0.03), transparent 40%),
    linear-gradient(300deg, rgba(255, 179, 71, 0.03), transparent 35%);
  z-index: -1;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

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

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__phone {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.header__cta {
  min-height: 48px;
  padding: 0 20px;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(12, 5, 7, 0.94) 0%, rgba(12, 5, 7, 0.76) 48%, rgba(12, 5, 7, 0.42) 100%),
    linear-gradient(180deg, rgba(124, 22, 35, 0.18), rgba(255, 122, 0, 0.08));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 90px 0 70px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 420px);
  gap: 30px;
  align-items: end;
}

.hero__main {
  max-width: 920px;
}

.hero__badge,
.section-tag,
.hero-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 179, 71, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 179, 71, 0.22);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.hero h1,
.section-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(2.3rem, 6vw, 5.5rem);
  margin-bottom: 20px;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero__text,
.section-text {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__text {
  max-width: 700px;
  margin-bottom: 34px;
}

.hero__cta,
.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 18px 36px rgba(255, 90, 66, 0.26);
}

.btn--secondary {
  color: #2f1407;
  background: linear-gradient(135deg, #ffcf7a 0%, #ffb347 100%);
  box-shadow: 0 18px 36px rgba(255, 179, 71, 0.2);
}

.btn--ghost {
  color: var(--text);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}

.btn--ghost-light {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: transparent;
}

.btn--full {
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
  max-width: 980px;
}

.stat {
  background: rgba(22, 10, 12, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1.02rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(31, 14, 17, 0.92), rgba(24, 11, 14, 0.92));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card h3,
.audience-card h3,
.benefit-card h3,
.trust-item strong {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-form {
  display: grid;
  gap: 14px;
}

.problem-strip {
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(255, 90, 66, 0.12), rgba(255, 179, 71, 0.12));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.problem-strip__item {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--line);
  font-weight: 700;
}

.problem-strip__item--accent {
  background: linear-gradient(135deg, var(--dark-accent), var(--primary));
  border-color: transparent;
}

.section {
  padding: 92px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 179, 71, 0.03), rgba(255,255,255,0.01));
}

.section--dark {
  background: linear-gradient(180deg, rgba(255, 90, 66, 0.04), rgba(124, 22, 35, 0.08));
}

.section-head {
  margin-bottom: 38px;
}

.section-head--center {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 40px;
}

.section-text--center {
  max-width: 760px;
  margin: 0 auto;
}

.trust-strip {
  padding-top: 34px;
  padding-bottom: 18px;
}

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

.trust-item {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: var(--shadow-soft);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
}

.grid-2--center {
  align-items: center;
}

.image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(18, 9, 11, 0.15));
  pointer-events: none;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card--glow {
  box-shadow: 0 25px 60px rgba(255, 90, 66, 0.12);
}

.image-card--tall {
  min-height: 520px;
}

.image-card--realistic {
  min-height: 520px;
}

.image-card--team,
.image-card--truck {
  min-height: 560px;
}

.feature-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.feature-point {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: 16px;
  padding: 18px;
  font-weight: 700;
}

.service-grid,
.audience-grid,
.benefits-grid {
  display: grid;
  gap: 20px;
}

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

.audience-grid,
.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.audience-card,
.benefit-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 230px;
}

.audience-card,
.benefit-card {
  min-height: 100%;
}

.service-card h3,
.adv-item h3,
.step h3,
.footer__col h3,
.process-floating-card__content strong {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.service-card p,
.adv-item p,
.step p,
.footer__brand p,
.footer__col li,
.contact-card p,
.form-note,
.audience-card p,
.benefit-card p,
.advantages-badge span,
.process-floating-card__content span {
  margin: 0;
  color: var(--muted);
}

.service-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 90, 66, 0.18), rgba(255, 179, 71, 0.18));
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.service-card--wide {
  grid-column: span 2;
  min-height: 320px;
}

.service-card--image {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.service-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card--image .service-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 9, 11, 0.9) 100%);
}

.service-card--accent {
  background: linear-gradient(135deg, rgba(124, 22, 35, 0.8), rgba(255, 90, 66, 0.25));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.advantages-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 34px;
  align-items: start;
}

.advantages-showcase__visual {
  position: relative;
}

.advantages-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(18, 9, 11, 0.82);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.advantages-badge strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  color: var(--accent);
}

.adv-list {
  display: grid;
  gap: 16px;
}

.adv-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  border-left: 4px solid var(--accent);
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.step {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.step span {
  width: 54px;
  min-width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.process-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.process-visual .image-card {
  width: 100%;
}

.cta-box {
  background: linear-gradient(135deg, rgba(124, 22, 35, 0.95), rgba(255, 90, 66, 0.24));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.03rem;
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.section--contacts {
  padding-top: 40px;
}

.contacts-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contacts-info,
.form-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.contact-card span {
  display: block;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-card a {
  font-size: 1.15rem;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 700;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  min-height: 56px;
  padding: 16px 18px;
  color: var(--text);
  outline: none;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.12);
  background: rgba(255,255,255,0.06);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #caa9a2;
}

.form-note {
  font-size: 0.92rem;
}

.footer {
  padding: 54px 0 100px;
  border-top: 1px solid var(--line);
  background: rgba(8, 4, 5, 0.65);
}

.footer__top {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.3fr;
  gap: 26px;
}

.footer__brand,
.footer__col {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

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

.footer__bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__bottom a {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(20, 10, 12, 0.96);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.cookie-banner__text {
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}

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

@media (max-width: 1100px) {
  .hero__layout,
  .grid-2,
  .contacts-wrap,
  .footer__top,
  .service-grid,
  .audience-grid,
  .benefits-grid,
  .trust-strip__inner,
  .advantages-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .image-card--realistic,
  .image-card--tall,
  .image-card--team,
  .image-card--truck {
    min-height: 420px;
  }

  .advantages-showcase__visual {
    max-width: 760px;
  }

  .process-visual {
    min-height: auto;
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: calc(var(--header-h) + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(18, 9, 11, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .burger {
    display: inline-flex;
  }

  .header__phone,
  .header__cta {
    display: none;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 74px;
  }

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

  .section {
    padding: 72px 0;
  }

  .hero__content {
    padding: 72px 0 56px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .feature-points {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero__cta,
  .cta-box__actions {
    width: 100%;
  }

  .cta-box,
  .contacts-info,
  .form-box,
  .footer__brand,
  .footer__col,
  .hero-card,
  .trust-item,
  .audience-card,
  .benefit-card,
  .service-card,
  .adv-item {
    padding: 22px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 0.98rem;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .image-card--realistic,
  .image-card--tall,
  .image-card--team,
  .image-card--truck {
    min-height: 300px;
  }

  .advantages-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__btn {
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
  }
}