/* =================== CSS Variables =================== */
:root {
  /* Акцент */
  --gold: #c59d44;
  --gold-hover: #d4ac53;

  /* Фоны */
  --bg-dark: #1a1a1c;
  --bg-darker: #161618;
  --modal-bg: #1e1e20;

  /* Текст */
  --text-heading: #c3c3c3;
  --text-body: #c3c3c3;
  --text-dark: #111;
  --error: #e05555;

  /* Карточки */
  --card-bg: rgba(36, 36, 38, 0.64);
  --card-blur: blur(5.4px);
  --border: rgba(255, 255, 255, 0.05);
  --hover-bg: rgba(255, 255, 255, 0.08);
  --border-input: rgba(255, 255, 255, 0.10);
  --btn-border: rgba(255, 255, 255, 0.20);
  --gold-focus: rgba(197, 157, 68, 0.50);
  --gold-40: rgba(197, 157, 68, 0.40);

  /* Шрифты */
  --font-heading: 'Cormorant', serif;
  --font-body: 'Inter', sans-serif;

  /* Начертания */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Размеры — заголовки (Cormorant) */
  --fs-hero: 72px;
  --fs-h2: 56px;
  --fs-h3: 40px;
  --fs-h4: 36px;
  --fs-card-title: 24px;

  /* Размеры — текст (Inter) */
  --fs-subtitle: 22px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 15px;
  --fs-nav: 14px;
  --fs-label: 13px;
  --fs-small: 12px;

  /* Размеры — компонентные */
  --fs-logo: 23px;
  --fs-stats: 30px;
  --fs-accent: 26px;
  --fs-step-num: 20px;
  --fs-modal-title: 32px;
}

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

html {
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-body);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4 {
  color: var(--text-heading);
}

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

/* =================== Header =================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  overflow: visible;
  transition: transform 0.3s ease;
}

.header--hidden {
  transform: translateY(-100%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 34px;
  height: 34px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-logo);
  line-height: 1.05;
  color: var(--text-body);
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav a {
  font-size: var(--fs-nav);
  color: var(--text-body);
  text-decoration: none;
  padding: 12px;
  border-radius: 24px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav a:hover {
  background: var(--hover-bg);
}

.header-chat {
  position: relative;
}

.header-chat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 8px;
  border-radius: 22px;
  background: transparent;
  border: none;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-nav);
  cursor: pointer;
  transition: background 0.2s;
}

.header-chat-btn:hover {
  background: var(--hover-bg);
}

.header-chat-btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.chat-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

.header-chat.open .chat-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 8px;
  color: var(--text-body);
  text-decoration: none;
  font-size: var(--fs-nav);
  line-height: 24px;
  border-radius: 22px;
  transition: background 0.2s;
}

.chat-dropdown a:hover {
  background: var(--hover-bg);
}

.chat-dropdown img,
.chat-dropdown svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

/* =================== Back Button (для страниц статей/видео) =================== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 8px;
  background: transparent;
  border: none;
  border-radius: 22px;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-nav);
  color: var(--text-body);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.back-btn:hover {
  background: var(--hover-bg);
}

.back-btn svg {
  width: 20px;
  height: 20px;
}

/* =================== Button =================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 24px 20px 32px;
  background: var(--gold);
  border: 2px solid var(--btn-border);
  border-radius: 32px;
  backdrop-filter: var(--card-blur);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

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

.btn-primary svg {
  width: 24px;
  height: 24px;
}

/* =================== Hero =================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 60px;
  height: 750px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.56;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 580px;
  flex-shrink: 0;
}

.hero-label {
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-hero);
  line-height: 1;
  color: var(--text-heading);
  margin-top: 16px;
}

.hero-subtitle {
  font-weight: var(--fw-light);
  font-size: var(--fs-subtitle);
  line-height: 1.6;
  color: var(--text-body);
}

.hero-subtitle strong {
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.hero-cta {
  padding-top: 16px;
}

.hero-image {
  position: relative;
  width: 580px;
  height: 750px;
  flex-shrink: 0;
}

.hero-photo-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.hero-mobile-photo {
  display: none;
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.hero-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

/* =================== Stats Card =================== */
.stats-card {
  position: absolute;
  z-index: 2;
  left: 218px;
  top: 560px;
  width: 330px;
  padding: 24px 24px 32px;
  background: var(--card-bg);
  backdrop-filter: var(--card-blur);
  border: 2px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stats-card-icon {
  width: 40px;
  height: 40px;
  transform: scaleY(-1);
}

.stats-card-label {
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-body);
}

.stats-card-value {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-style: italic;
  color: var(--gold);
}

.stats-card-value .big {
  font-size: var(--fs-h2);
  line-height: 0.6;
}

.stats-card-value .small {
  font-size: var(--fs-stats);
  line-height: 0.9;
}

