:root {
  --bg: #18191c;
  --bg-panel: #232429;
  --surface-dark: #1f2024;
  --surface-dark-2: #18191c;
  --text-dark: #f3f2ef;
  --text-muted: #93949a;
  --text-light: #f3f2ef;
  --text-light-muted: rgba(243, 242, 239, 0.62);
  --accent: #e9e9e7;
  --accent-ink: #17181b;
  --accent-soft: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --gold: #c9cace;
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ===== Hero (Блок 1) ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 56px 80px;
  background: linear-gradient(115deg, var(--bg) 0%, var(--bg) 55%, var(--bg-panel) 55%, var(--bg-panel) 100%);
}

.hero__topbar {
  position: absolute;
  top: 36px;
  left: 56px;
  right: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  animation: fadeDown 0.8s ease both;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--text-dark);
  color: var(--bg);
  font-family: 'Archivo', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-text {
  font-size: 0.7rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: var(--text-dark);
}

.hero__logo-text b {
  color: var(--text-muted);
  font-weight: 600;
}

.hero__topbar-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-top: 6px;
}

.hero__container {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  align-items: center;
  padding-top: 70px;
}

.hero__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: 20px;
}

.hero__name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 6.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero__name-primary {
  color: var(--text-dark);
}

.hero__name-secondary {
  color: #6f7076;
}

.hero__tag-pill {
  display: block;
  width: fit-content;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.4;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
  animation: fadeUp 0.8s ease 0.42s both;
}

.hero__bullet-icon {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 4px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 18px 34px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  width: fit-content;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.8s ease 0.55s both;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== Visual: photo + badge + cards ===== */

.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-left: -100px;
  animation: fadeScale 1s ease 0.3s both;
}

.hero__photo {
  width: 100%;
  max-width: 620px;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(20, 18, 15, 0.18));
}

.hero__badge {
  position: absolute;
  top: 3%;
  left: 3%;
  z-index: 3;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  transform: rotate(-12deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  animation: fadeScale 0.8s ease 0.7s both;
}

.hero__badge-year {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3px;
}

.hero__badge-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.hero__cards {
  position: absolute;
  top: 10%;
  right: 0%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 230px;
}

.hero__card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(155deg, #2c2d33, #1a1b1e);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(20, 18, 15, 0.22);
  animation: fadeUp 0.7s ease both;
}

.hero__card:nth-child(1) { animation-delay: 0.5s; }
.hero__card:nth-child(2) { animation-delay: 0.65s; }
.hero__card:nth-child(3) { animation-delay: 0.8s; }
.hero__card:nth-child(4) { animation-delay: 0.95s; }
.hero__card:nth-child(5) { animation-delay: 1.1s; }

.hero__card-icon {
  font-size: 1.3rem;
  line-height: 1;
  filter: grayscale(1) brightness(2.4) sepia(0.4);
}

.hero__card-title {
  color: #f8f0e4;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.hero__card-desc {
  color: rgba(248, 240, 228, 0.7);
  font-size: 0.78rem;
  line-height: 1.35;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .hero__photo {
    max-width: 460px;
  }

  .hero__cards {
    width: 190px;
    right: -2%;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 100px 24px 48px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 40px;
  }

  .hero__text {
    align-items: center;
    text-align: center;
    padding-right: 0;
  }

  .hero__name {
    align-items: center;
  }

  .hero__visual {
    display: contents;
  }

  .hero__photo {
    order: 1;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero__text {
    order: 2;
  }

  .hero__badge {
    top: 0;
    left: 4%;
    width: 96px;
    height: 96px;
  }

  .hero__badge-year {
    font-size: 0.9rem;
  }

  .hero__badge-label {
    font-size: 0.42rem;
  }

  .hero__cards {
    order: 3;
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 24px auto 0;
  }

  .hero__topbar {
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 480px) {
  .hero__name {
    font-size: 2.4rem;
  }

  .hero__photo {
    max-width: 290px;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }

  .hero__card {
    padding: 14px;
  }
}

/* ===== Специализация (Блок 3) ===== */

.specialization {
  position: relative;
  padding: 64px 56px;
  background: linear-gradient(160deg, var(--surface-dark), var(--surface-dark-2));
}

.specialization::before,
.specialization::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
}

.specialization::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-panel), transparent);
}

