:root {
  /* Colors - Base */
  --color-surface: #fbf9f8;
  --color-surface-dim: #dbdad9;
  --color-surface-container: #efedec;
  --color-on-surface: #1b1c1b;
  --color-text-muted: #526375;
  
  /* Colors - Primary (Help Scout Blue) */
  --color-primary: #3B64D2;
  --color-primary-hover: #2b57c4; /* slightly darker for hover */
  --color-on-primary: #ffffff;
  
  /* Colors - Supportive Pastels */
  --surface-lilac: #F3E8FF;
  --surface-peach: #FFF1E7;
  --surface-mint: #E6F4F1;
  --surface-blue: #EBF2FF;
  
  /* Typography */
  --font-display: 'Onest', sans-serif;
  --font-body: 'Golos Text', sans-serif;
  
  /* Radii */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;   /* 8px */
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;   /* 24px */
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-ambient: 0 10px 40px -10px rgba(59, 100, 210, 0.08);
  --shadow-hover: 0 15px 45px -10px rgba(59, 100, 210, 0.12);
  
  /* Spacing */
  --space-gutter: 24px;
  --section-padding-desktop: 120px;
  --section-padding-mobile: 64px;
  --container-max: 1200px;
}

/* ================== RESET & BASE ================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-surface);
  color: var(--color-on-surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* Видимый фокус только для клавиатуры */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

ul {
  list-style: none;
}

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

/* ================== TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: #141c25;
}

.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.headline {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.label-caps {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ================== LAYOUT ================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-gutter);
}

.section-padding {
  padding: var(--section-padding-desktop) 0;
}

.center {
  text-align: center;
}

.section-header {
  margin-bottom: 48px;
}

/* ================== COMPONENTS ================== */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-ghost:hover {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Cards */
.card {
  border-radius: var(--radius-xl);
  padding: 48px;
  transition: all 0.3s ease;
  height: 100%;
}

.card-white {
  background-color: #ffffff;
  box-shadow: var(--shadow-ambient);
}
.card-white:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-blue { background-color: var(--surface-blue); }
.card-peach { background-color: var(--surface-peach); }
.card-mint { background-color: var(--surface-mint); }
.card-lilac { background-color: var(--surface-lilac); }

.card-blue:hover,
.card-peach:hover,
.card-mint:hover,
.card-lilac:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-primary { background-color: var(--color-primary); color: white; }
.badge-purple { background-color: #9d4edd; color: white; }
.badge-mint  { background-color: var(--surface-mint);  color: #065f46; }
.badge-blue  { background-color: var(--surface-blue);  color: #2b57c4; }
.badge-lilac { background-color: var(--surface-lilac); color: #6d28d9; }
.badge-peach { background-color: var(--surface-peach); color: #b1370a; }

/* ================== HEADER ================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(251, 249, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-surface-container);
  padding: 16px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.logo:hover {
  color: var(--color-primary-hover);
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-on-surface);
}

/* ================== HERO ================== */
.hero {
  padding: calc(var(--section-padding-desktop) * 0.8) 0;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait {
  position: relative;
  width: 400px;
  height: 400px;
}

.image-mask-circle {
  position: relative;
  z-index: 1;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-ambient);
}

/* Звуковые кольца — расходятся из-за портрета, как голос */
.voice-ring {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  opacity: 0;
  pointer-events: none;
  animation: voice-pulse 4.5s ease-out infinite;
}
.voice-ring:nth-child(2) { animation-delay: 1.5s; }
.voice-ring:nth-child(3) { animation-delay: 3s; }

@keyframes voice-pulse {
  0%   { transform: scale(1);    opacity: 0.35; }
  70%  { opacity: 0.12; }
  100% { transform: scale(1.4);  opacity: 0; }
}

.image-mask-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: var(--shadow-ambient);
  animation: float 6s ease-in-out infinite;
}

.chip-1 { top: 8%; left: -24px; animation-delay: 0s; }
.chip-2 { top: 8%; right: -40px; animation-delay: -1.5s; }
.chip-3 { bottom: 10%; left: -40px; animation-delay: -3s; }
.chip-4 { bottom: 10%; right: -24px; animation-delay: -2.2s; }
.chip-5 {
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  animation-name: floatCenter;
  animation-delay: -1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatCenter {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -15px); }
}

/* ================== PAIN POINTS ================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon-wrapper i { width: 24px; height: 24px; }
.icon-lilac { background-color: var(--surface-lilac); color: #9d4edd; }
.icon-blue { background-color: var(--surface-blue); color: var(--color-primary); }
.icon-mint { background-color: var(--surface-mint); color: #059669; }
.icon-peach { background-color: var(--surface-peach); color: #ea580c; }

/* ================== TARIFFS ================== */
.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tariff-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.tariff-card {
  display: flex;
  flex-direction: column;
}

.tariff-card h3 {
  font-size: 24px;
  margin-bottom: 0;
}

.tariff-desc {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 15px;
}

.tariff-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}
.tariff-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.tariff-features {
  margin-bottom: 40px;
  flex-grow: 1;
}

.tariff-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.tariff-features li i,
.tariff-features li svg {
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ================== ABOUT ================== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.rounded-xl {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-ambient);
}

.about-visual img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
}

.about-content p {
  margin-bottom: 24px;
  font-size: 18px;
}

/* ================== SOCIALS & STEPS ================== */
.socials-grid, .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.icon-circle i { width: 32px; height: 32px; }

.social-card h3 {
  margin-bottom: 16px;
}

.step-card {
  position: relative;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
}

/* ================== REVIEWS ================== */
.text-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.text-review-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.text-review-card::before {
  content: '“';
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 80px;
  font-family: var(--font-display);
  color: rgba(20, 28, 37, 0.05);
  line-height: 1;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.review-author h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--color-on-surface);
}

.review-date {
  font-size: 13px;
  color: var(--color-text-muted);
}

.review-rating {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}

.star-icon {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
}

.review-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-on-surface);
  margin: 0;
  position: relative;
  z-index: 1;
  font-style: italic;
}

