:root {
  --navy: #0B1F3A;
  --copper: #C4783A;
  --cream: #F6F3EE;
  --green: #C4783A;
  --green-dark: #A35F2C;
  --green-soft: #F4E6D8;
  --ink: #0B1F3A;
  --white: #FFFFFF;
  --gray: #E9E9E9;
  --yellow: #C4783A;
  --muted: #6B6B6B;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(30, 30, 30, 0.12);
  --font: "Montserrat", system-ui, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-bottom: env(safe-area-inset-bottom);
}

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

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

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

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

@media (min-width: 1400px) {
  .container {
    width: min(1280px, calc(100% - 3rem));
  }
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.logo__mark {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo__text {
  display: inline;
  font-weight: 900;
  font-size: clamp(0.92rem, 1.6vw, 1.15rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo__vyviz { color: var(--navy); }
.logo__go { color: var(--copper); }

.logo--footer .logo__mark {
  width: 44px;
  height: 44px;
}

.logo--footer .logo__vyviz {
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(196, 120, 58, 0.35);
}

.btn--primary:hover {
  background: var(--green-dark);
}

.btn--outline {
  background: var(--white);
  color: var(--ink);
  border-color: var(--green);
}

.btn--outline:hover {
  background: var(--green-soft);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(246, 243, 238, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--gray);
  box-shadow: 0 4px 24px rgba(30, 30, 30, 0.06);
}

.header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.75rem;
}

.header .logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.header .logo__text {
  white-space: nowrap;
}

.nav {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}

.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

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

.header__cta {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.header__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  min-height: 46px;
  padding: 0.35rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.28);
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.15;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header__phone-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.header__phone-num {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header__phone:hover {
  background: #16325a;
  box-shadow: 0 10px 26px rgba(11, 31, 58, 0.34);
  transform: translateY(-1px);
}

.header__phone:active {
  transform: scale(0.98);
}

.header__callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(196, 120, 58, 0.32);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header__callback:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 26px rgba(196, 120, 58, 0.4);
  transform: translateY(-1px);
}

.header__callback:active {
  transform: scale(0.96);
}

.header__callback svg {
  display: block;
}

/* Avoid logo text colliding with centered phone on mid widths */
@media (max-width: 720px) {
  .header .logo__text {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 42%, rgba(196, 120, 58, 0.14), transparent 42%),
    linear-gradient(165deg, #F6F3EE 0%, #fffdf9 52%, #F1EBE3 100%);
  z-index: 0;
}

.hero__bg::after {
  display: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 2.5rem;
}

.hero__content {
  min-width: 0;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 120, 58, 0.12);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.hero__lead {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 38ch;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.btn--telegram {
  background: #229ED9;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(34, 158, 217, 0.28);
}

.btn--telegram:hover {
  background: #1b8bc0;
}

.btn--viber {
  background: #7360F2;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(115, 96, 242, 0.28);
}

.btn--viber:hover {
  background: #5f4de0;
}

.hero__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
  max-width: 440px;
}

.hero__checks li {
  position: relative;
  padding-left: 1.45rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.4 2.4 4.6-4.8' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 70% no-repeat;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__badge {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 50px rgba(30, 30, 30, 0.1);
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.hero__badge img {
  width: 100%;
  height: auto;
}

.hero__slogan {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.65;
  line-height: 1.4;
  max-width: 22ch;
}

/* Benefits — brand strip under hero */
.benefits {
  padding: 0;
  background: var(--green);
}

.benefits__track {
  border-top: 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.benefit {
  text-align: left;
  padding: 1.2rem 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.benefit:last-child {
  border-right: 0;
}

.benefit__icon {
  width: 40px;
  height: 40px;
  margin: 0 0 0.55rem;
}

.benefit__icon svg circle,
.benefit__icon svg path {
  stroke: #fff;
}

.benefit h3 {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
  font-weight: 500;
}

/* About */
.about {
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 120, 58, 0.35), transparent 70%);
}

.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}

.about__text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: none;
  font-size: 1rem;
}

.about__panel {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.75rem;
}

.about__stat {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.45rem;
  color: var(--green);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.about h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about h2 span {
  color: var(--green);
}

.about__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
}

.about__list li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--green);
}

.about__stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
  text-transform: uppercase;
  flex-shrink: 0;
}

