/* ============================================
   ИИ-мультики · Курс Умиды — стили
   ============================================ */

:root {
  /* Цвета */
  --strawberry: #FF4D77;
  --strawberry-dark: #E11D54;
  --strawberry-deep: #C2174A;
  --coral: #FF7A6B;
  --gold: #E6B24C;
  --gold-dark: #C9961F;
  --leaf: #46B07A;
  --pearl: #F3E9DC;
  --text: #2A1320;
  --text-light: #6E5560;
  --white: #FFFFFF;
  --b: #6B2545;
  --blush: rgba(255, 77, 119, 0.18);
  --ink: var(--text);

  /* Фон — тёплый градиент (персик → крем → розовый) */
  --bg-gradient: linear-gradient(160deg, #FFE3D6 0%, #FBF1E2 45%, #FFE0EA 100%);

  /* Шрифты */
  --font-heading: "Unbounded", sans-serif;
  --font-body: "Manrope", sans-serif;

  /* Прочее */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 50px -20px rgba(225, 29, 84, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(42, 19, 32, 0.18);
  --transition: 0.3s ease;
}

/* ============================================
   Базовые сбросы
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-gradient);
  background-size: 200% 200%;
  animation: bgShift 24s ease-in-out infinite alternate;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

section, .gallery {
  padding: 64px 0;
}

section.alt {
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 720px) {
  section, .gallery {
    padding: 42px 0;
  }
}

@keyframes bgShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}

/* ============================================
   Декоративные плавающие элементы
   ============================================ */

.prop {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 10px 16px rgba(42, 19, 32, 0.12));
}

.prop svg {
  width: 100%;
  height: auto;
  display: block;
}

.prop.spin {
  animation: floatSpin 9s ease-in-out infinite;
}

.prop.spin2 {
  animation: floatY 7s ease-in-out infinite;
}

.prop.spin3 {
  animation: floatSpin 11s ease-in-out infinite reverse;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

@keyframes floatSpin {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(10deg); }
}

@keyframes pulseSoft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .prop {
    animation: none !important;
  }
}

/* ============================================
   Утилиты
   ============================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--strawberry-dark);
  background: rgba(255, 77, 119, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.hl {
  color: var(--strawberry-dark);
}

.sec-head {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 720px;
}

.sec-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.sec-head p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Кнопки */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--strawberry) 0%, var(--strawberry-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -16px rgba(225, 29, 84, 0.4);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1rem;
  animation: pulseSoft 2.6s ease-in-out infinite;
}

.btn-lg:hover {
  animation-play-state: paused;
}

.btn-ghost {
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(42, 19, 32, 0.1);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--strawberry);
  color: var(--strawberry-dark);
  box-shadow: var(--shadow-card);
}

@media (prefers-reduced-motion: reduce) {
  .btn-lg {
    animation: none;
  }
}

/* Анимация появления */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Поочерёдное появление карточек в сетках */
.cards-4 .reveal:nth-child(1),
.quotes .reveal:nth-child(1) { transition-delay: 0s; }

.cards-4 .reveal:nth-child(2),
.quotes .reveal:nth-child(2) { transition-delay: 0.08s; }

.cards-4 .reveal:nth-child(3),
.quotes .reveal:nth-child(3) { transition-delay: 0.16s; }

.cards-4 .reveal:nth-child(4),
.quotes .reveal:nth-child(4) { transition-delay: 0.24s; }

.steps .reveal:nth-child(1) { transition-delay: 0s; }
.steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   Хедер
   ============================================ */

header#top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 241, 226, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 19, 32, 0.06);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.logo > span:not(.mark) {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0.04em;
}

.mark {
  font-size: 1.6rem;
  display: inline-block;
  animation: floatY 3.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .mark {
    animation: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:not(.menu-cta) {
  position: relative;
  transition: color var(--transition);
}

.nav-links a:not(.menu-cta):hover {
  color: var(--strawberry-dark);
}

.nav-links .menu-cta {
  display: none;
}

.nav-cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: 64px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    padding: 32px 28px;
    background: var(--pearl);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .nav-links .menu-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
  }

  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding-top: 48px;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  font-weight: 700;
  margin: 22px 0 18px;
  overflow-wrap: break-word;
}

