/* =====================================================
   AI Workshop — styles
   Concept: editorial + warm, terracotta accent on cream
   ===================================================== */

:root {
  /* Palette */
  --bg: #F6F1E8;
  --bg-card: #FFFEFB;
  --bg-dark: #1F1A15;
  --text: #1F1A15;
  --text-2: #6B6259;
  --text-3: #A39787;
  --accent: #B14F35;
  --accent-hover: #923E27;
  --accent-soft: #E8B79E;
  --border: #E5DDCE;
  --border-dark: #4A4138;

  /* Type */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1080px;
  --pad-x: 24px;
  --pad-x-md: 48px;
  --pad-x-lg: 64px;
  --section-y: 64px;
  --section-y-lg: 96px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; padding: 0; cursor: pointer; color: inherit; }
ul, ol, dl { margin: 0; padding: 0; }
li { list-style: none; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-family: var(--f-display); font-weight: 500; letter-spacing: -0.01em; }
p { margin: 0; }
.mono { font-family: var(--f-mono); font-weight: 500; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--pad-x) * 2);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
@media (min-width: 640px) {
  .container { padding-left: var(--pad-x-md); padding-right: var(--pad-x-md); }
}
@media (min-width: 1024px) {
  .container { padding-left: var(--pad-x-lg); padding-right: var(--pad-x-lg); }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 150ms var(--ease), box-shadow 200ms var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #FFFEFB; }
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 8px 24px rgba(177, 79, 53, 0.25); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn--outline:hover { background: var(--text); color: var(--bg); }
.btn--outline-light { background: transparent; color: #FFFEFB; border-color: #FFFEFB; }
.btn--outline-light:hover { background: #FFFEFB; color: var(--bg-dark); }
.btn--lg { padding: 18px 36px; font-size: 18px; }

/* ----- Nav ----- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--f-display); font-weight: 500; font-size: 22px;
  letter-spacing: -0.02em;
}
.nav__links {
  display: none;
  gap: 32px;
}
@media (min-width: 1024px) {
  .nav__links { display: flex; }
}
.nav__links a {
  font-weight: 500; font-size: 14px; color: var(--text);
  transition: color 150ms var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  color: var(--text);
  transition: color 150ms var(--ease), background 150ms var(--ease);
}
.nav__wa:hover { color: var(--accent); background: var(--bg-card); }
.nav__cta { padding: 10px 18px; font-size: 14px; }
.nav__burger {
  display: flex; flex-direction: column; gap: 4px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav__burger span {
  width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
@media (min-width: 1024px) { .nav__burger { display: none; } }
@media (max-width: 639px) {
  .nav__cta { display: none; }
}

/* Mobile menu opened */
body.menu-open { overflow: hidden; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.menu-open .nav__links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: #F6F1E8;
  padding: 40px 24px;
  gap: 28px;
  font-size: 22px;
  z-index: 99;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body.menu-open .nav__links a {
  font-size: 22px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ----- Sections ----- */
.section { padding: var(--section-y) 0; }
@media (min-width: 1024px) { .section { padding: var(--section-y-lg) 0; } }
.section__title {
  font-size: 32px; line-height: 1.05; margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .section__title { font-size: 48px; }
}
.section__title--center { text-align: center; }
.section__lead {
  font-size: 18px; color: var(--text-2);
  max-width: 720px; margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .section__lead { font-size: 20px; }
}
.section--audience { background: var(--bg-card); }
.section--price { background: var(--bg-card); }

/* ----- Hero ----- */
.hero { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 1024px) { .hero { padding-top: 80px; padding-bottom: 96px; } }
.hero__inner {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 60% 40%; gap: 64px; }
}
.hero__title {
  font-size: 44px; line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .hero__title { font-size: 56px; } }
@media (min-width: 1024px) { .hero__title { font-size: 72px; } }
.hero__lead {
  font-size: 18px; line-height: 1.55; color: var(--text-2);
  max-width: 540px; margin-bottom: 24px;
}
@media (min-width: 1024px) { .hero__lead { font-size: 20px; } }
.hero__meta {
  font-size: 13px; letter-spacing: 0.04em; color: var(--text-2);
  margin-bottom: 32px; text-transform: uppercase;
}
.hero__meta .mono { text-transform: none; letter-spacing: 0; font-size: 14px; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.hero__secondary {
  font-weight: 500; color: var(--text);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 150ms var(--ease);
}
.hero__secondary:hover { border-bottom-color: var(--text); }
.hero__stats {
  background: linear-gradient(160deg, var(--accent), var(--accent-hover));
  border-radius: 16px;
  aspect-ratio: 520 / 620;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: #FFFEFB;
  box-shadow: 0 16px 40px rgba(177, 79, 53, 0.25);
}
.hero__stat:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 254, 251, 0.22);
  margin-bottom: 24px;
}
.hero__stat-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 84px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #FFFEFB;
  margin-bottom: 10px;
}
@media (min-width: 1024px) { .hero__stat-num { font-size: 96px; } }
.hero__stat-label {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 254, 251, 0.9);
  max-width: 240px;
  line-height: 1.4;
}
@media (max-width: 639px) {
  .hero__stats { aspect-ratio: auto; padding: 32px 28px; }
  .hero__stat-num { font-size: 64px; }
}

/* ----- Cards (general) ----- */
.cards { display: grid; gap: 24px; }
.cards--4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(31, 26, 21, 0.08); }
.card__icon { font-size: 32px; margin-bottom: 16px; }
.card__title { font-family: var(--f-body); font-weight: 600; font-size: 22px; margin-bottom: 12px; }

