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

:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #FF6416;
  --orange-hover: #E67A00;
  --yellow: #FFFF42;
  --gray-input: #1A1A1A;
  --gray-faq: #333333;
  --text-on-dark: rgba(255, 255, 255, 0.9);
  --container: 1440px;
  --container-padding: 30px;
  --font-display: 'Druk Wide Cyr', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-menu: 'Montserrat', var(--font-body);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Desktop floor only from 1280. Below that — natural width + burger (tablet landscape too) */
@media (min-width: 1280px) {
  body {
    min-width: 1280px;
    overflow-x: hidden;
  }
}

/* Ноутбуки 1280–1599: компактнее логотип и отступы меню */
@media (min-width: 1280px) and (max-width: 1599px) {
  .nav__logo img {
    width: 190px;
  }

  .nav.is-scrolled .nav__logo img {
    width: 165px;
  }

  .nav__inner {
    gap: clamp(16px, 2vw, 28px);
  }

  .nav__panel {
    gap: clamp(12px, 1.8vw, 28px);
  }

  .nav__menu {
    gap: clamp(14px, 2vw, 28px);
  }

  .nav__menu a,
  .nav__phone {
    font-size: 18px;
  }

  .about__inner {
    padding-left: 40px;
    gap: 24px 36px;
    grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
  }

  .about__photo {
    max-width: 320px;
  }

  .about__body {
    width: 100%;
  }

  .portfolio__grid,
  .pricing__cards,
  .section-slider {
    max-width: 100%;
  }

  .hero__title {
    padding-left: clamp(0px, 4vw, 40px);
  }

  .hero__audience {
    margin-left: 0;
    padding-left: 0;
  }
}

img,
video {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 58px);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.07em;
  line-height: 1.1;
  margin-bottom: clamp(49px, 6.8vw, 70px);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

/* ===== HERO ===== */
.hero {
  background: var(--black);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  padding-top: 108px;
  padding-bottom: 65px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0 16px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    padding 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease,
    backdrop-filter 0.5s ease,
    -webkit-backdrop-filter 0.5s ease;
}

.nav.is-scrolled {
  padding: 14px 0 12px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
  position: relative;
  z-index: 2;
}

.nav__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  margin-right: 0;
}

.nav__logo img {
  width: 260px;
  height: auto;
  display: block;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.is-scrolled .nav__logo img {
  width: 220px;
}

.nav__panel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 3vw, 40px);
  flex: 0 1 auto;
  min-width: 0;
  margin-left: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 40px);
  flex-shrink: 0;
}

.nav__menu a {
  font-family: var(--font-menu);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.nav__phone {
  font-family: var(--font-menu);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav__menu a:hover {
  color: #FF6416;
}

@media (max-width: 768px) {
  .nav__phone:hover {
    color: #FF6416;
  }
}

.nav__socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-right: 0;
}

.nav__social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__social:hover {
  transform: scale(1.06);
  opacity: 0.92;
}

.nav__social--wa {
  background: #25d366;
}

.nav__social--tg {
  background: #27a7e7;
}

.nav__cta,
.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-menu);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  padding: 10px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer__cta {
  margin-bottom: 48px;
  font-family: 'Montserrat', var(--font-body);
  font-size: 20px;
  font-weight: 700;
}

.nav__cta {
  font-family: 'Montserrat', var(--font-body);
  font-size: 20px;
  font-weight: 700;
}

.nav__cta:hover,
.footer__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 66, 0.45);
}

.nav__cta:active,
.footer__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 255, 66, 0.3);
  filter: brightness(1);
}

.nav__mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.nav__mobile-logo {
  display: none;
  line-height: 0;
}

.nav__mobile-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav__burger {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__burger:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav.is-menu-open .nav__burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav.is-menu-open .nav__burger span:nth-child(2) {
  opacity: 0;
}

.nav.is-menu-open .nav__burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__mobile-phone {
  flex: 1;
  min-width: 0;
  font-family: 'Montserrat', var(--font-body);
  font-size: clamp(15px, 4.2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
}

.nav__mobile-call {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--orange);
  transition: opacity 0.2s, transform 0.2s;
}

.nav__mobile-call:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav__mobile-call:hover {
    transform: none;
  }
}

.nav__mobile-call img {
  display: block;
  width: 34px;
  height: 34px;
}

.nav__drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.96);
  padding: 88px 0 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav.is-menu-open {
  background: var(--black);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
}

.nav.is-scrolled.is-menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
}

.nav.is-menu-open .nav__drawer {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--black);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-height: calc(100vh - 128px);
  min-height: calc(100dvh - 128px);
  padding-top: 24px;
}

.nav__drawer-logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}

.nav__drawer-logo img {
  display: block;
  width: min(220px, 70vw);
  height: auto;
  margin: 0 auto;
}