.about__stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Services — photo cards */
.services {
  padding: 3.5rem 0;
  background: #141414;
  color: var(--white);
}

.section-head--light .eyebrow {
  color: var(--green);
}

.section-head--light h2 {
  color: var(--white);
}

.section-head--light p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service {
  display: flex;
  flex-direction: column;
  background: #1c1c1c;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 120, 58, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.service__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.service:hover .service__media img {
  transform: scale(1.04);
}

.service__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.15rem 1.15rem 1.25rem;
  flex: 1;
}

.service h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.service__body > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  flex: 1;
}

.service__price {
  display: inline-flex;
  align-self: flex-start;
  margin: 0.15rem 0 0.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 120, 58, 0.12);
  color: var(--green) !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
}

.service__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 0.35rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service__cta:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  text-decoration: none;
}

/* Banner */
.banner {
  background: var(--yellow);
  padding: 0.95rem 0;
}

.banner p {
  margin: 0;
  text-align: center;
  font-weight: 900;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.banner--ticker {
  padding: 0.85rem 0;
  overflow: hidden;
}

.banner__marquee {
  overflow: hidden;
  width: 100%;
}

.banner__track {
  display: flex;
  width: max-content;
  animation: bannerMarquee 32s linear infinite;
  will-change: transform;
}

.banner__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.banner__group span {
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.banner__group span::after {
  content: "•";
  margin-left: 3rem;
  opacity: 0.45;
}

@keyframes bannerMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .banner__group[aria-hidden="true"],
  .banner__group span + span {
    display: none;
  }

  .banner__group {
    padding-right: 0;
    justify-content: center;
    width: 100%;
  }

  .banner__group span::after {
    display: none;
  }
}

/* Process */
.process {
  padding: 3rem 0;
  background: var(--gray);
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.2vw, 1.15rem);
  counter-reset: none;
}

.process__steps li {
  background: var(--white);
  padding: 1.15rem 1rem;
  border-radius: var(--radius);
  position: relative;
}