/* =================== For Whom =================== */
.for-whom {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 80px 60px;
}

.for-whom-headline {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1096px;
  width: 100%;
}

.for-whom-label,
.my-approach-label,
.turning-point-label,
.future-label,
.methodology-label,
.experience-label,
.reviews-label,
.pub-label {
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.for-whom-title,
.my-approach-title,
.turning-point-title,
.future-title,
.methodology-title,
.experience-title,
.reviews-title,
.pub-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h2);
  line-height: 1;
  color: var(--text-body);
}

.for-whom-cards {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.for-whom-card {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: var(--card-blur);
  border: 1px solid var(--border);
}

.for-whom-card-light,
.my-approach-card-light,
.methodology-step-light,
.methodology-summary-light,
.future-card-light,
.pub-card-light {
  position: absolute;
  width: 85px;
  height: 85px;
  pointer-events: none;
}

.for-whom-card-light img,
.my-approach-card-light img,
.methodology-step-light img,
.methodology-summary-light img,
.future-card-light img,
.pub-card-light img {
  position: absolute;
  inset: -164.59%;
  width: 429.18%;
  height: 429.18%;
}

.for-whom-card-light,
.methodology-step-light,
.future-card-light {
  left: -1px;
  top: -1px;
}

.my-approach-card-light {
  left: -2px;
  top: 16px;
}

.methodology-summary-light {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.for-whom-card-icon {
  width: 40px;
  height: 40px;
}

.for-whom-card p {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--text-body);
  text-align: center;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

/* =================== My Approach =================== */
.my-approach {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 80px 60px;
}

.my-approach-headline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.my-approach-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}

.my-approach-desc {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--text-body);
  max-width: 710px;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.my-approach-cards {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.my-approach-card {
  flex: 1;
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px 16px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: var(--card-blur);
  border: 1px solid var(--border);
}

.my-approach-card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.my-approach-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.my-approach-card-text .from {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-body);
}

.my-approach-card-text .to {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-accent);
  line-height: 1;
  color: var(--gold);
}

/* =================== Turning Point =================== */
.turning-point {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 80px 60px;
}

.turning-point-headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.turning-point-content {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

.tp-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-img {
  position: relative;
  border-radius: 32px 32px 0 0;
  flex-shrink: 0;
  margin-bottom: -40px;
}

.card-img-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
}

.card-img-inner img {
  position: absolute;
  width: 99.89%;
  height: 120%;
  left: 0.05%;
  top: -10%;
  object-fit: cover;
}

.card-img-gradient {
  position: absolute;
  inset: 0;
  border-radius: 32px 32px 0 0;
}

.tp-card .card-img {
  width: 580px;
  height: 400px;
  border-top: 2px solid var(--border);
}

.tp-card .card-img-gradient {
  background: linear-gradient(180deg, transparent 50.5%, var(--bg-dark) 100%);
}

.tp-card-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 32px 30px;
  position: relative;
  z-index: 1;
}

.tp-card-headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tp-card-label {
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.tp-card-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h3);
  line-height: 1;
  color: var(--text-body);
}

.tp-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.tp-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 10px 16px;
	padding-right: 0;
  border-radius: 16px;
}

.tp-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.tp-list li span {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-body);
  padding-top: 4px;
}

.tp-card-footer {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-body);
}

/* =================== Future =================== */
.future {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 80px 60px;
}

.future-headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.future-cards {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.future-card {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  background: var(--card-bg);
  backdrop-filter: var(--card-blur);
  border: 1px solid var(--border);
  overflow: hidden;
}

.future-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.future-card p {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--text-body);
}

.future-divider {
  display: flex;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.future-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.future-divider-text {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h3);
  line-height: 1;
  color: var(--text-body);
  white-space: nowrap;
}

.future-content {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

.future-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.future-panel .card-img {
  height: 400px;
  border-top: 2px solid var(--border);
}

.future-panel .card-img-gradient {
  background: linear-gradient(180deg, transparent 55%, var(--bg-darker) 100%);
}

.future-panel-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 48px 40px;
  position: relative;
  z-index: 1;
}

.future-panel-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h3);
  line-height: 1;
  color: var(--text-body);
}

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

.future-tag {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 20px 16px;
  border-radius: 32px;
  background: var(--card-bg);
  backdrop-filter: var(--card-blur);
  border: 1px solid var(--border);
}

.future-tag img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.future-tag span {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--text-body);
  white-space: nowrap;
}

.future-panel-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.future-panel-desc p {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-body);
}

/* =================== Methodology =================== */
.methodology {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 80px 60px;
}

.methodology-headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.methodology-grid {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  justify-content: center;
  padding: 48px;
  width: 100%;
  max-width: 1200px;
}