.nav__drawer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.nav__drawer-menu a {
  font-family: var(--font-menu);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.nav__drawer-menu a:hover {
  color: #FF6416;
}

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

.nav__drawer-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.nav__drawer-email {
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav__drawer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__drawer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__drawer-social:hover {
  opacity: 0.88;
  transform: scale(1.05);
}

.nav__drawer-social--wa {
  background: #25d366;
}

.nav__drawer-social--tg {
  background: #27a7e7;
}

body.is-nav-open {
  overflow: hidden;
}

.hero__logo-mobile {
  display: none;
}

.hero__content {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  padding-top: 0;
  position: relative;
  z-index: 2;
  min-height: 0;
}

.hero__bg {
  position: absolute;
  top: 1px;
  right: 0;
  width: 78%;
  height: calc(100% - 136px);
  min-height: 558px;
  max-height: 792px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--black) 0%, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.6) 22%, rgba(0, 0, 0, 0.2) 38%, transparent 50%),
    linear-gradient(to left, rgba(0, 0, 0, 0.45) 0%, transparent 22%),
    linear-gradient(to bottom, transparent 92%, rgba(0, 0, 0, 0.28) 97%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(to top, var(--black) 0%, rgba(0, 0, 0, 0.55) 4%, rgba(0, 0, 0, 0.2) 10%, transparent 16%);
}

.hero__video-canvas {
  position: absolute;
  top: 48%;
  left: 55%;
  width: 138%;
  height: 122%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-31%, -50%);
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 0;
}

.hero__video {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

/* Safari / iOS: show real <video> (canvas→video often blank in WebKit) */
.is-webkit-video .hero__video-canvas {
  display: none !important;
}

.is-webkit-video .hero__video {
  position: absolute !important;
  inset: auto !important;
  top: 48% !important;
  left: 55% !important;
  width: 138% !important;
  height: 122% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: hidden !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  z-index: 0 !important;
  object-fit: cover !important;
  -webkit-object-fit: cover !important;
  transform: translate(-31%, -50%) !important;
  -webkit-transform: translate(-31%, -50%) !important;
  pointer-events: none !important;
}

/* Safari laptop/desktop: чуть меньше и правее */
@media (min-width: 769px) {
  .is-webkit-video .hero__video {
    left: 64% !important;
    width: 118% !important;
    height: 104% !important;
    transform: translate(-31%, -50%) !important;
    -webkit-transform: translate(-31%, -50%) !important;
  }
}

.hero__video-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: auto;
  -webkit-touch-callout: none;
}

.hero__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: start;
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
  letter-spacing: 0.07em;
  gap: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: none;
  gap: 8px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 0;
  width: min(650px, 100%);
  max-width: 100%;
  padding-top: clamp(48px, 10vw, 150px);
  padding-bottom: 0;
  padding-left: clamp(0px, 11.1vw, 90px);
  text-align: center;
}

.hero__title-top {
  display: block;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.15;
  margin-bottom: 0;
}

.hero__title-bottom {
  display: block;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  margin-top: 10px;
}

.hero__title-accent {
  display: block;
  color: var(--white);
  font-size: clamp(48px, 5.8vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  white-space: nowrap;
  text-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.85),
    0 0 3px rgba(255, 100, 22, 1),
    0 0 11px rgba(255, 100, 22, 0.8),
    0 0 37px rgba(255, 100, 22, 0.55);
}

.hero__audience {
  font-family: var(--font-menu);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(720px, 100%);
  max-width: 100%;
  margin-top: clamp(40px, 8vw, 130px);
  margin-left: clamp(0px, 2.8vw, 40px);
  padding-left: clamp(0px, 3.5vw, 50px);
  text-align: center;
  text-shadow: 1px 1px 1px var(--orange);
}

.hero__audience-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero__audience-line {
  display: block;
  margin-top: 10px;
}

.hero__desc {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 100%;
  max-width: min(1135px, 100%);
  margin-top: clamp(40px, 7vw, 100px);
  margin-left: max(0px, calc((100% - var(--container)) / 2));
  margin-right: auto;
  text-align: left;
  box-sizing: border-box;
}

.hero__desc p {
  max-width: none;
  font-family: 'Montserrat', var(--font-body);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-on-dark);
  margin-bottom: 16px;
}

.hero__desc p:last-child {
  margin-bottom: 0;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
  color: var(--black);
  padding: 40px 0 60px;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(200px, 370px) 1fr;
  gap: 28px clamp(40px, 5vw, 64px);
  align-items: end;
  padding-left: 80px;
}

.about__photo {
  max-width: 350px;
  width: 100%;
}

.about__photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}

.about__text {
  --about-text-indent: clamp(36px, 4vw, 48px);
  align-self: end;
}

.about__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 57px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: clamp(19px, 2.5vw, 36px);
  padding-left: calc(2px + var(--about-text-indent));
  color: var(--black);
}

.about__body {
  width: 740px;
  max-width: 100%;
  border-left: 2px solid var(--black);
  padding-left: var(--about-text-indent);
}

.about__body p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #111;
  margin-bottom: 18px;
}

.about__body p:last-child {
  margin-bottom: 0;
}

/* ===== FULL-WIDTH SECTION IMAGES ===== */
.section-slider-block {
  position: relative;
  margin-bottom: 0;
  overflow: visible;
}

.section-slider-block.container {
  padding-left: 0;
  padding-right: 0;
}

.section-slider {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 680px;
  max-height: 680px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: var(--black);
  border-radius: 0;
  box-sizing: border-box;
}

.section-slider__track {
  align-items: stretch;
  height: 100%;
}

.section-slider .swiper-wrapper {
  box-sizing: border-box;
  height: 100%;
}