.cards--portrait { gap: 32px; }
.card--portrait {
  background: transparent; border: 0; border-left: 4px solid var(--accent);
  border-radius: 0; padding: 16px 28px;
}
.card--portrait:hover { transform: none; box-shadow: none; }
.audience__close {
  margin-top: 56px;
  font-family: var(--f-display); font-style: italic; font-size: 22px;
  text-align: center;
  color: var(--text);
}

/* ----- Program ----- */
.day { margin-bottom: 64px; }
.day__heading {
  font-size: 32px; padding-top: 24px; margin-bottom: 32px;
  border-top: 1px solid var(--accent);
}
@media (min-width: 1024px) { .day__heading { font-size: 36px; } }
.day__blocks { display: grid; gap: 32px; margin-bottom: 32px; }
.day__block h4 {
  font-family: var(--f-body); font-weight: 600; font-size: 18px;
  margin-bottom: 8px;
}
.day__block p {
  color: var(--text-2); font-size: 17px; line-height: 1.6;
}
.day__outcome {
  background: var(--accent-soft);
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}
.program__clusters-heading {
  margin-top: 64px; margin-bottom: 12px;
  font-size: 28px;
}
@media (min-width: 1024px) { .program__clusters-heading { font-size: 32px; } }
.program__clusters-lead {
  color: var(--text-2); font-size: 17px;
  max-width: 720px; margin-bottom: 32px;
}
.clusters { display: grid; gap: 16px; margin-bottom: 32px; }
.cluster {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
@media (min-width: 768px) {
  .cluster { grid-template-columns: 80px 1fr; gap: 24px; }
}
.cluster__id .mono { font-size: 28px; color: var(--accent); }
.cluster__body h4 {
  font-family: var(--f-body); font-weight: 600; font-size: 18px; margin-bottom: 6px;
}
.cluster__body p { color: var(--text-2); font-size: 16px; }
.clusters__close {
  font-style: italic; color: var(--text-2); font-size: 17px; max-width: 720px;
}

/* ----- Testimonials (dark) ----- */
.section--testimonials {
  background: var(--bg-dark);
  color: #FFFEFB;
}
.section--testimonials .section__title { color: #FFFEFB; }
.section--testimonials .section__lead { color: var(--text-3); }

/* Video gallery — native <video> with poster + native controls */
.video-gallery {
  display: flex; justify-content: center;
  margin-bottom: 32px;
}
.video-feature {
  width: 100%; max-width: 380px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #0E0B08;
  display: block;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.testimonials__note {
  text-align: center; color: var(--text-3); font-size: 14px;
  margin: 24px 0 32px;
}

.testimonials__quote {
  margin: 24px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--f-display); font-style: italic; font-size: 22px;
  line-height: 1.45; color: #FFFEFB;
}
.testimonials__quote-author {
  display: block;
  margin-top: 12px;
  font-family: var(--f-body); font-style: normal; font-size: 13px;
  letter-spacing: 0.04em; color: var(--text-3);
}

/* ----- Founder ----- */
.founder {
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .founder { grid-template-columns: 480px 1fr; gap: 64px; }
}
.founder__photo {
  margin: 0;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__text p {
  font-size: 17px; line-height: 1.7; color: var(--text);
  margin-bottom: 18px;
}
.founder__text a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.founder__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ----- Logistics + Price ----- */
.logistics {
  max-width: 720px; margin: 0 auto 48px;
  border-top: 1px solid var(--border);
}
.logistics__row {
  display: grid; grid-template-columns: 1fr; gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .logistics__row { grid-template-columns: 200px 1fr; gap: 24px; align-items: baseline; }
}
.logistics dt { font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-2); }
.logistics dd { margin: 0; color: var(--text); font-size: 17px; }

.price {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .price { grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px; } }
.price__main { text-align: left; }
.price__num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}
.price__num span { font-size: 28px; vertical-align: middle; margin-left: 4px; }
.price__num--sub { color: var(--text); font-size: 28px; }
.price__caption {
  margin-top: 8px;
  font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-2);
}
.price__subs ul { margin-top: 16px; display: grid; gap: 8px; }
.price__subs li { font-size: 15px; color: var(--text-2); padding-left: 20px; position: relative; }
.price__subs li::before {
  content: '·'; position: absolute; left: 8px; color: var(--accent); font-weight: bold;
}
.price__note { font-size: 14px; color: var(--text-2); margin-top: 16px; }
.price__special { font-size: 14px; color: var(--text-2); max-width: 720px; margin: 0 auto; font-style: italic; }