.methodology-step {
  position: relative;
  background: rgba(16, 16, 18, 0.64);
  border: 2px solid var(--hover-bg);
  border-radius: 32px;
  padding: 40px;
  width: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.methodology-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.methodology-step-header .step-num {
  color: var(--gold);
}

.methodology-step-header .step-duration {
  color: var(--text-body);
}

.methodology-step-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h4);
  line-height: 1;
  color: var(--text-body);
}

.methodology-step-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.methodology-step-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 8px 0;
}

.methodology-step-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.methodology-step-list li span {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-body);
}

.methodology-step-result {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: auto;
}

.methodology-step-result .result-label {
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.methodology-step-result .result-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.methodology-step-result-text {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-body);
}

.methodology-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}

.methodology-badge span {
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-body);
}

.methodology-badge-circle {
  width: 29px;
  height: 29px;
  background: var(--gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-step-num);
  letter-spacing: 2px;
  padding-left: 2px;
  text-transform: uppercase;
  color: var(--bg-dark);
}

.methodology-divider {
  display: flex;
  align-items: center;
  width: 100%;
}

.methodology-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.methodology-divider-badge {
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}

.methodology-divider-badge span {
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-body);
}

.methodology-summary {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 16px 48px;
  text-align: center;
}

.methodology-summary-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-h3);
  line-height: 1;
  color: var(--gold);
  max-width: 510px;
}

.methodology-summary-text {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--text-body);
  max-width: 510px;
}

/* =================== Experience =================== */
.experience {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 80px 60px;
}

.experience-headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.experience-subtitle {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--text-body);
  text-align: center;
  max-width: 510px;
}

.experience-divider {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
}

.experience-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.experience-divider-label {
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.experience-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.experience-logo-card {
  background: var(--card-bg);
  backdrop-filter: var(--card-blur);
  border: 1px solid var(--border);
  border-radius: 24px;
  flex: 1;
  min-width: 130px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.experience-logo-card img {
  display: block;
  object-fit: contain;
}

.experience-logo-card.logo-skolkovo img {
  width: 127px;
  height: 40px;
}

.experience-logo-card.logo-shkola img {
  width: 78px;
  height: 78px;
}

.experience-logo-card.logo-nestle img {
  width: 69px;
  height: 71px;
}

.experience-logo-card.logo-saralee img {
  width: 111px;
  height: 35px;
}

.experience-logo-card.logo-douwe img {
  width: 98px;
  height: 85px;
}

.experience-logo-card.logo-udarnitsa img {
  width: 117px;
  height: 26px;
}

.experience-logo-card.logo-kontrol img {
  width: 100px;
  height: 42px;
}

.experience-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.experience-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 16px;
  border-radius: 16px;
  width: 384px;
}

.experience-card-label {
  font-weight: var(--fw-medium);
  font-size: var(--fs-label);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  width: 100%;
  white-space: nowrap;
}

.experience-card-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.experience-card-text {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-body);
  text-align: center;
  width: 100%;
}

/* =================== Publications =================== */
.publications {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 80px 60px;
}

.pub-headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  text-align: center;
}

.pub-carousel-wrapper {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}

.pub-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.pub-card {
  text-decoration: none;
  color: inherit;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 2px solid var(--border);
  backdrop-filter: var(--card-blur);
  cursor: pointer;
}

.pub-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.pub-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pub-card:hover .pub-card-image img {
  transform: scale(1.04);
}

.pub-card-all .pub-card-all-icon {
  transition: transform 0.3s ease;
}

.pub-card-all:hover .pub-card-all-icon {
  transform: scale(1.12);
}

.pub-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--gold);
  backdrop-filter: var(--card-blur);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pub-card-body {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pub-card-meta {
  font-family: var(--font-body);
  font-size: var(--fs-nav);
  font-weight: var(--fw-regular);
  line-height: 24px;
  color: var(--text-body);
}

.pub-card-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-card-title);
  line-height: 1;
  color: var(--text-heading);
}