/* ================== FAQ ================== */
.faq-container {
  max-width: 800px;
}

.accordion-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #141c25;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content-inner {
  padding: 0 24px 24px;
  color: var(--color-text-muted);
}

/* ================== POPOVER MENU ================== */
.popover-menu {
  position: absolute;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  min-width: 160px;
}

.popover-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.popover-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.popover-btn i { width: 18px; height: 18px; }
.popover-btn.tg { color: white; background-color: #0088cc; }
.popover-btn.tg:hover { background-color: #0077b3; }
.popover-btn.max { color: white; background-color: #141c25; }
.popover-btn.max:hover { background-color: #0f151c; }

/* ================== SPEAKER ================== */
.speaker-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
}

.speaker-left-col {
  display: flex;
  flex-direction: column;
}

.speaker-intro-text p {
  font-size: 18px;
  color: var(--color-on-surface);
  margin-bottom: 24px;
}
.speaker-intro-text p:last-child { margin-bottom: 0; }

.speaker-intro-visual {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.speaker-intro-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.speaker-subheader {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  margin-top: 24px;
}

.speaker-subheader.with-gap { margin-top: 48px; }

.case-link {
  color: var(--color-primary);
  text-decoration: underline;
}

.speaker-cases {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}

.speaker-case-card {
  padding: 48px;
}

.case-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 24px;
}

.case-header h3 {
  margin-bottom: 0;
  margin-top: 4px !important;
  line-height: 1;
}

.case-meta {
  font-size: 16px;
  color: var(--color-on-surface);
  background-color: var(--color-surface-container);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  line-height: 1.6;
}

.speaker-case-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-on-surface);
  margin-bottom: 0;
}

.case-highlight {
  margin-top: 24px;
  padding: 24px;
  background-color: var(--surface-blue);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px;
  color: var(--color-text-muted);
}

.speaker-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.speaker-cta {
  text-align: center;
  margin-top: 48px;
}

.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.2s ease;
}

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

.topic-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.topic-icon i {
  width: 24px;
  height: 24px;
}

.topic-item h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.topic-item p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-bottom: 0;
}

/* ================== MANIFESTO (тёмный блок) ================== */
.manifesto {
  position: relative;
  background-color: #141c25;
  color: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}

/* Поджимаем световые отступы соседних секций, чтобы тёмный блок не «висел» */
.section-padding:has(+ .manifesto) { padding-bottom: clamp(40px, 6vw, 64px); }
.manifesto + .section-padding { padding-top: clamp(40px, 6vw, 64px); }

.manifesto::before {
  content: "";
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  max-width: 120vw;
  background: radial-gradient(circle, rgba(59, 100, 210, 0.28) 0%, rgba(59, 100, 210, 0) 62%);
  pointer-events: none;
}

.manifesto-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 24px;
}

/* Эквалайзер — звуковые полоски в тему голоса */
.equalizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 22px;
  margin: 0 auto 24px;
}

