/* ============================================================
   BIANCA RIBEIRO — Aula Experimental 2026
   Fonts: Lora + DM Sans
   Palette: Forest Green · Warm Cream · Gold
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  --forest:   #0F1B10;
  --forest-2: #182A1A;
  --cream:    #FAF7F0;
  --gold:     #C8943F;
  --gold-l:   #E5B86A;
  --text:     #1C1208;
  --muted:    #857567;
  --white:    #FFFFFF;
  --border:   #E4DDD2;

  --serif: 'Lora', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; font-size: 17.5px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: min(1100px, 100% - 3rem);
  margin-inline: auto;
}

/* ---------- Section separator ---------- */
.sep {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 148, 63, 0.3) 30%, rgba(200, 148, 63, 0.3) 70%, transparent 100%);
  margin: 0;
}
.sep--light {
  background: linear-gradient(90deg, transparent 0%, rgba(200, 148, 63, 0.15) 30%, rgba(200, 148, 63, 0.15) 70%, transparent 100%);
}

/* ---------- CTA Button ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.1rem 2.5rem;
  background: #E8472B;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(232, 71, 43, 0.4);
  animation: cta-pulse 2.4s ease-in-out infinite;
  transition: background 0.2s var(--ease), transform 0.2s var(--spring), box-shadow 0.2s var(--ease);
}
.cta:hover {
  background: #FF5A3C;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 71, 43, 0.55);
  animation: none;
}
.cta:active { transform: scale(0.97) !important; }

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(232, 71, 43, 0.4), 0 0 0 0 rgba(232, 71, 43, 0.55); }
  50%      { box-shadow: 0 8px 28px rgba(232, 71, 43, 0.4), 0 0 0 14px rgba(232, 71, 43, 0); }
}

.cta--light {
  background: #E8472B;
  color: var(--white);
}
.cta--light:hover {
  background: #FF5A3C;
  box-shadow: 0 12px 40px rgba(232, 71, 43, 0.55);
}

.cta--full { width: 100%; justify-content: center; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.eyebrow.center { text-align: center; }
.eyebrow.light  { color: rgba(255, 255, 255, 0.4); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 56fr 44fr;
  min-height: 100svh;
}

.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero__left {
  position: relative;
  background: var(--forest);
  background-image:
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(30, 65, 32, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 100% 0%,  rgba(200, 148, 63, 0.04) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 4.5rem 4.5rem;
}

.logo {
  height: 46px;
  width: auto;
  margin-bottom: auto;
  padding-bottom: 2.5rem;
}

.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2rem;
  max-width: 540px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 4.2vw, 4.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-l);
}

.hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.hero__bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__when {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding: 0;
  background: none;
  border: none;
}

.hero__when-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FF5252;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__when-pulse {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FF5252;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
  animation: when-pulse-dot 1.4s ease-out infinite;
}

@keyframes when-pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 82, 82, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 82, 82, 0); }
}

.hero__when-day {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero__when-sep {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.28);
}

.hero__when-time {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.scarcity {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.scarcity__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #F0A050;
  letter-spacing: 0.02em;
}

.scarcity__pct {
  font-size: 0.78rem;
  font-weight: 700;
  color: #F0A050;
}

.scarcity__bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.scarcity__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #F0A050);
  border-radius: 100px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scarcity__note {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.35);
}
.scarcity__note strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero__right {
  position: relative;
  overflow: hidden;
  background: var(--forest-2);
}

.hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest) 0%, transparent 32%);
  pointer-events: none;
  z-index: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 15%;
  opacity: 0.88;
  filter: saturate(0.9);
}

/* ============================================================
   PARA QUEM
   ============================================================ */
.for-who {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  padding: 6rem 0;
}

.for-who__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.for-who__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 11, 0.55) 0%, rgba(10, 20, 11, 0.5) 100%);
  z-index: 1;
}

.for-who .container {
  position: relative;
  z-index: 2;
}