.hero h1 .hl {
  color: var(--strawberry-deep);
  background: linear-gradient(transparent 60%, rgba(255, 61, 110, 0.18) 60%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 4px;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 22px;
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: 0.96rem;
}

.tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 77, 119, 0.14);
  color: var(--strawberry-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-cta .note {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-frame img {
  width: 100%;
  height: auto;
}

.hero-frame .ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-card);
  z-index: 3;
  animation: floatY 5s ease-in-out infinite;
}

.chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.chip.c1 {
  top: 14%;
  right: -10px;
}

.chip.c2 {
  top: 48%;
  left: -16px;
  animation-delay: -1.5s;
}

.chip.c3 {
  bottom: 8%;
  right: 6%;
  animation-delay: -3s;
}

@media (prefers-reduced-motion: reduce) {
  .chip {
    animation: none;
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 40px;
  }

  .lead {
    margin: 0 auto 22px;
  }

  .bullets {
    align-items: flex-start;
    text-align: left;
    max-width: 420px;
    margin: 0 auto 30px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .chip.c1,
  .chip.c2,
  .chip.c3,
  .hero-visual .prop {
    display: none;
  }
}

/* Proof / stats row */

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.proof .item {
  text-align: center;
}

.proof .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--strawberry-dark);
  margin-bottom: 4px;
}

.proof .lbl {
  font-size: 0.82rem;
  color: var(--text-light);
}

@media (max-width: 760px) {
  .proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 22px;
  }
}

/* ============================================
   Галерея персонажей (бегущая лента)
   ============================================ */

.gallery {
  overflow: hidden;
}

.g-head {
  text-align: center;
  margin-bottom: 28px;
  max-width: 720px;
}

.g-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.g-head p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.gmq {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gmq-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: gscroll 52s linear infinite;
}

.gmq:hover .gmq-track {
  animation-play-state: paused;
}

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

.gcard {
  position: relative;
  flex: none;
  width: 232px;
  aspect-ratio: 360 / 590;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 18%, #241420, #120a10);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gcard:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-soft);
}

.gcard img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.5s ease;
}

.gcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 8, 11, 0.95) 0%, rgba(13, 8, 11, 0.55) 14%, transparent 34%);
  pointer-events: none;
}

.gcard:hover img {
  transform: scale(1.06);
}

.gcard .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  z-index: 1;
  color: var(--white);
}