.equalizer span {
  width: 4px;
  height: 100%;
  border-radius: var(--radius-full);
  background-color: #8AA6F2;
  transform: scaleY(0.3);
  transform-origin: bottom;
  animation: equalize 2.2s ease-in-out infinite;
}

.equalizer span:nth-child(1) { animation-duration: 2.0s; animation-delay: -0.4s; }
.equalizer span:nth-child(2) { animation-duration: 2.6s; animation-delay: -1.4s; }
.equalizer span:nth-child(3) { animation-duration: 1.8s; animation-delay: -0.8s; }
.equalizer span:nth-child(4) { animation-duration: 2.4s; animation-delay: -1.8s; }
.equalizer span:nth-child(5) { animation-duration: 2.0s; animation-delay: -0.6s; }
.equalizer span:nth-child(6) { animation-duration: 2.6s; animation-delay: -1.2s; }
.equalizer span:nth-child(7) { animation-duration: 1.9s; animation-delay: -0.2s; }

@keyframes equalize {
  0%, 100% { transform: scaleY(0.25); }
  50%      { transform: scaleY(1); }
}

.manifesto-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.manifesto-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #8AA6F2;
}

.manifesto-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* ================== CONTACTS ================== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-on-surface);
  line-height: 1.2;
}

.contact-value span {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.contact-buttons .btn {
  width: 100%;
  justify-content: center;
}

.contact-buttons .btn i {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.tg-btn {
  background-color: #0088cc;
  color: white;
  border-color: transparent;
}
.tg-btn:hover {
  background-color: #0077b3;
  transform: translateY(-2px);
}

.max-btn {
  background-color: #141c25;
  color: white;
  border-color: transparent;
}
.max-btn:hover {
  background-color: #0f151c;
  transform: translateY(-2px);
}

/* ================== FOOTER ================== */
.footer {
  background-color: var(--color-surface-container);
  padding: 48px 0;
  margin-top: 64px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--color-primary);
}

/* ================== ANIMATIONS (Fade in) ================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ================== REDUCED MOTION ================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .voice-ring { animation: none; opacity: 0.18; }
  .floating-chip { animation: none; }
  .fade-in-up { transition: none; }
  .card:hover,
  .card-blue:hover, .card-peach:hover, .card-mint:hover, .card-lilac:hover,
  .card-white:hover, .topic-item:hover, .btn:hover {
    transform: none;
  }
  .equalizer span { animation: none; }
  .equalizer span:nth-child(1) { transform: scaleY(0.4); }
  .equalizer span:nth-child(2) { transform: scaleY(0.7); }
  .equalizer span:nth-child(3) { transform: scaleY(0.5); }
  .equalizer span:nth-child(4) { transform: scaleY(1); }
  .equalizer span:nth-child(5) { transform: scaleY(0.6); }
  .equalizer span:nth-child(6) { transform: scaleY(0.8); }
  .equalizer span:nth-child(7) { transform: scaleY(0.45); }
}

/* ================== MEDIA QUERIES (Mobile) ================== */
@media (max-width: 992px) {
  .floating-chip { padding: 8px 16px; font-size: 12px; }
  .hero { padding: 28px 0 44px; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 0;
  }
  
  .speaker-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .speaker-left-col {
    display: contents;
  }
  
  .speaker-intro-text {
    order: 1;
  }
  
  .speaker-intro-visual {
    order: 2;
    position: static !important;
  }
  
  .speaker-subheader {
    order: 3;
    margin-top: 0 !important;
  }
  
  .speaker-cases {
    order: 4;
  }
  
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .portrait { width: 300px; height: 300px; }
  .image-mask-circle { width: 300px; height: 300px; }
  
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
}

/* Бургер-меню для планшетов и телефонов (десктоп-меню тесное < 901px) */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    gap: 16px;
  }
  .nav.active { display: flex; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 768px) {
  .section-padding { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  /* На телефоне показываем 3 отзыва из 6 */
  .text-reviews-grid .text-review-card:nth-child(n+4) { display: none; }
  .tariff-desc { margin-bottom: 20px; }
  .tariff-price { margin-bottom: 20px; }
  .tariff-features { margin-bottom: 28px; }

  .header-actions .btn { display: none; }

  .pain-grid, .tariffs-grid, .text-reviews-grid, .contacts-grid, .speaker-topics-grid { grid-template-columns: 1fr; }
  .card { padding: 32px 24px; }
  .speaker-case-card { padding: 32px 24px; }
  
  .footer-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}