.pub-controls {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

.pub-nav {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  border: none;
  background: rgba(36, 36, 38, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.pub-nav:hover:not(:disabled) {
  background: rgba(58, 56, 54, 0.92);
}

.pub-nav:disabled {
  opacity: 0.3;
  cursor: default;
}

.pub-nav svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pub-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pub-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(197, 157, 68, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.pub-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* =================== Reviews =================== */
.reviews {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 80px 60px;
}

.reviews-headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1096px;
  align-items: center;
  text-align: center;
}

.reviews-carousel-wrapper {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}

.reviews-cards {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: var(--card-blur);
  border: 1px solid var(--border);
}

.review-planet {
  position: absolute;
  left: 0;
  top: 0;
  width: 86px;
  height: 86px;
  pointer-events: none;
}

.review-planet-inner {
  position: absolute;
  inset: -116.28%;
}

.review-planet-inner img {
  display: block;
  width: 100%;
  height: 100%;
}

.review-quote {
  width: 22px;
  height: 21px;
  position: relative;
  flex-shrink: 0;
}

.review-quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.review-text {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
}

.review-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.review-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-author-name {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: var(--fs-card-title);
  line-height: 1;
  color: var(--gold);
}

.review-author-role {
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-body);
  line-height: 1.1;
}

.review-arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* =================== Footer =================== */
.footer {
  background: var(--bg-darker);
  padding: 40px 60px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  width: 100%;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 8px;
  border-radius: 22px;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-social-btn:hover {
  background: var(--hover-bg);
}

.footer-social-btn img {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.footer-social-btn span {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 24px;
  color: var(--text-body);
  white-space: nowrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.footer-legal a {
  font-weight: var(--fw-regular);
  font-size: var(--fs-nav);
  line-height: 24px;
  color: var(--text-body);
  text-decoration: none;
  white-space: nowrap;
}

.footer-legal a:hover {
  color: var(--text-body);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 3px 0;
}

.footer-copyright {
  font-weight: var(--fw-regular);
  font-size: var(--fs-nav);
  line-height: 24px;
  color: var(--text-body);
}

.footer-studio {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-studio span {
  font-weight: var(--fw-regular);
  font-size: var(--fs-nav);
  line-height: 24px;
  color: var(--text-body);
}

.footer-studio img {
  width: 87px;
  height: 41px;
  object-fit: contain;
  object-position: right center;
  display: block;
  flex-shrink: 0;
}

/* =================== Privacy Page =================== */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  flex: 1;
}

.content-wrapper h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 400;
}

.content-wrapper h2 {
  font-size: 24px;
  color: #fff;
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 500;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.content-wrapper ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content-wrapper li {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.content-wrapper a {
  color: var(--gold);
}

/* =================== Article & Video Pages =================== */
.article-body,
.video-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  flex: 1;
  width: 100%;
}

.article-hero-img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 32px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-meta,
.video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.article-badge,
.video-badge {
  padding: 6px 14px;
  border-radius: 32px;
  background: var(--card-bg);
  backdrop-filter: var(--card-blur);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--gold);
}

.article-date {
  font-family: var(--font-body);
  font-size: var(--fs-nav);
  font-weight: var(--fw-regular);
  color: var(--text-body);
}

.article-title,
.video-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 32px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-description,
.article-content {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--text-body);
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-card-title);
  font-weight: var(--fw-regular);
  color: var(--text-heading);
  margin: 40px 0 16px;
  line-height: 1.2;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-subtitle);
  font-weight: var(--fw-regular);
  color: var(--text-heading);
  margin: 32px 0 12px;
  line-height: 1.3;
}

.article-content img {
  width: 100%;
  border-radius: 16px;
  margin: 24px 0;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.article-content th,
.article-content td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: var(--fs-body);
}

.article-content th {
  background: var(--card-bg);
  font-weight: var(--fw-medium);
  color: var(--gold);
}

.article-content ul,
.article-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--card-bg);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.article-content strong {
  font-weight: var(--fw-semibold);
}

.article-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content a:hover {
  opacity: 0.8;
}