.gcard .t {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.gcard .s {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

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

  .gmq {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================
   FUTURE — карточки 2x2
   ============================================ */

#future {
  position: relative;
  overflow: hidden;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.fcard {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.fcard h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.fcard p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.ic {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.fcard:hover .ic {
  transform: rotate(-8deg) scale(1.1);
}

.ic .glyph {
  width: 24px;
  height: 24px;
}

.ic-free {
  background: linear-gradient(135deg, #4285F4 0%, #34A1F2 100%);
}

.ic-speed {
  background: linear-gradient(135deg, #FFB23E 0%, #FF7A6B 100%);
}

.ic-love {
  background: linear-gradient(135deg, var(--strawberry) 0%, var(--strawberry-deep) 100%);
}

.ic-studio {
  background: linear-gradient(135deg, #8B6BF2 0%, var(--strawberry-deep) 100%);
}

@media (max-width: 960px) {
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cards-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HOW — шаги
   ============================================ */

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: auto 1.4fr 1fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.step .no {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--strawberry);
  transition: transform var(--transition), color var(--transition);
}

.step:hover .no {
  transform: scale(1.1);
  color: var(--strawberry-dark);
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.mod {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(230, 178, 76, 0.16);
  padding: 4px 10px;
  border-radius: 100px;
}

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

.tool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--pearl);
  padding: 6px 12px;
  border-radius: 100px;
}

.tool .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.visual-note {
  background: var(--pearl);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

@media (max-width: 860px) {
  .step {
    grid-template-columns: auto 1fr;
  }

  .visual-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .step {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 14px;
  }

  .step .no {
    font-size: 1.4rem;
  }

  .visual-note {
    grid-column: auto;
  }
}

/* ============================================
   Аккордеон (программа / FAQ)
   ============================================ */

.prog,
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acc {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
}

.acc-head h3 {
  flex: 1;
  font-size: 1rem;
}

.mnum {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 77, 119, 0.12);
  color: var(--strawberry-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.plus {
  flex-shrink: 0;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 77, 119, 0.12);
  transition: transform var(--transition);
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--strawberry-dark);
  border-radius: 2px;
}

.plus::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.plus::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.acc.active .plus {
  transform: rotate(45deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.acc-body ul {
  padding: 0 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-body li {
  position: relative;
  padding-left: 22px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.acc-body li::before {
  content: "🍓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .acc-head {
    padding: 16px 20px;
    gap: 12px;
  }

  .acc-head h3 {
    font-size: 0.92rem;
  }

  .acc-body ul {
    padding: 0 20px 18px;
  }
}

/* ============================================
   AUTHOR
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-photo .frame img {
  width: 100%;
  height: auto;
}

.about-photo .badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
  animation: floatY 5s ease-in-out infinite;
}

.about-photo .badge .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--strawberry-dark);
}

.about-photo .badge .lbl {
  font-size: 0.78rem;
  color: var(--text-light);
}

@media (prefers-reduced-motion: reduce) {
  .about-photo .badge {
    animation: none;
  }
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 14px;
}

.about-text b {
  color: var(--text);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.about-stats .st {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.about-stats .n {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--strawberry-dark);
  margin-bottom: 4px;
}

.about-stats .l {
  font-size: 0.8rem;
  color: var(--text-light);
}

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

  .about-photo {
    max-width: 380px;
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Отзывы
   ============================================ */

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.rcard {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.rcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.stars {
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.txt {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

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

.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  background: rgba(255, 77, 119, 0.12);
  color: var(--strawberry-dark);
  flex-shrink: 0;
}

.nm {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.rl {
  font-size: 0.8rem;
  color: var(--text-light);
}

.shots-head {
  text-align: center;
  color: var(--text-light);
}

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

/* ============================================
   Тарифы
   ============================================ */

.prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.price.feat {
  background: linear-gradient(160deg, #2A1320 0%, #4A2236 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.price.feat .psub,
.price.feat li {
  color: rgba(255, 255, 255, 0.78);
}

.price.feat .ck {
  color: var(--gold);
}

.price .tag {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 20px -8px rgba(201, 150, 31, 0.6);
}

.pname {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.psub {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.pcost {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.price ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.price li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.ck {
  font-weight: 700;
  color: var(--strawberry);
  flex-shrink: 0;
}

.pay-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 600px) {
  .price {
    padding: 28px 22px;
  }

  .pcost {
    font-size: 2.1rem;
  }

  .prices {
    gap: 20px;
  }
}

/* ============================================
   Финальный CTA
   ============================================ */

.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, var(--strawberry) 0%, var(--strawberry-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.final .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.final h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.final p {
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

.final .btn-lg {
  background: var(--white);
  color: var(--strawberry-dark);
  box-shadow: none;
}

.final .btn-lg:hover {
  background: var(--pearl);
}

.reassure {
  margin-top: 18px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.reassure a {
  color: var(--white) !important;
}

@media (max-width: 600px) {
  .final {
    padding: 40px 22px;
  }
}

/* ============================================
   Футер
   ============================================ */

footer {
  padding: 50px 0 36px;
  text-align: center;
}

footer .logo {
  display: inline-flex;
  margin-bottom: 24px;
}

.flinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(42, 19, 32, 0.08);
}

.flinks a:hover {
  color: var(--strawberry-dark);
}

.copy {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .flinks {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   Общий адаптив для мобильных устройств
   ============================================ */

@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
  }

  .nav {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo {
    font-size: 0.95rem;
  }

  .mark {
    font-size: 1.4rem;
  }

  .sec-head {
    margin-bottom: 28px;
  }

  .sec-head p,
  .g-head p {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    margin-bottom: 14px;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-cta .note {
    text-align: center;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 16px 28px;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    height: auto;
    background: #FFF6F1;
    border-top: 1px solid var(--blush);
    flex-direction: column;
    gap: 0;
    padding: 8px 22px 20px;
    box-shadow: 0 24px 44px -16px rgba(216, 30, 80, 0.45);
    z-index: 60;
    transform: none;
  }

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

  .nav-links a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--blush);
    width: 100%;
    color: var(--ink);
    font-weight: 700;
  }

  .proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
  }
}