/* ----- CTA section (dark) ----- */
.section--cta {
  background: var(--bg-dark);
  color: #FFFEFB;
  padding: 80px 0 96px;
}
.cta {
  max-width: 640px; margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-family: var(--f-display); font-weight: 500;
  font-size: 40px; margin-bottom: 16px;
}
@media (min-width: 1024px) { .cta__title { font-size: 56px; } }
.cta__lead {
  color: var(--text-3); font-size: 18px;
  margin-bottom: 32px;
}
.cta__buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 24px;
}
.cta__bot {
  margin: 24px 0 16px;
  font-size: 15px;
  color: var(--text-3);
}
.cta__bot-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 18px;
  color: #FFFEFB;
  background: rgba(177, 79, 53, 0.18);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 8px 18px;
  transition: background 150ms var(--ease), color 150ms var(--ease);
}
.cta__bot-link:hover { background: var(--accent); color: #FFFEFB; }

.cta__alt { font-size: 14px; color: var(--text-3); }
.cta__alt a {
  color: #FFFEFB; border-bottom: 1px solid #FFFEFB;
  transition: border-color 150ms var(--ease);
}
.cta__alt a:hover { border-bottom-color: var(--accent); }

/* ----- Footer ----- */
.footer {
  background: var(--bg-dark);
  color: var(--text-3);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: repeat(3, 1fr); } }