/* =================== Modal =================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--modal-bg);
  border: 1px solid var(--hover-bg);
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hover-bg);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--hover-bg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: var(--fs-modal-title);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  color: var(--text-body);
  text-align: center;
  margin-bottom: 12px;
}

.modal-subtitle {
  font-size: var(--fs-body-sm);
  color: var(--text-body);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 28px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.modal-input {
  width: 100%;
  padding: 17px 20px;
  background: var(--border);
  border: 2px solid var(--border-input);
  border-radius: 40px;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  outline: none;
  transition: border-color 0.2s;
}

.modal-input::placeholder {
  color: var(--text-body);
}

.modal-input:focus::placeholder {
  opacity: 0.6;
}

.modal-input:focus {
  border-color: var(--gold-focus);
}

.modal-input.error {
  border-color: rgba(220, 80, 80, 0.7);
}

.phone-field {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--border);
  border: 2px solid var(--border-input);
  border-radius: 40px;
  transition: border-color 0.2s;
}

.phone-field:focus-within {
  border-color: var(--gold-focus);
}

.phone-field.error {
  border-color: rgba(220, 80, 80, 0.7);
}

.phone-field .modal-input {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 0 40px 40px 0;
  padding-left: 10px;
  min-width: 0;
}

.phone-field .modal-input:focus {
  border-color: transparent;
}

.country-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px 0 16px;
  height: 52px;
  background: none;
  border: none;
  border-right: 2px solid var(--border-input);
  cursor: pointer;
  color: var(--text-body);
  font-size: var(--fs-nav);
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
}

.country-btn:hover {
  color: var(--gold);
}

.country-btn svg {
  opacity: 0.5;
}

.country-dropdown {
  width: 100%;
  margin-top: 6px;
  background: var(--modal-bg);
  border: 2px solid var(--border-input);
  border-radius: 24px;
  padding: 8px;
  display: none;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.country-dropdown.open {
  display: block;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 40px;
  cursor: pointer;
  font-size: var(--fs-nav);
  color: var(--text-body);
  font-family: var(--font-body);
  transition: background 0.15s, color 0.15s;
}

.country-item:hover {
  background: var(--hover-bg);
  color: var(--text-body);
}

.country-item-name {
  flex: 1;
}

.country-item-code {
  color: var(--text-body);
  font-size: var(--fs-label);
}

.modal-field-error {
  font-size: var(--fs-small);
  color: var(--error);
  margin-top: -6px;
  padding-left: 16px;
  display: none;
}

.modal-field-error.visible {
  display: block;
}

.modal-submit-error {
  margin-top: 0;
  text-align: center;
}

.modal-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--text-dark);
  border: 2px solid var(--btn-border);
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}

.modal-submit:hover {
  opacity: 0.88;
}

.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-submit.loading {
  pointer-events: none;
  position: relative;
  color: transparent;
}

.modal-submit.loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2.5px solid rgba(17, 17, 17, 0.3);
  border-top-color: var(--text-dark);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.modal-result {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px 0;
}

.modal-result.visible {
  display: flex;
}

.modal-result-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-result-icon.success {
  background: rgba(197, 157, 68, 0.15);
  color: var(--gold);
}

.modal-result-icon.error {
  background: rgba(220, 80, 80, 0.15);
  color: var(--error);
}

.modal-result-icon svg {
  width: 28px;
  height: 28px;
}

.modal-result-title {
  font-family: var(--font-heading);
  font-size: var(--fs-card-title);
  font-weight: var(--fw-regular);
  color: var(--text-heading);
}

.modal-result-text {
  font-size: var(--fs-nav);
  color: var(--text-body);
  line-height: 1.5;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text-body);
  font-size: var(--fs-label);
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hover-bg);
}

.modal-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.modal-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--border);
  border: none;
  border-radius: 32px;
  color: var(--text-body);
  text-decoration: none;
  font-size: var(--fs-nav);
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
}

.modal-contact-btn:hover {
  background: var(--hover-bg);
  color: var(--text-body);
}

.modal-contact-btn img,
.modal-contact-btn svg {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  flex-shrink: 0;
}

/* =================== Cookie Banner =================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  border-top: 1px solid var(--border);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.cookie-banner.visible {
  transform: translateY(0);
  visibility: visible;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  font-size: var(--fs-nav);
  line-height: 1.5;
  color: var(--text-body);
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold-40);
  transition: text-decoration-color 0.2s ease;
}

.cookie-banner a:hover {
  text-decoration-color: var(--gold);
}

.cookie-banner-btn {
  padding: 10px 24px;
  font-size: var(--fs-nav);
  flex-shrink: 0;
}

/* =================== Reveal Animations =================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

.hero-enter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--enter-delay, 0ms);
}

.hero-enter.entered {
  opacity: 1;
  transform: translateY(0);
}

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

/* =================== Mobile Menu =================== */
.header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  z-index: 101;
  border-radius: 50%;
  transition: background 0.2s;
}

.header-burger:hover {
  background: var(--hover-bg);
}

.header-burger svg {
  display: block;
  color: var(--text-body);
}

.header-email-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  color: var(--text-body);
  transition: background 0.2s;
  flex-shrink: 0;
}

.header-email-icon:hover {
  background: var(--hover-bg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  padding: 100px 32px 48px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-regular);
  color: var(--text-body);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mobile-nav-link:first-child {
  border-top: none;
}

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

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

.mobile-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--border);
  border: none;
  border-radius: 32px;
  color: var(--text-body);
  text-decoration: none;
  font-size: var(--fs-nav);
}

