:root {
  --cream: #fff6ee;
  --peach: #ffe8d6;
  --peach-deep: #ffd4b8;
  --surface: #fffbf7;
  --text: #2a1f1a;
  --text-muted: #6b5348;
  --border: rgba(42, 31, 26, 0.1);
  --coral: #f0544f;
  --coral-dark: #d9443f;
  --rose: #ff7b9c;
  --gold: #e8a838;
  --sky: #5ba4cf;
  --navy: #1e2a3a;
  --gradient-warm: linear-gradient(135deg, #f0544f 0%, #ff7b9c 50%, #e8a838 100%);
  --gradient-btn: linear-gradient(90deg, #f0544f 0%, #ff7b9c 100%);
  --gradient-hero: linear-gradient(160deg, #fff0e6 0%, #ffe4d0 45%, #ffd9c2 100%);
  --shadow: 0 12px 40px rgba(42, 31, 26, 0.1);
  --shadow-lg: 0 24px 60px rgba(42, 31, 26, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 70px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
}

/* Floating balloon decor */
.balloons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.balloons span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(1px);
  animation: drift 20s ease-in-out infinite;
}

.balloons span:nth-child(1) {
  width: 120px;
  height: 140px;
  background: radial-gradient(circle at 35% 30%, #ffb3c6, #ff7b9c);
  top: 8%;
  right: -20px;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
}

.balloons span:nth-child(2) {
  width: 80px;
  height: 95px;
  background: radial-gradient(circle at 35% 30%, #a8d8f0, #5ba4cf);
  top: 45%;
  left: -15px;
  animation-delay: -5s;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
}

.balloons span:nth-child(3) {
  width: 60px;
  height: 72px;
  background: radial-gradient(circle at 35% 30%, #ffe08a, #e8a838);
  bottom: 25%;
  right: 8%;
  animation-delay: -10s;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
}

.balloons span:nth-child(4) {
  width: 50px;
  height: 60px;
  background: radial-gradient(circle at 35% 30%, #ffc4b8, #f0544f);
  top: 22%;
  left: 12%;
  animation-delay: -7s;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  opacity: 0.3;
}

.balloons span:nth-child(5) {
  width: 90px;
  height: 108px;
  background: radial-gradient(circle at 35% 30%, #ffd4e8, #ff9ec4);
  bottom: 10%;
  left: 30%;
  animation-delay: -14s;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  opacity: 0.25;
}

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 246, 238, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo__icon {
  font-size: 1.35rem;
}

.logo em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: var(--coral);
}

.header__nav {
  display: none;
  gap: 28px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.header__nav a:hover {
  color: var(--coral);
}

.header__phone {
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.header__phone:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

main {
  position: relative;
  z-index: 1;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 36px) 0 48px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

.hero__layout {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(240, 84, 79, 0.2);
  color: var(--coral-dark);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 20px;
}

.highlight {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  position: relative;
  isolation: isolate;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  border: none;
  background: transparent;
  color: #fff;
  overflow: hidden;
  clip-path: inset(0 round 9999px);
  box-shadow: none;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--gradient-btn);
  clip-path: inset(0 round 9999px);
  z-index: -1;
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.hero__actions .btn--primary::before {
  background: linear-gradient(90deg, #f0544f 0%, #ff7b9c 85%, #ff7b9c 100%);
}

.btn--ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
  box-shadow: none;
  z-index: 1;
}

.btn--ghost:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.btn--white {
  background: #fff;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn--lg {
  min-height: 56px;
  padding-inline: 28px;
}

.btn--full {
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  padding: 16px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  text-align: center;
}

.stat--featured {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(240, 84, 79, 0.25);
  box-shadow: 0 4px 20px rgba(240, 84, 79, 0.12);
}

.stat strong {
  display: block;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat--featured strong {
  color: var(--coral);
}

.stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero__media {
  position: relative;
}

.hero__media-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(240, 84, 79, 0.2), rgba(255, 123, 156, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__media-frame {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  background: #000;
}

.hero__video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  max-height: 540px;
}

.hero__media-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 12px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Marquee */
.marquee {
  background: var(--navy);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee__track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__track span:nth-child(even) {
  color: var(--rose);
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Steps */
.section--steps {
  padding: 48px 0;
  background: var(--cream);
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-warm);
}

.step__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 64px 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--peach) 0%, var(--cream) 100%);
}

.section--package {
  background: var(--surface);
}

.section--gallery {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

.section__head {
  margin-bottom: 32px;
}

.section__head--center {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}

.section__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}

.section__head h2,
.split__content h2,
.cta-box h2 {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.section__head p,
.cta-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.gallery__item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--wide img {
  aspect-ratio: 16 / 9;
}

.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
}

/* Media showcase */
.media-showcase {
  max-width: 760px;
  margin-inline: auto;
}

.video-card--solo .video-card__player {
  aspect-ratio: 16 / 9;
  max-height: none;
}

/* Video grid */
.video-grid {
  display: grid;
  gap: 16px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.video-card__player {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.video-card__label {
  margin: 0;
  padding: 12px 16px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(30, 42, 58, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__inner {
  margin: 0;
  max-width: min(900px, 100%);
  width: 100%;
}

.lightbox__img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox__caption {
  margin-top: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Price card */
.price-card {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  padding: 36px 28px 32px;
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-warm);
}

.price-card__ribbon {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0e6, #ffe4d0);
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border);
}

.price-card__label {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.price-card__price {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card__price span {
  font-size: 0.45em;
}

.price-card__badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.price-card__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.price-card__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe4d0, #ffd4b8);
  color: var(--coral-dark);
  font-weight: 800;
  font-size: 0.75rem;
}

.price-card__list strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.price-card__list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* Scenario cards */
.cards {
  display: grid;
  gap: 16px;
}

.card {
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card__photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__photo img {
  transform: scale(1.05);
}

.card__body {
  padding: 22px 20px 24px;
}

.card__emoji {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 800;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.card__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--coral);
  transition: opacity 0.2s ease;
}

.card__link:hover {
  opacity: 0.75;
}

.card--pink,
.card--blue,
.card--gold {
  background: var(--surface);
}

.card--pink {
  border-color: rgba(255, 123, 156, 0.25);
}

.card--blue {
  border-color: rgba(91, 164, 207, 0.25);
}

.card--gold {
  border-color: rgba(232, 168, 56, 0.3);
}

/* Split */
.split {
  display: grid;
  gap: 24px;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.7;
}

.bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-weight: 500;
}

.bullets li::before {
  content: "🎈";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
}

.split__panel {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.split__panel h3 {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 800;
}

.req-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.req-list li {
  display: flex;
  gap: 14px;
}

.req-list span {
  font-size: 1.3rem;
}

.req-list strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.req-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

/* CTA */
.section--cta {
  padding-bottom: 100px;
}

.cta-box {
  text-align: center;
  padding: 52px 28px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--gradient-warm);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15), transparent 50%);
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box .section__label {
  color: rgba(255, 255, 255, 0.85);
}

.cta-box h2 {
  color: #fff;
  max-width: 520px;
  margin-inline: auto;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  margin-inline: auto;
}

.contacts--cta {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  max-width: 420px;
  margin-inline: auto;
}

.cta-box__pdf {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.cta-box__pdf:hover {
  color: #fff;
}

/* Contacts */
.contacts__title {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.contacts__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contacts--hero {
  margin-bottom: 28px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-btn__icon {
  font-size: 1rem;
  line-height: 1;
}

.contact-btn--tg {
  background: #e8f7fd;
  color: #0d8bd9;
  border-color: rgba(13, 139, 217, 0.15);
}

.contact-btn--wa {
  background: #e8f8ef;
  color: #1fa855;
  border-color: rgba(31, 168, 85, 0.15);
}

.contact-btn--max {
  background: #eceeff;
  color: #4f46e5;
  border-color: rgba(79, 70, 229, 0.15);
}

.contact-btn--phone {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.contact-btn--lg {
  min-height: 52px;
  padding: 0 18px;
  justify-content: center;
  width: 100%;
}

.contact-btn--lg .contact-btn__text em {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 700;
  opacity: 0.85;
}

.contacts--cta .contact-btn--tg,
.contacts--cta .contact-btn--wa,
.contacts--cta .contact-btn--max,
.contacts--cta .contact-btn--phone {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.4);
}

.contacts--cta .contact-btn--tg {
  color: #0d8bd9;
}

.contacts--cta .contact-btn--wa {
  color: #1fa855;
}

.contacts--cta .contact-btn--max {
  color: #4f46e5;
}

.contact-btn--sm {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.8rem;
}

.contacts--footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.contacts--footer .contact-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.contacts--footer .contact-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.footer__brand {
  text-align: center;
}

.footer__name {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 28px 0 96px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: #fff;
  font-weight: 700;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 251, 247, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.sticky-cta__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: #fff;
}

.sticky-cta__item--tg {
  background: #2aabee;
}

.sticky-cta__item--wa {
  background: #25d366;
}

.sticky-cta__item--max {
  background: #4f46e5;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  z-index: 210;
  transform: translateX(-50%) translateY(12px);
  max-width: min(360px, calc(100% - 32px));
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Reviews */
.section--reviews {
  background: var(--surface);
}

.reviews {
  display: grid;
  gap: 20px;
}

.review-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card__text {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.review-card__author {
  display: grid;
  gap: 4px;
}

.review-card__author strong {
  font-weight: 800;
  font-size: 0.95rem;
}

.review-card__author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--coral);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* Partners */
.section--partners {
  background: var(--navy);
  color: #fff;
}

.partner-teaser {
  display: grid;
  gap: 28px;
  text-align: center;
}

.partner-teaser .section__label {
  color: rgba(255, 255, 255, 0.7);
}

.partner-teaser h2 {
  color: #fff;
  margin: 0 0 12px;
}

.partner-teaser p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

.partner-teaser__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.partner-tag {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.partner-benefits {
  display: grid;
  gap: 20px;
}

.partner-benefit {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.partner-benefit__icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.partner-benefit h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.partner-benefit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.partner-materials {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin-inline: auto;
}

.partner-materials li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
}

.partner-materials strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}

.partner-materials p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.partner-materials__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.partner-materials__links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--coral);
}

/* Scenario pages */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 56px;
  background: var(--gradient-hero);
}

.page-hero__inner {
  max-width: 720px;
}

.page-hero__back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.page-hero__back:hover {
  color: var(--coral);
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
}

.page-hero__lead {
  margin: 0 0 28px;
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}

.feature-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.feature-list__icon {
  flex-shrink: 0;
  font-size: 1.4rem;
}

/* Responsive */
@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .gallery__item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery__item--wide img {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .gallery__item:not(.gallery__item--wide) img {
    aspect-ratio: 1;
  }

  .video-card__player {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-teaser {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .partner-teaser p {
    margin-inline: 0;
  }

  .partner-teaser__actions {
    justify-content: flex-end;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-box {
    padding: 60px 48px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer__brand {
    text-align: left;
  }

  .contacts--footer {
    justify-content: flex-end;
  }

  .contacts--cta {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
  }
}

@media (min-width: 900px) {
  .header__nav {
    display: flex;
  }

  .hero {
    padding: calc(var(--header-h) + 56px) 0 72px;
  }

  .hero__layout {
    grid-template-columns: 1.05fr 0.8fr;
    gap: 48px;
  }

  .hero__video {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 40px;
  }

  .section {
    padding: 80px 0;
  }

  .partner-benefits {
    grid-template-columns: repeat(4, 1fr);
  }

  .sticky-cta {
    display: none;
  }

  .footer {
    padding-bottom: 36px;
  }

  .section--cta {
    padding-bottom: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .balloons span,
  .marquee__track {
    animation: none;
  }
}