.process__num {
  display: block;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.process__steps h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Reviews / Google trust */
.reviews {
  padding: 3rem 0;
  background:
    linear-gradient(180deg, #f7faf7 0%, var(--white) 100%);
}

.reviews .section-head p:last-child {
  margin: 0.5rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-weight: 500;
}

.reviews__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-top: 1.75rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(196, 120, 58, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(196, 120, 58, 0.08), transparent 55%),
    var(--white);
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: min(100%, 280px);
}

.reviews__g-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.reviews__value {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.reviews__stars {
  display: flex;
  gap: 0.2rem;
  margin: 0.35rem 0 0.4rem;
}

.reviews__stars span {
  width: 1.15rem;
  height: 1.15rem;
  background: var(--yellow);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.reviews__count {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.reviews__count strong {
  color: var(--ink);
  font-weight: 700;
}

.reviews__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.reviews__order {
  border-color: rgba(30, 30, 30, 0.18);
  color: var(--ink);
}

.reviews__order:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
  margin-top: 1.25rem;
}

.review {
  margin: 0;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: start;
}

.review__avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.95rem;
}

.review__name {
  display: block;
  font-style: normal;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.25;
}

.review__stars {
  display: flex;
  gap: 0.12rem;
  margin-top: 0.25rem;
}

.review__stars span {
  width: 0.85rem;
  height: 0.85rem;
  background: var(--yellow);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.review__source {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.review p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* Order */
.order {
  padding: 3rem 0;
  background:
    radial-gradient(ellipse 55% 50% at 0% 40%, rgba(196, 120, 58, 0.12), transparent 55%),
    var(--ink);
  color: var(--white);
}

.order__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.order h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.order__copy p:last-of-type {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: none;
  font-size: 1rem;
}

.order__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.order__form label {
  display: grid;
  gap: 0.3rem;
}

.order__form label span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.order__form input,
.order__form select,
.order__form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.order__form textarea {
  resize: none;
}

.order__form input::placeholder,
.order__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.order__form select option {
  color: var(--ink);
}

.order__form input:focus,
.order__form select:focus,
.order__form textarea:focus {
  border-color: var(--green);
  background: rgba(196, 120, 58, 0.08);
}

.order__full,
.order__submit,
.order__note,
.order__error {
  grid-column: 1 / -1;
}

.order__photos {
  display: grid;
  gap: 0.45rem;
}

.order__photos-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.order__photos-label em {
  font-style: normal;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.45);
}

.order__photos-box {
  position: relative;
  display: grid;
  gap: 0.2rem;
  justify-items: start;
  padding: 0.95rem 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.order__photos-box:hover,
.order__photos-box:focus-within {
  border-color: var(--green);
  background: rgba(196, 120, 58, 0.08);
}

.order__photos-box input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  padding: 0;
  border: 0;
  background: transparent;
}

.order__photos-cta {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.order__photos-hint {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.order__photos-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.order__photos-preview[hidden] {
  display: none;
}

.order__photo-thumb {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
}

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

.order__photo-remove {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 1.35rem;
  height: 1.35rem;
  border: 0;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.82);
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.order__submit {
  width: 100%;
  margin-top: 0.15rem;
}

.order__note {
  margin: 0;
  text-align: center;
  color: var(--green);
  font-weight: 700;
}

.order__error {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: #ff8a80;
  font-weight: 700;
}

/* FAQ */
.faq {
  padding: 3rem 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.faq__list {
  display: grid;
  gap: 0.15rem;
}

.faq__item {
  border-bottom: 1px solid var(--gray);
  padding: 0;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  font-weight: 800;
  font-size: 0.98rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq__item[open] summary::after {
  content: "−";
  background: var(--green);
  color: var(--white);
}

.faq__item p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: 60ch;
  font-weight: 500;
  font-size: 0.92rem;
}

/* Contacts */
.contacts {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2.75rem;
  background: var(--navy);
  color: var(--white);
}

.contacts__skyline {
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 140' preserveAspectRatio='none'%3E%3Cpath fill='%231E1E1E' d='M0 140V90l40-20 30 15 50-45 40 30 35-55 45 40 30-25 55 50 40-70 35 45 50-35 40 40 60-60 45 35 40-20 50 40V140z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
  pointer-events: none;
}

.contacts__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contacts h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.contacts .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.contacts__text {
  margin: 0 0 1.15rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
}

.contacts__block {
  margin-bottom: 0.85rem;
}

.contacts__label {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.contacts__phone {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contacts__phone:hover {
  text-decoration: underline;
}

.contacts__place {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.messenger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.messenger:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.contacts__cta {
  background: var(--ink);
  box-shadow: none;
}

.contacts__cta:hover {
  background: #000;
}

/* Legal / privacy */
.legal {
  padding: 2rem 0 3.5rem;
  max-width: 760px;
}

.legal__head h1 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.legal__updated {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.legal__content {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

.legal__content h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.legal__content p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.legal__content ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
  font-weight: 500;
}

.legal__content li {
  margin-bottom: 0.4rem;
}

.legal__content a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__back {
  margin: 2rem 0 0;
}

/* Thank-you page */
.thanks-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(196, 120, 58, 0.14), transparent 55%),
    linear-gradient(180deg, #F6F3EE 0%, #fffdf9 40%);
}

.thanks {
  padding: clamp(2.5rem, 8vw, 5rem) 0 3.5rem;
}

.thanks__inner {
  display: grid;
  place-items: center;
}

.thanks__card {
  width: min(100%, 34rem);
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(196, 120, 58, 0.18);
  box-shadow: 0 18px 50px rgba(30, 30, 30, 0.08);
}

.thanks__icon {
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.thanks__card h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.thanks__text {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
}

.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.thanks__home {
  border-color: rgba(30, 30, 30, 0.16);
  color: var(--ink);
}

.thanks__home:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.thanks__hint {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem 0 calc(5.5rem + env(safe-area-inset-bottom));
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer__fb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__fb:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.footer__blog {
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__blog:hover {
  color: var(--white);
}

/* Floating call CTA */
.float-cta {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  -webkit-tap-highlight-color: transparent;
}

.float-cta__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  min-height: 52px;
  padding: 0.45rem 1.35rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.15;
  box-shadow: 0 10px 28px rgba(196, 120, 58, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.float-cta__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.float-cta__num {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.float-cta__phone:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 32px rgba(196, 120, 58, 0.42);
  transform: translateY(-1px);
}

.float-cta__phone:active {
  transform: scale(0.98);
}

.float-cta__callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(196, 120, 58, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.float-cta__callback:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 32px rgba(196, 120, 58, 0.42);
  transform: translateY(-1px);
}

.float-cta__callback:active {
  transform: scale(0.96);
}

.float-cta__callback svg {
  display: block;
}

body.modal-open .float-cta {
  opacity: 0;
  pointer-events: none;
}

/* Callback modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.62);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--gray);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.modal__close:hover {
  background: #dedede;
}

.modal__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal__dialog h2 {
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding-right: 2rem;
}

.modal__text {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.modal__form {
  display: grid;
  gap: 0.85rem;
}

.modal__label {
  display: grid;
  gap: 0.4rem;
}

.modal__label span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal__input {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray);
  border-radius: 12px;
  background: #fafafa;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal__input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(196, 120, 58, 0.15);
  background: var(--white);
}

.modal__input.is-invalid {
  border-color: #d32f2f;
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.12);
}

.modal__error {
  margin: 0;
  color: #d32f2f;
  font-size: 0.85rem;
  font-weight: 600;
}

.modal__success {
  margin: 0;
  text-align: center;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 700;
}

.modal__submit {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

/* Reveal disabled as opacity holes — keep layout stable */
.reveal {
  opacity: 1;
  transform: none;
}

/* Responsive — tablet */
@media (max-width: 960px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(1180px, calc(100% - 1.5rem));
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding-bottom: 1.75rem;
  }

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

  .hero {
    min-height: auto;
    padding: 1.5rem 0 0;
  }

  .hero h1 {
    max-width: none;
    margin-inline: auto;
  }

  .hero__content {
    text-align: center;
    width: 100%;
  }

  .hero__visual {
    order: -1;
    margin-inline: auto;
  }

  .hero__badge {
    max-width: 200px;
  }

  .hero__checks {
    justify-items: start;
    max-width: 340px;
    margin-inline: auto;
    text-align: left;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__messengers {
    justify-content: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

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

  .benefit {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .benefit:nth-child(2n) {
    border-right: 0;
  }

  .benefit:nth-child(n + 3) {
    border-bottom: 0;
  }

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

  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .service__media {
    aspect-ratio: 4 / 3;
  }

  .section-head {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .section-head--left {
    text-align: center;
  }

  .nav {
    display: none;
  }

  .header__phone {
    min-height: 42px;
    padding: 0.3rem 0.95rem;
  }

  .header__phone-label {
    font-size: 0.58rem;
  }

  .header__phone-num {
    font-size: 0.84rem;
  }

  .header__callback {
    width: 42px;
    height: 42px;
  }

  .header__callback svg {
    width: 18px;
    height: 18px;
  }

  .header__inner {
    column-gap: 0.5rem;
  }

  .logo__mark {
    width: 42px;
    height: 42px;
  }

  .about,
  .services,
  .process,
  .reviews,
  .order,
  .faq,
  .contacts {
    padding: 2.75rem 0;
  }

  .reviews__panel {
    padding: 1.25rem 1.15rem;
  }

  .reviews__actions {
    width: 100%;
  }

  .reviews__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }

  .order__form {
    padding: 1.15rem;
  }

  .contacts__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .contacts__cta {
    width: 100%;
  }
}

/* Responsive — mobile */
@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(1180px, calc(100% - 1.25rem));
  }

  .logo__mark {
    width: 40px;
    height: 40px;
  }

  .logo__text {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0.8rem 1.25rem;
  }

  .hero {
    padding: 1.25rem 0 0;
  }

  .hero__grid {
    gap: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .hero__visual {
    display: none;
  }

  .hero__eyebrow {
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    max-width: none;
  }

  .hero__lead {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
  }

  .hero__messengers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
  }

  .hero__messengers .btn {
    width: 100%;
  }

  .hero__checks {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    max-width: 280px;
  }

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

  .benefit {
    padding: 1rem 0.75rem;
    text-align: center;
  }

  .benefit__icon {
    margin-inline: auto;
    width: 36px;
    height: 36px;
  }

  .benefit h3 {
    font-size: 0.78rem;
  }

  .benefit p {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .about {
    padding: 2.5rem 0;
  }

  .about__grid {
    gap: 1.5rem;
  }

  .about h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  .about__text {
    font-size: 0.95rem;
  }

  .about__list {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .about__panel {
    gap: 0.65rem;
  }

  .about__stat {
    padding: 0.95rem 1rem;
  }

  .about__stat strong {
    font-size: 1.25rem;
  }

  .services,
  .process,
  .order,
  .faq,
  .contacts {
    padding: 2.5rem 0;
  }

  .section-head {
    margin-bottom: 1.35rem;
  }

  .section-head h2 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .section-head--light p:last-child {
    font-size: 0.9rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .service {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 14px;
  }

  .service__media {
    aspect-ratio: 16 / 10;
  }

  .service__body {
    padding: 0.95rem 0.95rem 1.05rem;
    gap: 0.5rem;
  }

  .service h3 {
    font-size: 1rem;
  }

  .service__body > p {
    font-size: 0.86rem;
  }

  .service__cta {
    width: 100%;
    min-height: 46px;
    margin-top: 0.2rem;
  }

  .banner {
    padding: 1rem 0;
  }

  .banner p {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    line-height: 1.35;
    padding-inline: 0.5rem;
  }

  .banner--ticker {
    padding: 0.8rem 0;
  }

  .banner__track {
    animation-duration: 24s;
  }

  .banner__group {
    gap: 2.25rem;
    padding-right: 2.25rem;
  }

  .banner__group span {
    font-size: 0.86rem;
    letter-spacing: 0.03em;
  }

  .banner__group span::after {
    margin-left: 2.25rem;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .process__steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.85rem;
    align-items: start;
    padding: 1.05rem 1rem;
  }

  .process__num {
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 1.15rem;
    padding-top: 0.1rem;
  }

  .process__steps h3 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
  }

  .process__steps p {
    font-size: 0.84rem;
  }

  .order__form {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .order__form input,
  .order__form textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .order h2 {
    font-size: clamp(1.4rem, 6vw, 1.7rem);
  }

  .faq__grid {
    gap: 1rem;
  }

  .faq__item summary {
    font-size: 0.95rem;
    padding: 0.9rem 0;
    gap: 0.75rem;
  }

  .contacts h2 {
    max-width: none;
    font-size: clamp(1.4rem, 6.5vw, 1.75rem);
  }

  .contacts__phone {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .messengers {
    width: 100%;
    gap: 0.55rem;
  }

  .messenger {
    flex: 1 1 calc(50% - 0.3rem);
    justify-content: center;
    min-height: 46px;
  }

  .contacts__cta {
    width: 100%;
  }

  .footer {
    padding: 1.25rem 0 calc(6.5rem + env(safe-area-inset-bottom));
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .float-cta {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .float-cta__phone {
    min-height: 48px;
    padding: 0.4rem 1.1rem;
  }

  .float-cta__label {
    font-size: 0.66rem;
  }

  .float-cta__num {
    font-size: 0.95rem;
  }

  .float-cta__callback {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 380px) {
  .header__cta {
    gap: 0.3rem;
  }

  .header__phone {
    padding: 0.26rem 0.75rem;
  }

  .header__phone-label {
    font-size: 0.54rem;
  }

  .header__phone-num {
    font-size: 0.78rem;
  }

  .header__callback {
    width: 38px;
    height: 38px;
  }

  .float-cta {
    gap: 0.35rem;
  }

  .float-cta__phone {
    padding: 0.35rem 0.9rem;
  }

  .float-cta__label {
    font-size: 0.6rem;
  }

  .float-cta__num {
    font-size: 0.88rem;
  }

  .float-cta__callback {
    width: 44px;
    height: 44px;
  }

  .benefit h3 {
    font-size: 0.72rem;
  }

  .benefit p {
    font-size: 0.7rem;
  }

  .messenger {
    flex: 1 1 100%;
  }
}

@media (hover: none) {
  .service:hover,
  .btn:hover,
  .service:hover .service__media img {
    transform: none;
  }

  .header__phone:hover,
  .header__callback:hover,
  .float-cta__phone:hover,
  .float-cta__callback:hover {
    transform: none;
  }
}

/* Landscape phones */
@media (max-width: 960px) and (max-height: 480px) and (orientation: landscape) {
  .hero {
    padding: 1rem 0 0;
  }

  .hero__visual {
    display: none;
  }

  .nav a {
    padding: 0.65rem 0.25rem;
  }
}

/* VANTAZH GO — route, fleet, cities, plain services */
.hero__route {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  max-width: 36rem;
}

.hero__route label {
  display: grid;
  gap: 0.28rem;
}

.hero__route label span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__route input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  background: var(--white);
  outline: none;
}

.hero__route input:focus {
  border-color: var(--green);
}

.hero__route .btn {
  align-self: end;
  min-height: 48px;
}

.fleet {
  padding: 3.5rem 0;
  background: var(--white);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.fleet__card {
  padding: 1.35rem 1.3rem 1.45rem;
  border: 1px solid var(--gray);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(30, 30, 30, 0.05);
}

.fleet__card--accent {
  border-color: rgba(196, 120, 58, 0.45);
  background: var(--green-soft);
}

.fleet__tag {
  margin: 0 0 0.55rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet__card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.fleet__size {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.fleet__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.fleet__card li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.fleet__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
}

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

.service--plain .service__body {
  padding: 1.3rem 1.2rem 1.35rem;
}

.cities {
  padding: 3.5rem 0 1.5rem;
  background: var(--white);
}

.cities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.cities__list button {
  min-height: 42px;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--gray);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cities__list button:hover,
.cities__list button:focus-visible {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
}

@media (max-width: 960px) {
  .hero__route {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }

  .hero__route .btn {
    width: 100%;
  }

  .fleet__grid,
  .services__grid--plain {
    grid-template-columns: 1fr 1fr;
  }

  .fleet,
  .cities {
    padding: 2.75rem 0;
  }
}

@media (max-width: 640px) {
  .fleet__grid,
  .services__grid--plain {
    grid-template-columns: 1fr;
  }
}

.hold-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: #F6F3EE;
}

.hold {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: 2rem 1.25rem;
  text-align: center;
}

.hold__brand {
  display: block;
  width: min(36rem, 92vw);
  text-decoration: none;
  color: inherit;
}

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

.logo--wordmark {
  gap: 0;
}

.logo--wordmark img,
.logo__wordmark {
  display: block;
  height: 40px;
  width: auto;
}

.logo--footer .logo__wordmark {
  height: 36px;
  background: #F6F3EE;
  border-radius: 6px;
  padding: 4px 8px;
}

.logo--road {
  align-items: center;
  gap: 0.7rem;
}

.logo__lock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
}

.logo__road {
  display: block;
  width: 100%;
  height: 7px;
  box-sizing: border-box;
  background:
    repeating-linear-gradient(90deg, #fff 0 5px, transparent 5px 11px) center / 100% 2px no-repeat,
    #141414;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.hold__line {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.hold__phone {
  margin-top: 0.35rem;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.hold__phone:hover {
  color: var(--copper);
}

/* VANTAZH GO landing — Pereedem structure, navy/copper */
#poslugy,
#avtopark,
#pro-nas,
#kontakty,
#order,
#vantazhnyky {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section-head {
  margin: 0 0 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-head p:last-child {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-weight: 500;
}

.hero {
  padding: 3rem 0 0;
}

.hero h1 {
  max-width: 18ch;
}

.hero__panel {
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.18);
}

.hero__panel-kicker {
  margin: 0 0 0.85rem;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__panel ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero__panel li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero__panel li span {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  white-space: nowrap;
}

.hero__panel-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--copper);
}

.hero__panel-link:hover {
  color: #d28c4f;
}

.benefits {
  background: var(--navy);
}

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

.nav-toggle {
  display: none;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open {
  overflow: hidden;
}

.chips-section {
  padding: 3.5rem 0 1rem;
  background: var(--cream);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  min-height: 44px;
  padding: 0.5rem 1.05rem;
  border: 1px solid #ddd4c8;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.chip:hover,
.chip:focus-visible {
  border-color: var(--copper);
  background: var(--green-soft);
  color: var(--green-dark);
}

.fleet {
  background: var(--cream);
}

.fleet__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.fleet__card ul {
  flex: 1;
  margin-bottom: 1.15rem;
}

.fleet__cta {
  width: 100%;
  margin-top: auto;
}

.fleet__card--accent {
  border-color: rgba(196, 120, 58, 0.45);
}

.movers {
  padding: 3.5rem 0;
  background: var(--navy);
  color: var(--white);
}

.movers .eyebrow {
  color: var(--copper);
}

.movers h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.movers p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  max-width: 36rem;
}

.movers__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem 3rem;
  align-items: center;
}

.movers__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.movers__list li {
  position: relative;
  padding-left: 1.45rem;
  font-weight: 700;
}

.movers__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--copper);
}

.movers__cta {
  grid-column: 1 / -1;
}

.why {
  padding: 3.5rem 0;
  background: var(--cream);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.why__card {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid #e6ddd2;
}

.why__card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.why__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.consult {
  padding: 3.25rem 0;
  background: var(--cream);
}

.consult__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.consult h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.consult p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  max-width: 38rem;
}

.consult__phone {
  display: block;
  margin-bottom: 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.consult__phone:hover {
  color: var(--copper);
}

.consult .messengers {
  margin-top: 0;
}

.consult .messenger {
  background: var(--navy);
  color: var(--white);
}

.consult .messenger:hover {
  background: #16325a;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.15rem;
    background: var(--cream);
    border-bottom: 1px solid #e6ddd2;
    box-shadow: 0 16px 32px rgba(11, 31, 58, 0.08);
  }

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

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid #eee6dc;
    font-size: 1rem;
  }

  .benefits__grid--3 {
    grid-template-columns: 1fr;
  }

  .benefits__grid--3 .benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .benefits__grid--3 .benefit:last-child {
    border-bottom: 0;
  }

  .movers__grid,
  .consult__inner,
  .why__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 22rem;
    margin-inline: auto;
    text-align: left;
  }

  .chips {
    justify-content: center;
  }

  .section-head {
    text-align: center;
  }

  .section-head p:last-child {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .logo--wordmark .logo__wordmark {
    height: 32px;
  }
}

@media (max-width: 640px) {
  .why__grid {
    grid-template-columns: 1fr;
  }

  .chips-section,
  .fleet,
  .movers,
  .why,
  .consult {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .chip {
    width: auto;
  }

  .fleet__cta.btn,
  .movers__cta .btn {
    width: 100%;
  }
}