.mobile-social-btn img,
.mobile-social-btn svg {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

body.menu-open {
  overflow: hidden;
}

/* =================== Responsive: 1200px =================== */
@media (max-width: 1200px) {
  .methodology {
    padding: 80px 24px;
  }

  .methodology-step {
    width: 100%;
    max-width: 540px;
  }

  .experience {
    padding: 80px 24px;
  }

  .experience-card {
    width: calc(50% - 12px);
  }
}

/* =================== Responsive: 1024px =================== */
@media (max-width: 1024px) {
  .header {
    padding: 16px 32px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    overflow: visible;
  }

  body {
    padding-top: 68px;
  }

  .header-burger {
    display: flex;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
  }

  .nav {
    display: none;
  }

  .header-email-icon {
    display: none;
  }

  .header-burger + .header-chat .header-chat-btn span {
    display: none;
  }

  .header-chat-btn {
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    border: none;
    background: none;
    border-radius: 50%;
  }

  .header-chat-btn svg {
    width: 30px;
    height: 30px;
  }

  .chat-dropdown {
    right: -10px;
  }

  .hero {
    padding: 0 0 0 48px;
    height: auto;
    min-height: 700px;
    justify-content: space-between;
  }

  .hero-content {
    width: 380px;
  }

  .hero-title {
    font-size: 58px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-image {
    width: 400px;
    height: 700px;
  }

  .stats-card {
    display: none;
  }

  .for-whom {
    padding: 60px 32px;
  }

  .for-whom-cards {
    flex-wrap: wrap;
  }

  .for-whom-card {
    flex: 1 1 calc(50% - 12px);
  }

  .for-whom-title {
    font-size: 36px;
  }

  .my-approach {
    padding: 60px 32px;
  }

  .my-approach-title {
    font-size: 36px;
  }

  .my-approach-cards {
    flex-direction: row;
  }

  .turning-point {
    padding: 60px 32px;
  }

  .turning-point-title {
    font-size: 36px;
  }

  .tp-card .card-img {
    width: 100%;
    height: 260px;
  }

  .tp-card-title {
    font-size: 32px;
  }

  .future {
    padding: 60px 32px;
  }

  .future-title {
    font-size: 36px;
  }

  .future-cards {
    flex-wrap: wrap;
  }

  .future-card {
    flex: 1 1 calc(50% - 12px);
  }

  .future-panel .card-img {
    width: 100%;
    height: 260px;
  }

  .future-panel-title {
    font-size: 28px;
  }

  .methodology {
    padding: 60px 24px;
  }

  .methodology-step {
    width: calc(50% - 12px);
  }

  .methodology-title {
    font-size: 44px;
  }

  .experience {
    padding: 60px 24px;
  }

  .experience-title {
    font-size: 44px;
  }

  .experience-card {
    width: calc(50% - 12px);
  }

  .publications {
    padding: 60px 24px;
    gap: 32px;
  }

  .pub-title {
    font-size: 44px;
  }

  .reviews {
    padding: 60px 24px;
  }

  .reviews-title {
    font-size: 44px;
  }

  .review-card {
    flex: 1 1 calc(33% - 16px);
  }

  .footer {
    padding: 40px 24px;
  }

  .footer-legal {
    gap: 16px;
  }

  .footer-legal a {
    white-space: normal;
    text-align: center;
  }
}

/* =================== Responsive: 1000px =================== */
@media (max-width: 1000px) {
  .header {
    padding: 14px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    overflow: visible;
  }

  body {
    padding-top: 68px;
  }

  .header-burger {
    display: flex;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
  }

  .nav {
    display: none;
  }

  .header-email-icon {
    display: flex;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: calc(100vh - 69px);
    height: calc(100svh - 69px);
    min-height: 0;
    padding: 0;
    gap: 0;
    overflow: hidden;
  }

  .hero-mobile-photo {
    display: block;
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    margin: 0 auto;
    top: auto;
    left: auto;
    right: auto;
    overflow: hidden;
  }

  .hero-mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-content {
    padding: 16px 24px 20px;
    margin-top: -50px;
    width: 100%;
    max-width: 572px;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    gap: 24px;
    position: relative;
    z-index: 1;
  }

  .hero-subtitle br {
    display: none;
  }

  .hero-label {
    line-height: 1.6;
    text-align: center;
  }

  .hero-cta {
    padding-top: 0;
    display: flex;
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .stats-card {
    display: none;
  }

  .hero-title {
    font-size: 44px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .for-whom {
    padding: 60px 24px;
    gap: 32px;
  }

  .for-whom-title {
    font-size: 36px;
  }

  .for-whom-card {
    flex: 1 1 calc(50% - 4px);
  }

  .for-whom-cards {
    gap: 8px;
  }

  .my-approach {
    padding: 60px 24px;
    gap: 32px;
  }

  .my-approach-title {
    font-size: 36px;
  }

  .my-approach-cards {
    flex-direction: column;
    gap: 8px;
  }

  .turning-point {
    padding: 60px 24px;
    gap: 32px;
  }

  .turning-point-title {
    font-size: 36px;
  }

  .turning-point-content {
    flex-direction: column;
  }

  .tp-card {
    width: 100%;
  }

  .tp-card .card-img {
    width: 100%;
    height: 280px;
  }

  .tp-card-body {
    padding-left: 24px;
    padding-right: 24px;
    gap: 24px;
  }

  .tp-list li {
    padding: 8px 0;
  }

  .tp-card-headline {
    text-align: center;
    padding-top: 16px;
  }

  .future {
    padding: 60px 24px;
    gap: 32px;
  }

  .future-title {
    font-size: 36px;
  }

  .future-cards {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .future-card {
    flex: 1 1 calc(50% - 8px);
    padding-left: 16px;
    padding-right: 16px;
  }

  .future-content {
    flex-direction: column;
  }

  .future-panel {
    width: 100%;
  }

  .future-panel .card-img {
    width: 100%;
    height: 280px;
  }

  .methodology {
    padding: 60px 24px;
    gap: 32px;
  }

  .methodology-title {
    font-size: 36px;
  }

  .methodology-grid {
    padding: 0 0 32px;
    gap: 16px;
    border: none;
    border-radius: 0;
  }

  .methodology-step {
    width: 100%;
  }

  .methodology-badge {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }

  .methodology-badge::before,
  .methodology-badge::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-input);
  }

  .methodology-divider-line {
    background: var(--border-input);
  }

  .methodology-divider {
    margin-top: 8px;
  }

  .experience {
    padding: 60px 24px;
    gap: 32px;
  }

  .experience-title {
    font-size: 36px;
  }

  .experience-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .experience-logo-card {
    min-width: unset;
    height: 132px;
    flex: unset;
  }

  .experience-logo-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 4px);
  }

  .experience-card {
    width: calc(50% - 12px);
  }

  .reviews {
    padding: 60px 24px;
    gap: 32px;
  }

  .reviews-title {
    font-size: 36px;
  }

  .review-card {
    flex: 1 1 100%;
  }

  .footer {
    padding: 32px 24px;
  }

  .footer-legal {
    gap: 24px;
    flex-wrap: wrap;
  }
}

/* =================== Responsive: 768px =================== */
@media (max-width: 768px) {
	.review-text {
		max-height: 60vh;
		overflow-y: auto;
	}
	/*.modal {
		max-height: 100%;
		overflow-y: auto;
	}*/
  .hero {
    padding: 0;
  }

  .hero-content {
    padding: 16px 24px 20px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .for-whom-headline,
  .my-approach-headline,
  .turning-point-headline,
  .future-headline,
  .methodology-headline,
  .experience-headline,
  .reviews-headline {
    text-align: center;
    align-items: center;
  }

  .for-whom {
    padding: 48px 20px;
    gap: 24px;
  }

  .for-whom-title {
    font-size: 32px;
  }

  .for-whom-card {
    flex: 1 1 calc(50% - 12px);
  }

  .my-approach {
    padding: 48px 20px;
    gap: 24px;
  }

  .my-approach-title {
    font-size: 32px;
  }

  .turning-point {
    padding: 48px 20px;
    gap: 24px;
  }

  .turning-point-title {
    font-size: 32px;
  }

  .tp-card .card-img {
    height: 240px;
  }

  .future {
    padding: 48px 20px;
    gap: 24px;
  }

  .future-title {
    font-size: 32px;
  }

  .future-cards {
    gap: 8px;
  }

  .future-card {
    flex: 1 1 calc(50% - 4px);
  }

  .future-divider-text {
    font-size: 28px;
  }

  .future-panel .card-img {
    height: 240px;
  }

  .future-panel-body {
    padding: 24px;
    gap: 24px;
    text-align: center;
  }

  .future-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    justify-items: center;
  }

  .future-tag {
    padding: 14px 12px;
    width: 100%;
    justify-content: center;
  }

  .future-tag:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 4px);
  }

  .future-panel-desc {
    align-items: center;
    text-align: center;
  }

  .future-tag span {
    font-size: 14px;
  }

  .methodology {
    padding: 48px 20px;
    gap: 24px;
  }

  .methodology-title {
    font-size: 32px;
  }

  .methodology-grid {
    padding: 0 0 24px;
  }

  .methodology-step {
    padding: 28px 24px;
  }

  .methodology-summary-title {
    font-size: 32px;
    line-height: 1;
  }

  .experience {
    padding: 48px 20px;
    gap: 24px;
  }

  .experience-title {
    font-size: 32px;
  }

  .experience-logo-card {
    min-width: unset;
    height: 132px;
  }

  .experience-card {
    width: 100%;
  }

  .reviews {
    padding: 48px 0;
    gap: 32px;
  }

  .reviews-headline {
    padding: 0 20px;
  }

  .reviews-title {
    font-size: 32px;
  }

  .reviews-carousel-wrapper {
    overflow: hidden;
  }

  .reviews-cards {
    padding-left: 16px;
    gap: 16px;
  }

  .review-card {
    flex: 0 0 calc(100vw - 57px);
  }

  #reviewsControls .pub-nav {
    display: none;
  }

  #reviewsControls {
    gap: 0;
    justify-content: center;
  }

  .publications {
    padding: 48px 0;
    gap: 40px;
  }

  .pub-headline {
    padding: 0 20px;
  }

  .pub-title {
    font-size: 40px;
  }

  .pub-carousel-track {
    padding-left: 16px;
    padding-right: 16px;
    gap: 16px;
  }

  .pub-card {
    flex: 0 0 calc(100vw - 57px);
  }

  .pub-nav {
    display: none;
  }

  .pub-controls {
    gap: 0;
    justify-content: center;
  }

  .footer {
    padding: 32px 20px;
  }

  .footer-socials {
    gap: 8px;
  }

  .footer-social-btn span {
    font-size: 14px;
  }

  .footer-legal {
    gap: 16px;
    justify-content: flex-start;
  }

  .footer-legal a {
    white-space: normal;
    font-size: 13px;
  }

  .article-header,
  .header {
    padding: 16px 20px;
  }

  .article-title,
  .video-title {
    font-size: 28px;
  }

  .article-body,
  .video-page {
    padding: 24px 16px 60px;
  }

  .article-hero-img,
  .video-wrapper {
    border-radius: 16px;
  }

  .content-wrapper {
    padding: 40px 20px;
  }

  .content-wrapper h1 {
    font-size: 32px;
  }
}