.for-who .eyebrow {
  margin-bottom: 2.25rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--white);
  text-transform: none;
  line-height: 1.25;
  max-width: 780px;
  margin-inline: auto;
}

.eyebrow__br { display: inline; }

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.trio__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s var(--ease);
}
.trio__item:nth-child(3n) { border-right: none; }
.trio__item:nth-last-child(-n+3) { border-bottom: none; }
.trio__item:hover { background: rgba(255, 255, 255, 0.12); }

.trio__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(200, 148, 63, 0.14);
  border: 1px solid rgba(200, 148, 63, 0.3);
  border-radius: 50%;
}

.trio__item p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  font-weight: 500;
}

.for-who__cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   SLIDER COMPARE — Antes / Depois (visual tipo slider)
   ============================================================ */
.slider-cmp {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-cmp__col {
  padding: 2.25rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.slider-cmp__col--before {
  background: linear-gradient(135deg, rgba(232, 71, 43, 0.22) 0%, rgba(232, 71, 43, 0.1) 100%);
}

.slider-cmp__col--after {
  background: linear-gradient(135deg, rgba(76, 217, 130, 0.1) 0%, rgba(76, 217, 130, 0.22) 100%);
}

.slider-cmp__label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.slider-cmp__label--before { color: #FF8A6B; }
.slider-cmp__label--after  { color: #6BDE94; }

.slider-cmp__emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.slider-cmp__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.slider-cmp__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
}

.slider-cmp__col--before .slider-cmp__list li {
  color: rgba(255, 255, 255, 0.85);
}

.slider-cmp__arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.slider-cmp__col--after .slider-cmp__arrow {
  color: rgba(107, 222, 148, 0.7);
}

/* Central divider/handle */
.slider-cmp__handle {
  position: relative;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #E8472B 20%, #E8472B 80%, transparent 100%);
}

.slider-cmp__handle-line {
  display: none;
}

.slider-cmp__handle-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8472B;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(232, 71, 43, 0.55), 0 0 0 5px rgba(232, 71, 43, 0.15);
  animation: handle-pulse 2.2s ease-in-out infinite;
}

@keyframes handle-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(232, 71, 43, 0.55), 0 0 0 5px rgba(232, 71, 43, 0.15); }
  50%      { box-shadow: 0 6px 24px rgba(232, 71, 43, 0.55), 0 0 0 10px rgba(232, 71, 43, 0); }
}

.slider-cmp__hint {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-align: center;
  font-style: italic;
}

/* ============================================================
   CHECKLIST (usado dentro da seção de promises)
   ============================================================ */
.checklist {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.75rem;
}

.checklist li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.checklist li.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.05rem;
}

/* ============================================================
   PROFESSORA
   ============================================================ */
.teacher {
  background: var(--forest);
  padding: 7rem 0;
}

.teacher__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5.5rem;
  align-items: center;
}

.teacher__photo {
  width: 100%;
  border-radius: 6px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.5));
}

.teacher__name {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.teacher__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  color: var(--gold-l);
  line-height: 1.55;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 1.75rem;
}

.teacher__text p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.82;
  margin-bottom: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer__logo {
  height: 38px;
  width: auto;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.footer__social {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0.25rem;
}

.footer__social-link {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}
.footer__social-link:hover { color: var(--gold); }

.footer__email {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  margin-bottom: 0.25rem;
}
.footer__email:hover { color: var(--gold); }

.footer p {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.04em;
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--forest) 60%, transparent);
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 9, 0.84);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.modal-overlay.is-open { opacity: 1; }
.modal-overlay[hidden]  { display: none; }

.modal-box {
  background: var(--white);
  border-radius: 8px;
  padding: 2.75rem;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s var(--spring);
}
.modal-overlay.is-open .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--border); color: var(--text); }

.modal-box {
  background: linear-gradient(155deg, #FDFAF5 0%, #F4EAD8 100%);
}

/* ---------- Modal Steps (stepper) ---------- */
.modal-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(28, 18, 8, 0.08);
}