.specialization::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

.specialization__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.specialization__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.specialization__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-right: 10px;
}

.specialization__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  color: var(--text-light);
}

.specialization__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.specialization__intro {
  display: flex;
  flex-direction: column;
}

.specialization__subtitle {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.specialization__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialization__visual img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.specialization__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.specialization__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  width: 94%;
}

.specialization__number {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.specialization__card-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.specialization__card-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.specialization__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.specialization__tags span {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-panel);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .specialization {
    padding: 48px 24px;
  }

  .specialization__top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .specialization__visual {
    order: -1;
  }

  .specialization__visual img {
    max-height: 280px;
  }

  .specialization__intro {
    align-items: center;
  }
}

/* ===== Кейсы (Блок 4) ===== */

.cases {
  padding: 64px 56px 80px;
  background: var(--bg);
}

.cases__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cases__eyebrow {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.cases__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 10px;
}

.cases__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 36px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.case-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(20, 18, 15, 0.12);
}

.case-card__media {
  aspect-ratio: 8 / 5;
  background: #f8f0e4;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 20px;
}

.case-card__tag {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.case-card__brand {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.case-card__task {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.case-card__task b,
.case-card__result b {
  color: var(--text-dark);
  font-weight: 600;
}

.case-card__result {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.case-card__review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 10px 16px;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.case-card__review-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.review-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.review-modal.is-open {
  display: flex;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.review-modal__content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 640px);
  max-height: 90vh;
  display: flex;
}

.review-modal__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.review-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
}

.review-modal__close:hover {
  background: var(--accent-soft);
}

@media (max-width: 480px) {
  .review-modal__close {
    top: -40px;
  }
}

.cases__other {
  margin-top: 8px;
}

.cases__other-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cases__gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.cases__gallery img {
  flex: 0 0 auto;
  height: 280px;
  width: auto;
  max-width: 80vw;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  scroll-snap-align: start;
}

.cases__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 16px 30px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cases__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 900px) {
  .cases {
    padding: 48px 24px 56px;
  }
}

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

@media (max-width: 480px) {
  .cases {
    padding: 40px 16px 48px;
  }

  .cases__gallery img {
    height: 200px;
  }
}

/* ===== Методология (Блок 5) ===== */

.methodology {
  position: relative;
  padding: 64px 56px;
  background: linear-gradient(160deg, var(--surface-dark), var(--surface-dark-2));
}

.methodology::before,
.methodology::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
}

.methodology::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.methodology::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-panel), transparent);
}

.methodology__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.methodology__eyebrow {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.methodology__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-right: 10px;
}

.methodology__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  max-width: 680px;
  margin-bottom: 40px;
  color: var(--text-light);
}

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

.methodology__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.methodology__visual img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.methodology__list {
  display: flex;
  flex-direction: column;
}

.methodology__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.methodology__row:last-child {
  border-bottom: none;
}

.methodology__row-icon {
  font-size: 1.15rem;
  line-height: 1;
  flex: 0 0 auto;
  filter: grayscale(1) brightness(1.9);
}

.methodology__number {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 10px;
  flex: 0 0 auto;
}

.methodology__row-line {
  width: 20px;
  height: 1px;
  background: var(--border);
  flex: 0 0 auto;
}

.methodology__step-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--text-light);
}

.methodology__step-detail {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .methodology {
    padding: 48px 24px;
  }

  .methodology__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .methodology__visual img {
    max-height: 340px;
  }

  .methodology__row {
    padding: 14px 0;
  }
}

@media (max-width: 480px) {
  .methodology__step-title {
    font-size: 1.05rem;
  }

  .methodology__number {
    font-size: 1.1rem;
    width: 30px;
  }
}

/* ===== Спикерство (Блок 6) ===== */

.speaker {
  padding: 64px 56px 80px;
  background: var(--bg);
}

.speaker__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.speaker__eyebrow {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.speaker__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 10px;
}