/* =================== Responsive: 600px =================== */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .modal-title {
    font-size: 22px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .cookie-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =================== Responsive: 460px =================== */
@media (max-width: 460px) {
  .hero {
    padding: 0;
  }

  .hero-content {
    padding: 14px 20px 16px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .for-whom,
  .my-approach,
  .turning-point,
  .future,
  .methodology,
  .experience {
    padding: 40px 16px;
    gap: 32px;
  }

  .reviews {
    padding: 40px 0;
    gap: 32px;
  }

  .reviews-headline {
    padding: 0 16px;
  }

  .for-whom-title,
  .my-approach-title,
  .turning-point-title,
  .future-title,
  .methodology-title,
  .experience-title,
  .reviews-title {
    font-size: 32px;
    line-height: 1;
  }

  .tp-card .card-img {
    height: 200px;
  }

  .future-panel .card-img {
    height: 200px;
  }

  .methodology-grid {
    padding: 0 0 20px;
    gap: 16px;
  }

  .methodology-step {
    padding: 24px 20px;
    gap: 16px;
  }

  .methodology-step-title {
    font-size: 22px;
  }

  .methodology-badge {
    font-size: 12px;
  }

  .methodology-summary-title {
    font-size: 32px;
    line-height: 1;
  }

  .methodology-summary-text {
    font-size: 15px;
  }

  .experience-logo-card {
    min-width: unset;
    height: 132px;
  }

  .experience-logo-card img {
    transform: scale(0.8);
  }

  .experience-divider {
    gap: 16px;
  }

  .review-card {
    padding: 24px 16px;
  }

  .publications {
    padding: 40px 0;
    gap: 32px;
  }

  .pub-headline {
    padding: 0 16px;
  }

  .footer {
    padding: 24px 16px;
  }

  .footer-socials {
    gap: 4px;
  }

  .footer-social-btn {
    padding: 8px 12px 8px 6px;
    gap: 6px;
  }

  .footer-social-btn span {
    font-size: 13px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .modal {
    padding: 32px 16px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
}

/* =================== Responsive: 375px =================== */
@media (max-width: 375px) {
  .hero {
    padding: 0;
  }

  .hero-content {
    padding: 12px 16px 14px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .methodology-step-title {
    font-size: 20px;
  }

  .methodology-step {
    padding: 20px 16px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 12px 20px;
  }

  .review-author-name {
    font-size: 20px;
  }

  .footer-social-btn span {
    display: none;
  }

  .footer-social-btn {
    padding: 8px;
  }
}

.article-content blockquote p {
	margin: 0;
}
.review-author-role {
	overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    box-orient: vertical;
}
.review-arrow {
	display: block;
}
.review-arrow {
	transition: background 0.3s;
	border-radius: 50%;
}
.review-author .review-arrow:hover {
	background: #2b2b2e;
}
.header-burger svg {
	transition: 0.3s;
}
.header-burger.active svg {
	opacity: 0;
}
.header-burger.active {
	background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12L28 28' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 28L28 12' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 12L28 28' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 28L28 12' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
}

.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.policy-checkbox.error {
  color: #ff4444;
}

.policy-checkbox.error a {
  color: #ff4444;
  text-decoration: underline;
}
.policy-checkbox span {
	font-size: var(--fs-label);
}
.policy-checkbox {
	text-align: center;
}
.policy-checkbox a {
	color: var(--gold);
}
#policy-checkbox {
	width: 15px;
    height: 15px;
    position: relative;
    bottom: -3px;
}
.grecaptcha-badge {
	right: -270px !important;
}

#top-botton {
	position: fixed;
	bottom: 48px;
	right: 48px;
	background: transparent;
	border: none;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

/* Кнопка видна только когда добавлен класс .show */
#top-botton.show {
	opacity: 1;
	visibility: visible;
}
#top-botton svg g g, #top-botton, #top-botton svg rect {
	transition: 0.3s;
}

#top-botton:hover svg g g {
	transform: translateY(-3px);	
}
#top-botton:hover svg rect {
	fill: #28282b;
}
@media (max-width: 768px) {
	#top-botton {
		display: none;
	}
}