.footer h4 {
  font-family: var(--f-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #FFFEFB; margin-bottom: 12px;
}
.footer__col ul { display: grid; gap: 8px; }
.footer__col a { color: var(--text-3); transition: color 150ms var(--ease); }
.footer__col a:hover { color: #FFFEFB; }
.footer__brand { display: flex; flex-direction: column; gap: 4px; align-self: end; }
.footer__logo { font-family: var(--f-display); font-weight: 500; font-size: 28px; color: #FFFEFB; }
.footer__copy {
  border-top: 1px solid var(--border-dark);
  margin-top: 48px; padding-top: 24px;
  font-size: 13px;
}

/* ----- Floating mobile CTA ----- */
.float-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  display: none; align-items: center; gap: 12px;
  z-index: 90;
}
.float-cta.is-visible { display: flex; }
@media (min-width: 768px) { .float-cta { display: none !important; } }
.float-cta__wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 999px;
  background: #25D366; color: #FFFEFB;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.float-cta__main {
  flex: 1; padding: 16px 24px; box-shadow: 0 8px 24px rgba(177, 79, 53, 0.35);
}

/* ----- Reveal-on-scroll ----- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ----- Section kicker (small label above title) ----- */
.section__kicker, .hero__kicker {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section--testimonials .section__kicker { color: var(--accent-soft); }

/* ----- Speaker block ----- */
.section--speaker {
  background: var(--bg-card);
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1024px) { .section--speaker { padding-top: 96px; padding-bottom: 96px; } }
.speaker {
  display: grid; gap: 40px; align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .speaker { grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
}
.speaker__photo {
  margin: 0;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
}
.speaker__photo picture, .speaker__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.speaker__text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}
.speaker__text .section__title { margin-bottom: 24px; }
.speaker__projects {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .speaker__projects { grid-template-columns: 1fr 1fr; gap: 16px; } }
.speaker__project {
  display: block;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.speaker__project:hover { border-color: var(--accent); transform: translateY(-2px); }
.speaker__project-name {
  display: block;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 2px;
}
.speaker__project-meta {
  display: block;
  font-size: 13px;
  color: var(--text-2);
}

/* ----- Day bullets (refactored from day__blocks) ----- */
.day__bullets {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.day__bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
}
.day__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.day__bullets strong {
  font-weight: 600;
  color: var(--text);
}

/* ----- Price progression note ----- */
.price__progression {
  text-align: center;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--text);
  background: var(--accent-soft);
  padding: 16px 24px;
  border-radius: 10px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.price__progression strong { font-weight: 600; }

/* ----- Payment CTA ----- */
.price__pay-cta {
  margin: 32px 0 0;
  display: flex;
  justify-content: center;
}

/* ----- Pull quote (0.2% hook) ----- */
.section--quote {
  background: var(--bg);
  padding: 80px 0;
  text-align: center;
}
@media (min-width: 1024px) { .section--quote { padding: 120px 0; } }
.big-quote {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.005em;
}
@media (min-width: 768px) { .big-quote { font-size: 32px; } }
@media (min-width: 1024px) { .big-quote { font-size: 40px; line-height: 1.3; } }
.big-quote strong {
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

/* ----- Footer brand ordering ----- */
.footer__inner { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer__brand { align-self: start; }

/* ----- Audience section (для кого это) ----- */
.section--audience {
  background: var(--bg-card);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
.audience-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
}
.audience-card h4 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text);
}
.audience-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.audience__close {
  margin-top: 40px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  text-align: center;
  color: var(--text);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Before / After comparison ----- */
.section--before-after {
  background: var(--bg);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .ba-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.ba-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.ba-col--old { opacity: 0.85; }
.ba-col--new {
  border-color: var(--accent);
  border-width: 2px;
}
.ba-col h3 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-2);
}
.ba-col--new h3 { color: var(--accent); }
.ba-list {
  display: grid;
  gap: 14px;
}
.ba-item {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.ba-item strong {
  font-weight: 600;
}
.ba-col--old .ba-item {
  color: var(--text-2);
  text-decoration: line-through;
  text-decoration-color: var(--text-3);
}
.ba-col--old .ba-item strong { color: var(--text); text-decoration: line-through; }
.ba-summary {
  margin-top: 32px;
  text-align: center;
  font-family: var(--f-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) { .ba-summary { font-size: 24px; } }

/* ----- Language toggle (in nav) ----- */
.lang-toggle {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  transition: border-color 150ms var(--ease), color 150ms var(--ease);
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