.speaker__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  max-width: 720px;
  margin-bottom: 36px;
}

.speaker__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.speaker__card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.speaker__media {
  aspect-ratio: 3 / 4;
}

.speaker__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker__caption {
  padding: 12px 16px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.speaker__podcasts {
  margin-bottom: 36px;
}

.speaker__podcasts-label {
  display: block;
  width: fit-content;
  text-align: center;
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 12px auto 24px;
}

.speaker__podcasts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.speaker__podcast {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.2s ease;
}

.speaker__podcast:hover {
  transform: translateY(-3px);
}

.speaker__podcast-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--bg-panel);
}

.speaker__podcast-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker__podcast-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(20, 18, 15, 0.55);
  color: #f8f0e4;
  font-size: 0.85rem;
  backdrop-filter: blur(2px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.speaker__podcast:hover .speaker__podcast-play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}

.speaker__podcast-title {
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.4;
}

.speaker__cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 30px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.speaker__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .speaker {
    padding: 48px 24px 56px;
  }

  .speaker__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .speaker__podcasts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .speaker__podcasts-list {
    grid-template-columns: 1fr;
  }
}

/* ===== Портфель клиентов (Блок 7) ===== */

.logos {
  padding: 64px 0 80px;
  background: var(--bg-panel);
  overflow: hidden;
}

.logos__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px;
}

.logos__eyebrow {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.logos__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 10px;
}

.logos__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 40px;
}

.logos__stage {
  position: relative;
  max-width: 900px;
  height: 230px;
  margin: 0 auto;
}

.logos__slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 130px;
  transform: translate(-50%, -50%);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.logos__slide-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  background: #f2f1ee;
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}

.logos__slide-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .logos {
    padding: 48px 0 56px;
  }

  .logos__container {
    padding: 0 24px;
  }

  .logos__stage {
    height: 190px;
  }

  .logos__slide {
    width: 150px;
    height: 104px;
  }

  .logos__slide-inner {
    padding: 14px 18px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .logos__stage {
    height: 160px;
  }

  .logos__slide {
    width: 120px;
    height: 86px;
  }
}

/* ===== Отзывы (Блок 8) ===== */

.reviews {
  padding: 64px 0 80px;
  background: var(--bg-panel);
}

.reviews__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px;
}

.reviews__eyebrow {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.reviews__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 10px;
}

.reviews__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 36px;
}

.reviews__gallery-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px;
}

.reviews__gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.reviews__gallery img {
  flex: 0 0 auto;
  height: 430px;
  width: auto;
  max-width: 85vw;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(20, 18, 15, 0.1);
  scroll-snap-align: start;
}

@media (max-width: 900px) {
  .reviews {
    padding: 48px 0 56px;
  }

  .reviews__container,
  .reviews__gallery-wrap {
    padding: 0 24px;
  }

  .reviews__gallery img {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .reviews__gallery img {
    height: 260px;
  }
}

/* ===== Контакты (Блок 9) ===== */

.contacts {
  padding: 90px 56px 48px;
  background: var(--bg-panel);
  color: var(--text-dark);
  text-align: center;
}

.contacts__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contacts__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.contacts__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 10px;
}

.contacts__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-bottom: 48px;
}

.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 44px;
}

.contacts__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px 24px;
  background: linear-gradient(160deg, var(--surface-dark), var(--surface-dark-2));
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contacts__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.3);
}

.contacts__card-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 26px;
}

.contacts__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  font-size: 1.5rem;
  margin-bottom: 26px;
}

.contacts__card-icon--youtube {
  background: #e63946;
  color: #fff;
}

.contacts__card-icon--telegram {
  background: #34a3db;
  color: #fff;
}

.contacts__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, #d6d7db 50%, #aaabb1);
  color: var(--surface-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.contacts__cta {
  display: inline-flex;
  align-items: center;
  padding: 18px 34px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contacts__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.38);
}

.contacts__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contacts__footer-logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .contacts {
    padding: 64px 24px 36px;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contacts__cta {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }
}

/* ===== Scroll reveal ===== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}

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

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