.section-slider .swiper-slide {
  flex-shrink: 0;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.section-slider__slide {
  line-height: 0;
  box-sizing: border-box;
}

.section-slider__image {
  width: 100%;
  height: 100%;
  max-height: 680px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.section-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: block;
  width: 50px;
  height: 67px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.section-slider__arrow::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url('../images/strelka.svg') center / contain no-repeat;
}

.section-slider__arrow--prev::before {
  transform: rotate(180deg);
}

.section-slider__arrow--prev {
  left: 0;
}

.section-slider__arrow--next {
  right: 0;
}

.section-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 4;
  display: flex;
  width: auto;
  gap: 16px;
  transform: translateX(-50%);
}

.section-slider__dots .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: rgba(255, 100, 22, 0.3);
  opacity: 1;
  margin: 0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.section-slider__dots .swiper-pagination-bullet-active {
  border-color: var(--orange);
  background: var(--orange);
  transform: scale(1.2);
  box-shadow: 0 0 14px rgba(255, 100, 22, 0.75);
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 90px 0 50px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* 1440+: те же боковые отступы (~70px), сетка растёт; 100% а не 100vw — без лишнего скролла */
@media (min-width: 1440px) {
  .portfolio__grid {
    max-width: min(1780px, calc(100% - 140px));
  }
}

.portfolio__item {
  display: block;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.portfolio__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ===== PRICING ===== */
.pricing {
  padding: 110px 0 80px;
  text-align: center;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.pricing__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-self: center;
  text-align: center;
}

.pricing__card:nth-child(1),
.pricing__card:nth-child(3) {
  max-width: 365px;
}

.pricing__card:nth-child(2) {
  max-width: 345px;
}

.pricing__card-img {
  aspect-ratio: 1;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  margin-bottom: 28px;
  align-self: flex-start;
}

.pricing__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pricing__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 300px;
  margin-bottom: 16px;
  align-self: flex-start;
  text-align: center;
}

.pricing__card-name {
  font-family: 'Montserrat', var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 33px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.pricing__card-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', var(--font-body);
  font-size: 33px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 6px;
  white-space: nowrap;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}

.pricing__card-desc {
  width: 94%;
  max-width: 100%;
  margin: 0;
  font-family: 'Montserrat', var(--font-body);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.5;
  text-align: left;
  color: var(--text-on-dark);
  align-self: stretch;
}

.pricing__card-desc--brand {
  width: 86%;
}

.pricing__note {
  text-align: center;
  font-family: var(--font-menu);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 37px);
  letter-spacing: 2%;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
}

.pricing__note-line {
  display: inline;
}

.pricing__note-line + .pricing__note-line::before {
  content: ' ';
}

/* ===== ORDER FORM ===== */
.order {
  padding: 40px 0;
  text-align: center;
}

.order__title {
  margin-bottom: 16px;
}

.order__title-br {
  display: none;
}

.order__subtitle {
  font-family: 'Montserrat', var(--font-body);
  font-size: clamp(20px, 2.6vw, 37px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-sizing: border-box;
}

.order__subtitle a {
  font-family: inherit;
  color: #FF6416;
  transition: opacity 0.2s;
}

.order__subtitle a:hover {
  opacity: 0.85;
}

/* Телефонные ссылки — кликабельны, без системного синего в Safari/iOS */
a[href^="tel:"],
a[href^="tel:"]:link,
a[href^="tel:"]:visited,
a[href^="tel:"]:hover,
a[href^="tel:"]:active,
a[href^="tel:"]:focus {
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-fill-color: currentColor;
  color: inherit;
}

.nav__phone,
.nav__phone:link,
.nav__phone:visited,
.nav__phone:hover,
.nav__phone:active,
.nav__phone:focus,
.nav__mobile-phone,
.nav__mobile-phone:link,
.nav__mobile-phone:visited,
.nav__mobile-phone:hover,
.nav__mobile-phone:active,
.nav__mobile-phone:focus,
.footer__contacts-phone,
.footer__contacts-phone:link,
.footer__contacts-phone:visited,
.footer__contacts-phone:hover,
.footer__contacts-phone:active,
.footer__contacts-phone:focus {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.order__subtitle a[href^="tel:"],
.order__subtitle a[href^="tel:"]:link,
.order__subtitle a[href^="tel:"]:visited,
.order__subtitle a[href^="tel:"]:hover,
.order__subtitle a[href^="tel:"]:active,
.order__subtitle a[href^="tel:"]:focus {
  color: #FF6416;
  -webkit-text-fill-color: #FF6416;
  opacity: 1;
}

@media (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }

  .nav__phone:hover,
  .footer__contacts-phone:hover {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
  }

  .order__subtitle a[href^="tel:"]:hover {
    opacity: 1;
    color: #FF6416;
    -webkit-text-fill-color: #FF6416;
  }
}

@media (max-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }

  .nav__phone:active,
  .nav__mobile-phone:active,
  .footer__contacts-phone:active {
    color: #FF6416;
    -webkit-text-fill-color: #FF6416;
  }

  .order__subtitle a[href^="tel:"]:active {
    opacity: 0.85;
  }
}

.order__form {
  position: relative;
  max-width: 865px;
  text-align: left;
}

.order__honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.order__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order__field {
  position: relative;
}

.order__field::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.order__field input,
.order__textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--orange);
  border-radius: 5px;
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.order__field input {
  height: 54px;
  padding: 0 44px 0 20px;
  line-height: 54px;
}

.order__textarea {
  display: block;
  min-height: 132px;
  resize: vertical;
  padding: 18px 20px;
  line-height: 1.5;
  text-transform: uppercase;
}

