/* Кондей 13 — mobile first, премиум тёмная тема + акценты */
:root {
  --color-bg-dark: #050816;
  --color-bg-card: rgba(255, 255, 255, 0.06);
  --color-accent: #635bff;
  --color-accent-glow: rgba(99, 91, 255, 0.45);
  --color-cyan: #22d3ee;
  --color-green: #22c55e;
  --color-green-hover: #16a34a;
  --color-yellow: #fbbf24;
  --color-yellow-hover: #f59e0b;
  --color-text: #e8eaef;
  --color-text-muted: #94a3b8;
  --color-light-bg: #ffffff;
  --color-light-muted: #f1f5f9;
  --color-dark-text: #0f172a;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-neon: 0 0 40px var(--color-accent-glow);
  --header-h: 72px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-text);
  background: var(--color-light-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 720px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--color-cyan), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background: var(--color-bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), #7c6fff);
  color: #fff;
  box-shadow: 0 8px 28px var(--color-accent-glow);
}
.btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn--green {
  background: linear-gradient(135deg, var(--color-green), #4ade80);
  color: #052e16;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.35);
}
.btn--green:hover {
  background: linear-gradient(135deg, var(--color-green-hover), var(--color-green));
  transform: translateY(-2px);
}

.btn--yellow {
  background: linear-gradient(135deg, var(--color-yellow), #fcd34d);
  color: #422006;
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.35);
}
.btn--yellow:hover {
  background: linear-gradient(135deg, var(--color-yellow-hover), var(--color-yellow));
  transform: translateY(-2px);
}

.btn--cyan {
  background: linear-gradient(135deg, var(--color-cyan), #3b82f6);
  color: #042f2e;
  box-shadow: 0 8px 28px rgba(34, 211, 238, 0.35);
}
.btn--cyan:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.btn--ghost {
  text-decoration: none;
}
.btn--ghost:hover {
  text-decoration: none;
}

.btn--block {
  width: 100%;
}

.link-arrow {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--color-accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.link-arrow::after {
  content: "→";
  transition: transform var(--transition);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(5, 8, 22, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header--scrolled .header__title,
.header--scrolled .header__link {
  color: var(--color-text);
}
.header--scrolled .header__link--active {
  color: var(--color-cyan);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  z-index: 101;
}
.header__brand:hover {
  text-decoration: none;
}

.header__logo {
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(99, 91, 255, 0.35);
}

.header__title {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Телефон и почта — только мобильная/планшетная ширина */
.header__contacts {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0.15rem;
  padding: 0 0.25rem;
}

.header__contact-link {
  font-size: 0.68rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header__contact-link:hover {
  color: var(--color-cyan);
  text-decoration: underline;
}

.header__contact-link--mail {
  white-space: normal;
  word-break: break-all;
  text-align: right;
  font-size: 0.62rem;
  line-height: 1.2;
}

@media (prefers-reduced-motion: reduce) {
  .header__nav {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .header__contacts {
    display: flex;
  }
  .header__title {
    display: none;
  }
}

.header__nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(5, 8, 22, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  padding: 0.75rem 0.75rem 0.9rem;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.header__nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.75rem;
}

.header__link {
  display: inline-block;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
}

.header__link:hover,
.header__link--active {
  color: var(--color-cyan);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__cta {
  display: none;
}

.header__burger {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  position: relative;
  z-index: 102;
}
.header__burger::before,
.header__burger::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform var(--transition), top var(--transition);
}
.header__burger::before {
  top: 14px;
}
.header__burger::after {
  top: 26px;
}
.header__burger[aria-expanded="true"]::before {
  top: 20px;
  transform: rotate(45deg);
}
.header__burger[aria-expanded="true"]::after {
  top: 20px;
  transform: rotate(-45deg);
}

@media (min-width: 1025px) {
  .header__nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  .header__list {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .header__link {
    font-size: 0.95rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
  }
  .header__link:hover,
  .header__link--active {
    background: transparent;
  }
  .header--scrolled .header__link {
    color: rgba(255, 255, 255, 0.85);
  }
  .header__burger {
    display: none;
  }
  .header__cta {
    display: inline-flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  color: var(--color-text);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5, 8, 22, 0.88) 0%, rgba(5, 8, 22, 0.65) 45%, rgba(5, 8, 22, 0.92) 100%);
}

.hero__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 91, 255, 0.35), transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(34, 211, 238, 0.2), transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__heading {
  font-size: clamp(1.65rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero__lead {
  margin: 0 0 1.75rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__card {
  width: 100%;
  max-width: 320px;
  padding: 1.5rem;
  border-radius: var(--radius);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero__card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cyan);
  margin-bottom: 0.35rem;
}

.hero__card-value {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero__card-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.hero__card-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-accent));
  border-radius: 3px;
  box-shadow: 0 0 12px var(--color-accent-glow);
}

.hero__card-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero__scroll-hint {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
}

.hero__scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 0 rgba(99, 91, 255, 0.45);
  text-decoration: none;
  animation: heroScrollPulse 2.5s ease-out infinite;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.hero__scroll-icon {
  display: block;
  animation: heroScrollFloat 2.5s ease-in-out infinite;
}

.hero__scroll-arrow:hover {
  color: var(--color-cyan);
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.06);
}

.hero__scroll-arrow:hover .hero__scroll-icon {
  animation-play-state: paused;
}

@keyframes heroScrollFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes heroScrollPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 91, 255, 0.45);
  }
  55% {
    box-shadow: 0 0 0 0 rgba(99, 91, 255, 0.15);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(99, 91, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-arrow,
  .hero__scroll-icon {
    animation: none;
  }
}

@media (min-width: 769px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .hero__visual {
    justify-content: flex-end;
  }
}

/* Кнопка «Вверх» */
.btn-to-top {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 90;
  padding: 0.65rem 1.1rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), #7c6fff);
  box-shadow: 0 10px 40px rgba(99, 91, 255, 0.45);
  transition: transform var(--transition);
}

.btn-to-top:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.btn-to-top[hidden] {
  display: none;
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 1025px) {
  .section {
    padding: 6.5rem 0;
  }
}

.section--light {
  background: var(--color-light-bg);
}

.section--muted {
  background: var(--color-light-muted);
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text);
}

.section__title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 auto 2.5rem;
  max-width: 900px;
}

.section__title--left {
  text-align: left;
  margin-left: 0;
}

.section__title--light {
  color: #fff;
}

.section__lead {
  text-align: center;
  color: var(--color-text-muted);
  margin: -1.5rem auto 2rem;
  max-width: 640px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay {
  transition-delay: 0.12s;
}

/* Problems grid */
.problems__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .problems__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

.card--glow {
  position: relative;
  overflow: hidden;
}

.card--glow::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.card--mint::before {
  background: radial-gradient(circle at 30% 20%, #34d399, transparent 45%);
}
.card--coral::before {
  background: radial-gradient(circle at 30% 20%, #fb7185, transparent 45%);
}
.card--gold::before {
  background: radial-gradient(circle at 30% 20%, #fbbf24, transparent 45%);
}
.card--purple::before {
  background: radial-gradient(circle at 30% 20%, #a78bfa, transparent 45%);
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 1;
}

.card__text {
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
  position: relative;
  z-index: 1;
}

/* Explain */
.explain__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.explain__text .section__title {
  margin-bottom: 1rem;
}

.explain__list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #334155;
}

.explain__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.explain__img {
  width: 100%;
  border-radius: var(--radius);
}

.explain__accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 2px rgba(99, 91, 255, 0.35);
  pointer-events: none;
}

@media (min-width: 769px) {
  .explain__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Advantages */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 769px) {
  .advantages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1025px) {
  .advantages__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  padding: 1.25rem 0.75rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.advantages__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(99, 91, 255, 0.12);
}

.advantages__icon {
  font-size: 1.75rem;
}

.advantages__label {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Stats band */
.stats-band {
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 200%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .stats-band__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-band__stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--color-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-band__stat span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Services */
.services__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.service-card__pic {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.service-card__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__title {
  margin: 1rem 1.25rem 0.35rem;
  font-size: 1.1rem;
}

.service-card__desc {
  margin: 0 1.25rem 1rem;
  font-size: 0.95rem;
  color: #64748b;
  flex: 1;
}

.service-card .link-arrow {
  margin: 0 1.25rem 1.25rem;
  align-self: flex-start;
}

/* Prices */
.prices__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
}

@media (min-width: 769px) {
  .price-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.price-row__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.price-row__desc {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.price-row__cost {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-accent);
  white-space: nowrap;
}

.price-row--interactive {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid transparent;
}

.price-row--interactive:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(99, 91, 255, 0.18);
  border-color: rgba(99, 91, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .price-row--interactive:hover {
    transform: none;
  }
}

.prices__extras {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.08), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(99, 91, 255, 0.22);
  box-shadow: 0 12px 40px rgba(99, 91, 255, 0.12);
}

.prices__extra-line {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  color: #334155;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  line-height: 1.45;
}

.prices__extra-line:last-child {
  margin-bottom: 0;
}

.prices__extra-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #052e16;
  background: linear-gradient(135deg, #4ade80, var(--color-green));
  border-radius: 999px;
  flex-shrink: 0;
}

/* Promo CTA */
.promo-cta__inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.promo-cta__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0 0 1.75rem;
  font-weight: 800;
}

.promo-cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.promo-cta__note {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--color-cyan);
}

.form-consent {
  margin-top: 1rem;
  text-align: left;
}

.form-consent--dark .form-consent__text {
  color: rgba(255, 255, 255, 0.88);
}

.form-consent--dark .form-consent__text a {
  color: var(--color-cyan);
}

.modal .form-consent__text a {
  color: var(--color-accent);
}

.form-consent__label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-consent__check {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--color-accent);
}

.form-consent__error {
  display: block;
  margin-top: 0.35rem;
}

/* Form fields */
.form-field__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
}

.section--light .form-field__label,
.modal .form-field__label {
  color: var(--color-dark-text);
}

.form-field__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.section--light .form-field__input,
.modal .form-field__input {
  border-color: #e2e8f0;
  background: #fff;
  color: var(--color-dark-text);
}

/* Нативный выпадающий список: фон списка у системы часто белый — задаём тёмный текст для option */
.section--dark .form-field__input option,
.section--dark .form-field__input optgroup {
  color: #0f172a;
  background-color: #ffffff;
}

.form-field__input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.form-field__error {
  display: block;
  min-height: 1.25rem;
  font-size: 0.8rem;
  color: #f87171;
  margin-top: 0.25rem;
}

/* Video */
.video-block__wrap {
  max-width: 900px;
  margin: 0 auto;
}

.video-block__ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-block__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Gallery swiper */
.gallery-swiper {
  padding-bottom: 3rem;
  overflow: hidden;
}

.gallery-slide {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-slide__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.75);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.gallery-slide__badge--ok {
  background: rgba(34, 197, 94, 0.9);
  color: #052e16;
}

.gallery-swiper__pagination {
  bottom: 0 !important;
}

.gallery-swiper__pagination .swiper-pagination-bullet {
  background: var(--color-accent);
  opacity: 0.35;
}
.gallery-swiper__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  box-shadow: 0 0 10px var(--color-accent-glow);
}

.gallery-swiper__nav,
.reviews-swiper__nav {
  color: var(--color-accent);
}

.gallery-swiper__nav::after,
.reviews-swiper__nav::after {
  font-size: 1.25rem;
  font-weight: 800;
}

/* CTA repeat */
.cta-repeat {
  position: relative;
  padding: 5rem 0;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.cta-repeat__bg {
  position: absolute;
  inset: 0;
}

.cta-repeat__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-repeat__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 22, 0.85), rgba(5, 8, 22, 0.55));
}

