/* ============================================
   ЦИФРОВОЙ ДЕТОКС — Стили лендинга
   ============================================ */

:root {
  --green:        #0D7C5B;
  --green-dark:   #0A6349;
  --green-black:  #0F1A17;
  --green-light:  #D1FAE5;
  --green-tint:   #F0FDF4;
  --green-mid:    #A7F3D0;
  --white:        #FFFFFF;
  --black:        #111827;
  --gray:         #6B7280;
  --gray-light:   #F3F4F6;
  --border:       #E5E7EB;

  --radius-btn:   10px;
  --radius-card:  16px;
  --radius-xl:    24px;
  --radius-full:  999px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12);
  --shadow-green: 0 8px 30px rgba(13,124,91,0.25);

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1140px;
  --trans: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input { font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.section--tint {
  background: var(--green-tint);
}
.section--dark {
  background: var(--green-black);
  color: var(--white);
}
.section__header {
  text-align: center;
  margin-bottom: 60px;
}
.section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section--dark .section__title { color: var(--white); }


/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  background: none;
  min-height: unset;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero::before { display: none; }
.hero__photo-wrap {
  position: relative;
}
.hero__photo-top {
  width: 100%;
  height: auto;
  display: block;
}
.hero__photo-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero__overlay-text {
  background: rgba(130, 80, 30, 0.88);
  color: #FFFFFF;
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 20px;
  border-radius: 14px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  width: 100%;
}
.hero__overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font);
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(13,124,91,0.45);
  transition: background 0.2s, transform 0.2s;
}
.hero__overlay-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.hero__photo-badges {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  background: #FFFFFF;
}
.hero__photo-badge {
  background: rgba(138, 88, 40, 0.88);
  color: #fff5e8;
  border: 1px solid rgba(180, 120, 60, 0.5);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* ===== BADGES ===== */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: var(--green-tint);
  color: var(--green-dark);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
}
.badges--outline .badge--outline {
  background: rgba(255,255,255,0.16);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.5);
}

/* ===== FORMS ===== */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
}
.form-group { width: 100%; }
.form-group input {
  width: 100%;
  padding: 15px 18px;
  background: var(--gray-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius-btn);
  font-size: 15px;
  color: var(--black);
  transition: border-color var(--trans), background var(--trans);
  outline: none;
}
.form-group input::placeholder { color: var(--gray); }
.form-group input:focus {
  background: var(--white);
  border-color: var(--green);
}
.form-group input.input-error {
  border-color: #EF4444;
  background: #FEF2F2;
}

/* Dark form variant */
.lead-form--dark .form-group input {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.85);
}
.lead-form--dark .form-group input::placeholder { color: rgba(255,255,255,0.5); }
.lead-form--dark .form-group input:focus {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.6);
  color: #FFFFFF;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.form-error {
  padding: 10px 14px;
  background: #FEF2F2;
  color: #B91C1C;
  border-radius: var(--radius-btn);
  font-size: 13px;
}
.lead-form--dark .form-error {
  background: rgba(239,68,68,0.15);
  color: #FCA5A5;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 32px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 700;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  user-select: none;
}
.btn--full { width: 100%; }
.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }
.btn--white {
  background: var(--white);
  color: var(--green);
}
.btn--white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Loader dots */
.btn__loader { display: flex; gap: 5px; align-items: center; }
.loader-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* ===== CHECKLIST ===== */
.checklist {
  max-width: 680px;
  margin: 0 auto;
}
.checklist--compact {
  margin: 16px 0 0;
}
.checklist--two-col {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.checklist__item {
  position: relative;
  padding: 14px 0 14px 48px;
  font-size: 17px;
  border-bottom: 1px solid var(--border);
  color: var(--black);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.checklist--compact .checklist__item { font-size: 16px; }
.checklist__item.visible {
  opacity: 1;
  transform: translateX(0);
}
.checklist__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.section--tint .checklist__item { border-color: var(--green-mid); }

/* ===== BIG QUOTES ===== */
.big-quote {
  text-align: center;
  margin-top: 72px;
  padding: 48px 24px;
  border-radius: var(--radius-xl);
  background: var(--green-tint);
  border: 1px solid var(--green-mid);
}
.big-quote__text {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ===== WAR SECTION ===== */
.war-section {
  position: relative;
  overflow: hidden;
}
.war-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 59px,
    rgba(255,255,255,0.02) 59px,
    rgba(255,255,255,0.02) 60px
  );
  pointer-events: none;
}
.war__intro {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 680px;
  margin: 28px auto 52px;
  text-align: center;
}
.war__track {
  max-width: 560px;
  margin: 0 auto 52px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
}
.war__track-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 20px;
}
.war__pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.war__pills li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: rgba(255,255,255,0.9);
}
.war__pills li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}
.war__conclusion {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.war__statement {
  text-align: center;
  padding: 48px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.war__statement p {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.card__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}

/* ===== PROGRAM SECTION ===== */
.program__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.program__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.program__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--green-mid);
  font-size: 16px;
  font-weight: 500;
}
.program__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  min-width: 28px;
}

/* Live Card */
.live-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--green);
  position: sticky;
  top: 100px;
}
.live-card__tag {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.live-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}
.live-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.live-card__list li {
  font-size: 15px;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.live-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ===== CHILDREN SECTION ===== */
.children__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.children__intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}
.children__sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.skills-block {
  background: var(--green-tint);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--green-mid);
}
.skills-block__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}
.skills-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.skill-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
}
.skill-item__icon {
  color: var(--green);
  font-size: 8px;
}
.skills-block__note {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  border-top: 1px solid var(--green-mid);
  padding-top: 16px;
}
.children__quote {
  text-align: center;
  padding: 56px 40px;
  background: var(--green-tint);
  border-radius: var(--radius-xl);
  border: 1px solid var(--green-mid);
}
.children__quote p {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.4;
  color: var(--black);
  letter-spacing: -0.02em;
}