.order__field input::placeholder,
.order__textarea::placeholder {
  color: var(--white);
  opacity: 1;
  font-family: 'Montserrat', var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order__field input::placeholder {
  line-height: 54px;
}

.order__field input:focus,
.order__textarea:focus {
  border-color: #ffb347;
  box-shadow: 0 0 0 1px rgba(255, 138, 0, 0.35);
}

.order__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background-color: var(--orange);
  background-image: url('../images/Rectangle 1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  padding: 18px 24px;
  cursor: pointer;
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.order__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 122, 0, 0.5);
}

.order__submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 122, 0, 0.35);
  filter: brightness(1);
}

.order__submit-icon {
  width: 18px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.95;
}

.order__consent {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.order__consent-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.order__consent-mark {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid var(--orange);
  border-radius: 3px;
  background: var(--black);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.order__consent-input:checked + .order__consent-mark {
  background: var(--orange);
}

.order__consent-input:checked + .order__consent-mark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.order__consent-input:focus-visible + .order__consent-mark {
  box-shadow: 0 0 0 3px rgba(255, 100, 22, 0.3);
}

.order__consent-text {
  flex: 1;
}

.order__consent a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.order__consent a:hover {
  opacity: 0.85;
}

/* ===== FORM RESULT MODAL ===== */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.form-modal[hidden] {
  display: none;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: form-modal-backdrop-in 0.28s ease;
}

.form-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 36px 32px 28px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  text-align: center;
  animation: form-modal-panel-in 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-modal--success .form-modal__panel {
  background: var(--orange);
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(255, 100, 22, 0.35);
}

.form-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.form-modal--success .form-modal__close {
  color: rgba(255, 255, 255, 0.85);
}

.form-modal__close:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.form-modal--success .form-modal__close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
}

.form-modal__mark {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border-radius: 50%;
}

.form-modal__mark--success {
  background: transparent;
  width: auto;
  height: auto;
}

.form-modal__mark-img {
  display: block;
  width: 48px;
  height: auto;
}

.form-modal--success .form-modal__mark-img {
  filter: brightness(0) invert(1);
}

.form-modal__mark--error {
  background: rgba(255, 120, 90, 0.12);
  color: rgba(255, 150, 130, 0.95);
}

.form-modal--success .form-modal__mark--success,
.form-modal--error .form-modal__mark--error {
  display: flex;
}

.form-modal__title {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--font-menu);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

.form-modal--success .form-modal__title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  -webkit-text-stroke: 0.5px #000;
  paint-order: stroke fill;
}

.form-modal__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.form-modal--success .form-modal__text {
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
}

.form-modal__button.order__submit {
  margin-top: 28px;
  margin-left: auto;
  margin-right: auto;
  min-width: 160px;
  max-width: 320px;
  width: auto;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-modal--success .form-modal__button.order__submit {
  background-color: #5c5c5c;
  background-image: none;
  color: #fff;
  box-shadow: none;
}

.form-modal--success .form-modal__button.order__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.form-modal--success .form-modal__button.order__submit:active {
  filter: brightness(1);
  transform: none;
  box-shadow: none;
}

@keyframes form-modal-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes form-modal-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-modal__backdrop,
  .form-modal__panel {
    animation: none;
  }
}

@media (max-width: 480px) {
  .form-modal {
    padding: 16px;
  }

  .form-modal__panel {
    padding: 32px 24px 24px;
  }

  .form-modal__title {
    font-size: 20px;
  }

  .form-modal__text {
    font-size: 14px;
  }

  .form-modal--success .form-modal__title {
    font-size: 24px;
  }

  .form-modal--success .form-modal__text {
    font-size: 17px;
  }
}

.order__submit:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

/* ===== FAQ ===== */
.faq {
  padding: 40px 0 53px;
}

.faq .section-title {
  margin-bottom: 30px;
}

.faq__list {
  max-width: 1350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item {
  width: 100%;
  background: var(--gray-faq);
  border-radius: 6px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--gray-faq);
  border: none;
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  padding: 15px 32px;
  cursor: pointer;
}

.faq__question span:first-child {
  flex: 1;
  line-height: 1.15;
}

.faq__question:hover {
  background: var(--gray-faq);
}

.faq__icon {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  transition: transform 0.3s ease;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.faq__icon::before {
  width: 1.5px;
  height: 44px;
}

.faq__icon::after {
  width: 44px;
  height: 1.5px;
}

.faq__item.active .faq__question {
  padding-bottom: 12px;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  background: var(--gray-faq);
  transition: grid-template-rows 0.35s ease;
}

.faq__item.active .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer p {
  overflow: hidden;
  min-height: 0;
  padding: 0 32px;
  font-family: var(--font-menu);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  visibility: hidden;
}

.faq__item.active .faq__answer p {
  padding-top: 0;
  padding-bottom: 28px;
  visibility: visible;
}

@media (min-width: 769px) {
  :root {
    --gray-faq: #464646;
  }

  .faq__item:not(.active) .faq__question {
    min-height: 95px;
  }
}

/* GLightbox — галерея портфолио */
.glightbox-container .gbtn {
  background: rgba(255, 255, 255, 0.12);
}

.glightbox-clean .gslide-description {
  font-family: var(--font-body);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.footer__inner {
  margin-bottom: 0;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 28px;
  line-height: 0;
}

.footer__logo img {
  width: min(500px, 90vw);
  height: auto;
  margin: 0 auto;
  display: block;
}

.footer__promo {
  font-family: var(--font-menu);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--white);
  max-width: 1070px;
  margin: 0 auto 18px;
}

.footer__site {
  display: inline-block;
  font-family: var(--font-menu);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--orange);
  margin-bottom: 75px;
  transition: opacity 0.2s, filter 0.2s;
}