.cta-repeat__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.cta-repeat__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.25;
}

/* Why us */
.why-us__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-us__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-us__item:hover {
  transform: translateY(-5px) translateX(4px);
  box-shadow: 0 16px 44px rgba(99, 91, 255, 0.15);
  border-color: rgba(99, 91, 255, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .why-us__item:hover {
    transform: none;
  }
}

.why-us__icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Reviews */
.reviews-swiper {
  padding: 0 2.5rem 3rem;
  overflow: hidden;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin: 0.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: rotate(-1deg);
  transition: transform var(--transition);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.review-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.review-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--color-accent);
  box-shadow: 0 0 20px var(--color-accent-glow);
}

.review-card__text {
  font-style: italic;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  text-align: center;
}

.review-card__author {
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.review-card__role {
  font-size: 0.85rem;
  text-align: center;
  color: var(--color-text-muted);
}

.reviews-swiper__pagination {
  bottom: 0 !important;
}
.reviews-swiper__pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.35;
}
.reviews-swiper__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Guarantees */
.guarantees__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 769px) {
  .guarantees__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guarantees__item {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.guarantees__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(34, 211, 238, 0.18);
  border-color: rgba(34, 211, 238, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .guarantees__item:hover {
    transform: none;
  }
}

.guarantees__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.guarantees__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.guarantees__text {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

/* Где мы работаем */
.where-we__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.where-we__city {
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.where-we__city:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(99, 91, 255, 0.2);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 12px 36px rgba(99, 91, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .where-we__city:hover {
    transform: none;
  }
}

/* Expert */
.expert__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.expert__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
}

@media (min-width: 769px) {
  .expert__grid {
    grid-template-columns: minmax(0, 320px) 1fr;
  }
  .expert__photo img {
    margin: 0;
  }
}

/* FAQ accordion */
.accordion__item {
  border-bottom: 1px solid #e2e8f0;
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--color-dark-text);
}

.accordion__trigger::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.accordion__trigger[aria-expanded="true"]::after {
  content: "−";
}

.accordion__panel {
  padding: 0 0 1.15rem;
}

.accordion__panel[hidden] {
  display: none;
}

.accordion__panel p {
  margin: 0;
  color: #475569;
}

/* Contacts */
.contacts {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contacts__grid {
  display: grid;
  gap: 2rem;
}

.contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-neon);
}

.contacts__iframe {
  width: 100%;
  height: 320px;
  display: block;
}

.contacts__title {
  margin: 0 0 1rem;
  font-size: 1.75rem;
}

.contacts__row {
  margin: 0 0 0.75rem;
  color: var(--color-text-muted);
}

.contacts__row a {
  color: var(--color-cyan);
}

@media (min-width: 769px) {
  .contacts__grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

/* Footer */
.footer {
  background: #02040f;
  color: var(--color-text-muted);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.footer__brand:hover {
  text-decoration: none;
  color: var(--color-cyan);
}

.footer__logo {
  border-radius: var(--radius-sm);
}

.footer__copy {
  margin: 0;
  font-size: 0.9rem;
}

.footer__link {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__soc {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
.footer__soc:hover {
  border-color: var(--color-accent);
  color: var(--color-cyan);
  text-decoration: none;
}

@media (min-width: 769px) {
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 22, 0.75);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-dark-text);
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(5, 8, 22, 0.06);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-dark-text);
}

.modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.modal__hint {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #64748b;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.modal__status {
  min-height: 1.25rem;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--color-accent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(5, 8, 22, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(96vw, 1200px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neon);
}

.lightbox__caption {
  color: var(--color-text-muted);
  margin: 1rem 0 0;
  text-align: center;
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}

body.modal-open,
body.lightbox-open,
body.nav-open {
  overflow: hidden;
}

/* Cookie: полоска внизу по центру, без затемнения страницы */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  padding: 0 0.5rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__box {
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.6rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  padding: 0.45rem 0.55rem 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--color-dark-text);
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
  animation: cookieBarIn 0.3s ease;
}

@keyframes cookieBarIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner__box {
    animation: none;
  }
}

.cookie-banner__title {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1.2;
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 9rem;
  min-width: 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: #475569;
}

.cookie-banner__text a {
  color: var(--color-accent);
  white-space: nowrap;
}

.cookie-banner__btn {
  flex: 0 0 auto;
  margin-left: auto;
  width: auto;
  min-height: 0;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-sm);
}

@media (max-width: 480px) {
  .cookie-banner {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

  .cookie-banner__box {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    max-width: 100%;
    padding: 0.32rem 0.42rem;
    gap: 0.28rem;
  }

  .cookie-banner__title {
    font-size: 0.65rem;
  }

  .cookie-banner__text {
    flex: none;
    font-size: 0.64rem;
    line-height: 1.28;
  }

  .cookie-banner__btn {
    margin-left: 0;
    align-self: flex-end;
    padding: 0.22rem 0.5rem;
    font-size: 0.66rem;
  }
}