/* ===== AUTHOR SECTION ===== */
.author__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

/* ===== GALLERY ===== */
.author__gallery {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-item {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: flex 0.45s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.gallery-item.active { flex: 2.6; }
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-height: 88vh;
  max-width: 88vw;
  border-radius: 12px;
  object-fit: contain;
  animation: lbIn 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.32); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.32); }

.author__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 12px;
}
.author__name {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--black);
}
.author__bio {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 8px;
}
.author__stats {
  display: flex;
  gap: 32px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.author__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author__stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}
.author__stat-label {
  font-size: 13px;
  color: var(--gray);
}

/* ===== RESULTS SECTION ===== */
.results__quote {
  text-align: center;
  margin-top: 72px;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.results__quote p {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(145deg, #0A6349 0%, #0D7C5B 40%, #0F9B70 100%);
  padding: 120px 0;
}
.cta__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta__text {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta__inner .badges { justify-content: center; margin-bottom: 40px; }
.cta__inner .lead-form--dark { max-width: 100%; }
.cta__inner .form-row { margin-bottom: 12px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 16px;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.form-consent span {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.form-consent span a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}
.form-consent span a:hover { color: #fff; }

/* ===== FOOTER ===== */
.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__logo {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
}
.footer__copy {
  font-size: 13px;
  color: var(--gray);
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
}
.footer__links a:hover { color: var(--green); }
.footer__legal {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__legal p {
  font-size: 12px;
  color: var(--gray);
}
.footer__legal a {
  color: var(--gray);
  text-decoration: none;
}
.footer__legal a:hover { color: var(--green); }

/* ===== SCROLL ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* --- Планшет 900px --- */
@media (max-width: 900px) {
  .hero {
    padding: 0;
    min-height: unset;
  }
  .lead-form { max-width: 100%; }

  .program__grid { grid-template-columns: 1fr; }
  .live-card { position: static; }

  .children__grid { grid-template-columns: 1fr; gap: 32px; }

  .author__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .author__stats { justify-content: center; }
}

/* --- Мобильный 768px --- */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }
  .section__title { letter-spacing: -0.015em; }

  .hero__photo-top { min-height: unset; object-fit: unset; }

  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 20px 18px; }

  .checklist--two-col { grid-template-columns: 1fr; }
  .checklist__item { font-size: 16px; padding: 12px 0 12px 42px; }

  .war__intro { font-size: 16px; margin-bottom: 36px; }
  .war__track { padding: 24px 20px; }
  .war__pills li { font-size: 16px; }
  .war__conclusion { font-size: 16px; }
  .war__statement p { font-size: clamp(26px, 7vw, 40px); }
  .war__statement { padding: 36px 0 8px; }

  .program__item { font-size: 15px; padding: 15px 0; }

  .big-quote { padding: 32px 20px; margin-top: 48px; }
  .big-quote__text { font-size: clamp(22px, 5.5vw, 36px); }

  .children__quote { padding: 36px 24px; }
  .skills-block { padding: 28px 24px; }

  .results__quote { padding: 36px 20px; }

  .cta-section { padding: 80px 0; }
  .cta__title { font-size: clamp(26px, 6.5vw, 40px); }
  .cta__text { font-size: 16px; }
  .cta__inner .badges { gap: 8px; }

  .form-row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer__links { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .footer__legal { text-align: center; }
}

/* --- Маленький мобильный 480px --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

.badges { gap: 6px; }
  .badge { font-size: 12px; padding: 5px 12px; }

  .form-group input { padding: 13px 15px; font-size: 16px; /* iOS zoom fix */ }
  .btn { padding: 15px 24px; font-size: 15px; }

  .section { padding: 52px 0; }
  .section__header { margin-bottom: 32px; }

  .checklist { max-width: 100%; }
  .checklist__item { font-size: 15px; padding: 11px 0 11px 38px; }
  .checklist__item::before { width: 24px; height: 24px; }

  .card { padding: 18px 16px; gap: 12px; }
  .card p { font-size: 15px; }

  .program__item { font-size: 14px; gap: 14px; }
  .program__num { font-size: 12px; }

  .live-card { padding: 24px 20px; }
  .live-card__title { font-size: 17px; }
  .live-card__list li { font-size: 14px; }

  .skills-block { padding: 22px 18px; }
  .skills-block__title { font-size: 16px; }
  .skill-item { font-size: 15px; }

  .children__intro { font-size: 15px; }
  .children__quote { padding: 28px 20px; }
  .children__quote p { font-size: 18px; }

  .author__name { font-size: 26px; }
  .author__bio { font-size: 14px; line-height: 1.5; margin-bottom: 6px; }
  .author__label { margin-bottom: 6px; }
  .author__stat-num { font-size: 24px; }
  .author__stats { margin-top: 12px; padding-top: 12px; }

  .war__track { padding: 20px 16px; }
  .war__track-label { font-size: 12px; }
  .war__pills li { font-size: 15px; }
  .war__statement p { font-size: 24px; }

  .results__quote p { font-size: 20px; }

  .cta__title { font-size: 24px; }
  .cta__text { font-size: 15px; }
  .cta-section { padding: 60px 0; }

  .big-quote { padding: 28px 16px; }
  .big-quote__text { font-size: 22px; }
}