.modal-step {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  opacity: 0.4;
  transition: opacity 0.25s var(--ease);
}

.modal-step.is-active {
  opacity: 1;
}

.modal-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(28, 18, 8, 0.12);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.modal-step.is-active .modal-step__num {
  background: #E8472B;
  color: var(--white);
  box-shadow: 0 2px 10px rgba(232, 71, 43, 0.35);
}

.modal-step__label {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.modal-step__connector {
  flex: 1;
  max-width: 42px;
  height: 2px;
  background: rgba(28, 18, 8, 0.15);
  border-radius: 2px;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.modal-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2.5px solid var(--gold);
  flex-shrink: 0;
}

.modal-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.modal-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0;
}

.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.field input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder { color: #c5bdb5; }
.field input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 148, 63, 0.12);
}
.field input.error,
.field select.error {
  border-color: #E85D40;
  box-shadow: 0 0 0 3px rgba(232, 93, 64, 0.1);
}

/* ---------- Phone input com código de país ---------- */
.phone-input {
  display: flex;
  gap: 0.5rem;
}

.phone-input__code {
  flex-shrink: 0;
  width: 110px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 0.6rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23857567' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  padding-right: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.phone-input__code:focus {
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 148, 63, 0.12);
}

.phone-input input {
  flex: 1;
  min-width: 0;
}

.modal-privacy {
  text-align: center;
  font-size: 0.7rem;
  color: #ccc;
  margin-top: 0.85rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__right {
    order: -1;
    height: 55vw;
    max-height: 420px;
  }
  .hero__right::after {
    background: linear-gradient(to top, var(--forest) 0%, transparent 40%);
  }
  .hero__left {
    padding: 2.5rem 2rem 4rem;
  }
  .hero__body { padding-top: 0; max-width: 100%; }

  .trio {
    grid-template-columns: 1fr;
  }
  .trio__item {
    padding: 1.1rem 1.25rem;
    gap: 0.9rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .trio__item:last-child { border-bottom: none; }
  .trio__item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .trio__item:nth-last-child(1) { border-bottom: none; }
  .trio__icon { width: 38px; height: 38px; font-size: 1.3rem; }
  .trio__item p { font-size: 0.94rem; line-height: 1.45; }

  .for-who__cta   { margin-top: 2rem; }
  .for-who__cta .cta { width: 100%; justify-content: center; }

  .slider-cmp {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .slider-cmp__col { padding: 1.5rem 1.25rem; }
  .slider-cmp__handle {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #E8472B 20%, #E8472B 80%, transparent 100%);
  }
  .slider-cmp__handle-badge {
    width: 40px;
    height: 40px;
  }
  .slider-cmp__list li { font-size: 0.97rem; }

  .teacher__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .teacher__photo-col {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (min-width: 961px) {
  .hero__when-live { font-size: 1.15rem; gap: 0.6rem; }
  .hero__when-pulse { width: 11px; height: 11px; }
  .hero__when-day { font-size: 1.3rem; }
  .hero__when-time { font-size: 1.3rem; }
  .hero__when-sep { font-size: 1.25rem; }
}

@media (max-width: 960px) {
  .sep { display: none; }
}

@media (max-width: 600px) {

  .hero__left   { padding: 2rem 1.25rem 3.5rem; }
  .hero__title  { font-size: 2.4rem; }
  .for-who      { padding: 4rem 0; }
  .teacher      { padding: 4rem 0; }
  .modal-box    { padding: 1.75rem 1.25rem; }
  .modal-header { flex-direction: column; align-items: flex-start; }
  .modal-steps  { gap: 0.5rem; margin-bottom: 1.25rem; padding-bottom: 1.1rem; }
  .modal-step__label { font-size: 0.74rem; }
  .modal-step__connector { max-width: 24px; }

  .sticky-cta   { display: block; }

  .for-who .container,
  .teacher .container { padding-inline: 1.25rem; }
}