.footer__site:hover {
  opacity: 0.9;
  filter: brightness(1.08);
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 52px);
  margin-bottom: 10px;
}

.footer__nav a {
  font-family: var(--font-menu);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #FF6416;
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}

.footer__contacts-phone,
.footer__contacts-email {
  font-family: var(--font-menu);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.footer__contacts-phone:hover,
.footer__contacts-email:hover {
  color: #FF6416;
}

@media (min-width: 769px) {
  .footer__contacts-phone:hover {
    color: var(--white);
  }
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.footer__social:hover {
  transform: scale(1.06);
  opacity: 0.92;
}

.footer__social--wa {
  background: #25d366;
}

.footer__social--tg {
  background: #27a7e7;
}

.footer__bar {
  padding: 20px 0;
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
}

.footer__bar-left p,
.footer__bar-right a {
  font-family: 'Montserrat', var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
}

.footer__bar-left p + p {
  margin-top: 2px;
}

.footer__bar-right {
  text-align: right;
  flex-shrink: 0;
}

.footer__bar-right a {
  display: block;
  transition: color 0.2s;
  color: var(--white);
}

.footer__bar-right a + a {
  margin-top: 4px;
}

.footer__bar-right a:hover {
  color: #FF6416;
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 2000;
  width: auto; max-width: min(300px, calc(100% - 40px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.82);
  color: var(--white);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice__close {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.cookie-notice__title {
  margin: 0 28px 6px 0;
  font-family: var(--font-menu);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.cookie-notice__text {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
}

.cookie-notice__link {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-notice__button {
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-notice__button--accept {
  border-color: var(--orange);
  background: var(--orange);
}

.cookie-notice__button:hover {
  border-color: var(--orange);
}

/* ===== RESPONSIVE ===== */

/* Меньше 1440: слайдер на всю ширину экрана */
@media (max-width: 1439px) {
  .section-slider-block {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .section-slider__arrow--prev {
    left: 0;
  }

  .section-slider__arrow--next {
    right: 0;
  }
}

/* Disabled for uniform zoom: was max-width 1440 */
@media (max-width: 0px) {
  .nav__logo img {
    width: 220px;
  }

  .nav.is-scrolled .nav__logo img {
    width: 190px;
  }

  .pricing__cards {
    gap: 32px;
  }
}

/* Disabled for uniform zoom: was max-width 1200 */
@media (max-width: 0px) {

  .nav__inner {
    gap: 20px;
  }

  .nav__panel {
    gap: 14px 20px;
    flex-wrap: wrap;
  }

  .nav__menu {
    gap: clamp(16px, 2.5vw, 32px);
  }

  .nav__menu a,
  .nav__phone {
    font-size: clamp(16px, 1.6vw, 20px);
  }

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

  .pricing__card {
    max-width: 100%;
  }

  .pricing__card-img {
    max-width: min(300px, 100%);
  }

  .order__subtitle {
    font-size: clamp(22px, 3vw, 37px);
  }

  .faq__question {
    font-size: clamp(22px, 2.5vw, 30px);
    padding: 18px 24px;
  }
}

/* Former tablet 1024 styles: apply only on mobile so zoom keeps desktop layout */
@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .section-title {
    margin-bottom: clamp(40px, 5vw, 60px);
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 88px;
    padding-bottom: 48px;
  }

  .nav {
    padding: 20px 0 12px;
  }

  .nav.is-scrolled {
    padding: 12px 0 10px;
  }

  .nav__inner {
    gap: 20px;
    text-align: left;
  }

  .nav.is-scrolled .nav__logo img {
    width: 190px;
  }

  .nav__panel {
    justify-content: flex-start;
    margin-left: 0;
  }

  .hero__bg {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: clamp(280px, 48vh, 520px);
    min-height: 280px;
    max-height: 520px;
    margin-bottom: 12px;
  }

  .hero__bg::after {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.45) 78%, var(--black) 100%);
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: left;
    min-height: auto;
    padding-top: 0;
  }

  .hero__desc {
    text-align: left;
    margin-top: 30px;
    margin-left: 0;
    max-width: 100%;
  }

  .hero__desc p {
    font-size: clamp(15px, 1.8vw, 17px);
  }

  .hero__video-canvas {
    top: 54%;
    left: 50%;
    width: 108%;
    height: 108%;
    transform: translate(-50%, -44%);
  }

  .is-webkit-video .hero__video {
    top: 54% !important;
    left: 50% !important;
    width: 108% !important;
    height: 108% !important;
    transform: translate(-50%, -44%) !important;
    -webkit-transform: translate(-50%, -44%) !important;
  }

  .hero__text {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 16px;
    justify-content: flex-start;
    gap: 0;
  }

  .hero__title {
    flex: none;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding-top: clamp(20px, 4vw, 40px);
    padding-bottom: 0;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .hero__title-top {
    font-size: clamp(18px, 2.2vw, 26px);
  }

  .hero__title-bottom {
    font-size: clamp(16px, 2vw, 22px);
  }

  .hero__title-accent {
    white-space: normal;
    font-size: clamp(32px, 7.5vw, 56px);
  }

  .hero__audience {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
    margin-top: clamp(32px, 5vw, 64px);
    text-align: center;
  }

  .hero__audience-row {
    gap: 20px;
  }

  .about {
    padding: 56px 0 64px;
  }

  .about__inner {
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    gap: 28px;
    align-items: end;
  }

  .about__photo {
    max-width: 280px;
    margin: 0;
  }

  .about__text {
    max-width: none;
    margin: 0;
    align-self: end;
  }

  .about__title {
    font-size: clamp(32px, 5vw, 50px);
    line-height: 0.95;
    margin-bottom: clamp(20px, 3vw, 28px);
    padding-left: calc(2px + var(--about-text-indent));
  }

  .about__body {
    width: 100%;
    max-width: 100%;
    border-left: 2px solid var(--black);
    padding-left: var(--about-text-indent);
  }

  .about__body p {
    font-size: clamp(15px, 1.8vw, 17px);
  }

  .section-slider__arrow {
    width: 50px;
    height: 67px;
  }

  .portfolio {
    padding: 40px 0 40px;
  }

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

  .pricing {
    padding: 64px 0 56px;
  }

  .pricing__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    gap: clamp(28px, 4vw, 48px);
  }

  .pricing__card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
  }

  .pricing__card-desc {
    font-size: clamp(18px, 2.2vw, 23px);
  }

  .pricing__note {
    font-size: clamp(24px, 3.5vw, 37px);
  }

  .order {
    padding: 0 0 72px;
  }

  .order__subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: clamp(22px, 5.2vw, 23px);
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1;
    color: var(--black);
  }

  .order__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .order__field input::placeholder,
  .order__textarea::placeholder {
    font-size: clamp(16px, 2.2vw, 20px);
  }

  .faq__question {
    font-size: clamp(18px, 2.5vw, 26px);
    padding: 18px 20px;
  }

  .faq__answer p {
    font-size: 16px;
    padding: 0 20px;
  }

  .faq .section-title {
    margin-bottom: 48px;
  }
}

/* Tablet portrait + landscape (<1280): burger in one row with logo */
@media (min-width: 769px) and (max-width: 1279px) {
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .footer {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    text-align: center;
    background: var(--black);
    color: var(--white);
  }

  .faq {
    padding: 48px 0 72px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero__bg {
    height: clamp(360px, 52vh, 580px);
    min-height: 360px;
    max-height: 580px;
  }

  .about__inner {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 32px;
    align-items: end;
  }

  .about__photo {
    max-width: 300px;
    margin: 0;
  }

  .about__text {
    max-width: none;
    margin: 0;
    align-self: end;
  }

  .about__title {
    padding-left: calc(2px + var(--about-text-indent));
  }

  .about__body {
    border-left: 2px solid var(--black);
    padding-left: var(--about-text-indent);
  }

  .nav,
  .nav.is-scrolled {
    padding: 12px 0;
  }

  .nav__inner {
    display: block;
    grid-template-columns: none;
    gap: 0;
    text-align: left;
    z-index: 3;
  }

  .nav__mobile {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .nav__burger {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .nav__mobile-logo {
    display: block;
    grid-column: 1;
    grid-row: 1;
    width: 150px;
    justify-self: start;
  }

  .nav__mobile-phone {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav__mobile-call {
    display: none;
  }

  .nav__logo,
  .nav__panel {
    display: none;
  }

  .hero__logo-mobile {
    display: none;
  }

  .nav__drawer-menu a {
    font-size: 20px;
  }
}

/* Tablet landscape: чуть меньше логотип в шапке */
@media (min-width: 769px) and (max-width: 1279px) and (orientation: landscape) {
  .nav__mobile {
    grid-template-columns: 120px minmax(0, 1fr) 44px;
  }

  .nav__mobile-logo {
    width: 120px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 10px;
  }

  html {
    scroll-padding-top: 64px;
  }

  .section-slider-block {
    display: block;
  }

  .section-slider {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    overflow: hidden;
    background: transparent;
  }

  .section-slider__track {
    display: flex;
    flex-direction: column;
    height: auto;
    transform: none !important;
  }

  .section-slider .swiper-slide {
    width: 100% !important;
    height: auto;
    margin-right: 0 !important;
  }

  .section-slider__image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .section-slider .section-slider__slide + .section-slider__slide {
    margin-top: 12px;
  }

  .section-slider__arrow,
  .section-slider__dots {
    display: none;
  }

  .nav {
    padding: 12px 0;
    transition:
      background 0.5s ease,
      box-shadow 0.5s ease,
      border-color 0.5s ease,
      backdrop-filter 0.5s ease,
      -webkit-backdrop-filter 0.5s ease;
  }

  .nav.is-scrolled {
    padding: 12px 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .nav__inner {
    display: block;
    gap: 0;
    text-align: left;
    z-index: 3;
    grid-template-columns: none;
  }

  .nav__mobile {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .nav__burger {
    grid-column: 1;
    justify-self: start;
  }

  .nav__mobile-phone {
    grid-column: 2;
    flex: none;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 17px;
  }

  .nav__mobile-call {
    grid-column: 3;
    justify-self: end;
    flex-shrink: 0;
  }

  .nav__logo,
  .nav__panel {
    display: none;
  }

  .hero__logo-mobile {
    display: block;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: transparent;
    text-align: center;
    padding: 0;
    z-index: 3;
    pointer-events: none;
  }

  .hero__logo-mobile .nav__logo {
    display: inline-block;
    margin: 0 auto;
    pointer-events: auto;
  }

  .hero__logo-mobile .nav__logo img {
    width: 200px;
    margin: 0 auto;
  }

  .nav.is-scrolled .hero__logo-mobile .nav__logo img {
    width: 168px;
  }

  .hero__bg {
    min-height: 280px;
    max-height: 420px;
    height: 46vh;
    margin-top: 58px;
  }

  .hero__video-canvas {
    top: 50%;
    left: 50%;
    width: 132%;
    height: 132%;
    transform: translate(-50%, -46%);
  }

  .is-webkit-video .hero__video {
    top: 50% !important;
    left: 50% !important;
    width: 132% !important;
    height: 132% !important;
    transform: translate(-50%, -46%) !important;
    -webkit-transform: translate(-50%, -46%) !important;
  }

  .nav__drawer-menu a {
    font-size: 18px;
  }

  .section-title {
    margin-bottom: 48px;
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 40px;
  }

  .hero__title {
    padding-top: 8px;
    gap: 6px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
  }

  .hero__title-top {
    width: 100%;
    max-width: 100%;
    font-size: clamp(16px, 4.8vw, 24px);
  }

  .hero__title-accent {
    width: 100%;
    max-width: 100%;
    font-size: clamp(28px, 10.2vw, 44px);
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero__title-bottom {
    font-size: clamp(13px, 3.6vw, 18px);
  }

  .hero__audience {
    margin-top: 32px;
    font-size: clamp(14px, 3.5vw, 18px);
    text-shadow: 1px 1px 0 var(--orange);
  }

  .hero__audience-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(8px, 2.5vw, 16px);
  }

  .hero__audience-line {
    margin-top: 6px;
  }

  .hero__desc {
    margin-top: 0;
  }

  .hero__desc p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .about {
    padding: 48px 0 56px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    padding-left: var(--container-padding);
  }

  .about__text {
    display: contents;
    max-width: 100%;
    margin: 0;
    align-self: auto;
  }

  .about__title {
    order: 1;
    font-family: var(--font-display);
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 900;
    letter-spacing: 0.07em;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    color: var(--black);
  }

  .about__photo {
    order: 2;
    max-width: 280px;
    margin: 0 auto;
  }

  .about__body {
    order: 3;
    border-left: none;
    padding-left: 15px;
    padding-right: 15px;
  }

  .about__body p {
    font-family: 'Montserrat', var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }

  .portfolio__grid {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
  }

  .pricing {
    padding: 30px 0 56px;
  }

  .pricing__cards {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    gap: clamp(80px, 4vw, 48px);
  }

  .pricing__card,
  .pricing__card:nth-child(1),
  .pricing__card:nth-child(2),
  .pricing__card:nth-child(3) {
    max-width: 100%;
  }

  .pricing__card:last-child {
    grid-column: auto;
  }

  .pricing__card-name {
    font-size: 28px;
  }

  .pricing__card-price {
    font-size: 28px;
    padding: 5px 10px;
  }

  .pricing__card-img {
    align-self: center;
  }

  .pricing__card-header {
    align-items: center;
    align-self: center;
    text-align: center;
  }

  .pricing__card-desc,
  .pricing__card-desc--brand {
    width: 100%;
  }

  .pricing__card-desc {
    font-size: 22px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing__note {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: var(--orange);
    border-bottom: none;
    border-radius: 10px;
    padding: 5px 15px 5px;
    box-shadow: 0 4px 16px rgba(255, 100, 22, 0.35);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  }

  .pricing__note-line {
    display: block;
    font-family: 'Montserrat', var(--font-body);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.08em;
  }

  .pricing__note-line + .pricing__note-line::before {
    content: none;
  }

  .pricing__note-line--accent {
    font-size: 31px;
    font-weight: 700;
  }

  .order {
    padding: 48px 0 56px;
    background: var(--white);
    color: var(--black);
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .order .section-title,
  .order__title {
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.05;
  }

  .order__title-br {
    display: block;
  }

  .order__subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: clamp(22px, 5.2vw, 23px);
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1;
    color: var(--black);
  }

  .order__subtitle a {
    color: var(--orange);
  }

  .order__field::after {
    border-right-color: var(--black);
    border-bottom-color: var(--black);
  }

  .order__field input,
  .order__textarea {
    background: var(--white);
    color: var(--black);
  }

  .order__field input::placeholder,
  .order__textarea::placeholder {
    color: var(--black);
    font-size: clamp(14px, 3.8vw, 18px);
  }

  .order__consent {
    color: rgba(0, 0, 0, 0.72);
  }

  .order__consent-mark {
    background: var(--white);
  }

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

  .order__textarea {
    order: 1;
  }

  .order__consent {
    order: 2;
  }

  .order__submit {
    order: 3;
  }

  .order__textarea {
    min-height: 120px;
  }

  .faq {
    padding: 48px 0 50px;
  }

  .faq__question {
    font-size: clamp(16px, 4.2vw, 22px);
    padding: 16px 16px;
    gap: 16px;
  }

  .faq__icon {
    width: 36px;
    height: 36px;
  }

  .faq__icon::before {
    height: 36px;
  }

  .faq__icon::after {
    width: 36px;
  }

  .faq__answer p {
    font-size: 16px;
    padding: 0 16px;
  }

  .faq__item.active .faq__answer p {
    padding-bottom: 20px;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__contacts {
    display: contents;
  }

  .footer__logo img {
    width: min(500px, 70vw);
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .footer__promo {
    font-size: 12px;
    max-width: 285px;
    margin: 0 auto 18px;
    padding: 0;
  }

  .footer__site {
    font-size: 18px;
    margin-bottom: 0;
  }

  .footer__nav {
    display: none;
  }

  .footer__nav a {
    font-size: 13px;
  }

  .footer__contacts-email {
    order: 7;
    font-size: 13px;
  }

  .footer__contacts-phone {
    order: 5;
    font-family: 'Montserrat', var(--font-body);
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .footer__cta {
    order: 6;
    margin-bottom: 14px;
  }

  .footer__socials {
    order: 8;
    gap: 14px;
    margin-top: 10px;
  }

  .footer__social {
    width: 50px;
    height: 50px;
  }

  .footer__social svg {
    width: 24px;
    height: 24px;
  }

  .footer__bar {
    text-align: center;
  }

  .footer__bar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .footer__bar-left {
    display: contents;
  }

  .footer__bar-left p:first-child {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .footer__bar-left p:last-child {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .footer__bar-right {
    order: 3;
    width: 100%;
    text-align: center;
  }

  .footer__bar-right a + a {
    margin-top: 6px;
  }

  .footer__bar-left p,
  .footer__bar-right a {
    font-size: 11px;
    line-height: 1;
  }
}

@media (max-width: 480px) {
  .cookie-notice {
    left: 12px;
    bottom: 12px;
    width: auto; max-width: none;
    padding: 12px;
  }

  .cookie-notice__actions {
    flex-direction: row;
  }

  .cookie-notice__button {
    width: auto;
  }

  .section-title {
    margin-bottom: 60px;
    font-size: clamp(24px, 8vw, 30px);
  }

  .portfolio .section-title {
    margin-bottom: 60px;
    font-size: clamp(27px, 12vw, 40px);
  }

  .nav__mobile-phone {
    font-size: 17px;
  }

  .nav__burger,
  .nav__mobile-call {
    width: 40px;
    height: 40px;
  }

  .nav__mobile {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 6px;
  }

  .nav__burger span {
    width: 16px;
  }

  .hero__logo-mobile .nav__logo img {
    width: 180px;
  }

  .pricing__cards {
    max-width: 100%;
  }

  .pricing__card-img {
    margin-bottom: 20px;
  }

  .faq__question {
    font-size: 20px;
    line-height: 27px;
    padding: 14px 12px;
    gap: 12px;
  }

  .faq__question span:first-child {
    line-height: 27px;
  }

  .faq__icon {
    width: 28px;
    height: 28px;
  }

  .faq__icon::before {
    height: 28px;
  }

  .faq__icon::after {
    width: 28px;
  }

  .faq__answer p {
    font-size: 15px;
    padding: 0 12px;
  }

  .order__field input,
  .order__textarea {
    font-size: 12px;
  }

  .order__field input {
    height: 50px;
    padding: 0 40px 0 16px;
    line-height: 50px;
  }

  .order__field input::placeholder {
    line-height: 50px;
  }

  .order__textarea {
    padding: 16px;
  }

  .order__submit {
    font-size: 13px;
    padding: 16px 20px;
  }
}

@media (max-width: 360px) {
  .nav__mobile-phone {
    font-size: 17px;
  }

  .nav__drawer-menu a {
    font-size: 16px;
  }

  .hero__audience {
    font-size: 13px;
  }

  .pricing__note-line {
    font-size: 20px;
  }

  .pricing__note-line--accent {
    font-size: 20px;
  }
}

/* Legal text pages */
.legal-page {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
}

.legal-page__header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-page__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.legal-page__logo img {
  width: min(180px, 42vw);
  height: auto;
  display: block;
}

.legal-page__back {
  font-family: var(--font-menu);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: color 0.2s;
}

.legal-page__back:hover {
  color: var(--orange);
}

.legal-page__main {
  padding: 40px 0 72px;
  max-width: 920px;
}

.legal-page__title {
  font-family: var(--font-menu);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 28px;
  color: var(--white);
}

.legal-page__content {
  font-family: 'Montserrat', var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.legal-page__content h2 {
  font-family: var(--font-menu);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--white);
}

.legal-page__content h3 {
  font-family: var(--font-menu);
  font-size: 16px;
  font-weight: 600;
  margin: 22px 0 8px;
  color: rgba(255, 255, 255, 0.95);
}

.legal-page__content p,
.legal-page__content ul {
  margin: 0 0 10px;
}

.legal-page__content ul {
  padding-left: 1.2em;
}

.legal-page__content li {
  margin-bottom: 6px;
}

.legal-page__content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page__content a:hover {
  color: #ff8a4a;
}

.legal-page__label {
  margin-top: 16px;
  margin-bottom: 6px;
}

.legal-page__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 40px;
  text-align: center;
}

.legal-page__footer a {
  font-family: var(--font-menu);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.legal-page__footer a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .legal-page__main {
    padding: 28px 0 56px;
  }

  .legal-page__content {
    font-size: 14px;
  }
}
