:root {
  /* Синий, фиолетовый, красный, розовый — без зелёного */
  --blue: #5B7FA6;
  --blue-deep: #4A5288;
  --blue-bright: #7A9BC8;
  --accent: #C45C6E;
  --accent-bright: #E88BA8;
  --violet: #8F7DA3;
  --violet-deep: #6E5F88;
  --sky: #7EB0C8;
  --sky-pale: #E4ECF5;
  --blossom: #E88BA8;
  --terra: #C95A62;
  --cream: #FAF7F9;
  --cream-deep: #EDE6F0;
  --text: #2E2A38;
  --muted: #6E6878;
  --border: rgba(110, 95, 136, 0.14);
  --border-strong: rgba(110, 95, 136, 0.28);
  --white: #fff;
  --max: 1120px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 1px 2px rgba(46, 42, 56, 0.04), 0 8px 32px rgba(46, 42, 56, 0.07);
  --shadow-md: 0 4px 16px rgba(46, 42, 56, 0.08), 0 16px 48px rgba(46, 42, 56, 0.1);
  --shadow-book: 0 6px 20px rgba(74, 64, 110, 0.12);
  --shadow-hover: 0 8px 28px rgba(46, 42, 56, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.45);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --book-ratio: 3 / 4;
  --book-ratio-banner: 3 / 4.8;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.chit-course-page img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#chit-course { width: 100%; overflow-x: hidden; }

/* Header */
.cc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.cc-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cc-logo img { height: 52px; width: auto; display: block; }
.cc-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.cc-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.cc-nav a:hover {
  color: var(--blue-deep);
  background: rgba(74, 82, 136, 0.06);
}
.cc-header-cta {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--blue-deep);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 2px 12px rgba(74, 82, 136, 0.25);
}
.cc-header-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(74, 82, 136, 0.3);
}

/* Sub-nav */
.cc-subnav {
  position: sticky;
  top: 93px;
  z-index: 90;
  background: var(--blue-deep);
  border-bottom: none;
}
.cc-subnav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cc-subnav a {
  flex: 0 0 auto;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.cc-subnav a:hover,
.cc-subnav a.is-active {
  color: #fff;
  border-bottom-color: var(--accent-bright);
}

/* Banner + заголовок (как litschool) */
.cc-banner {
  width: 100%;
  background: var(--blue-deep);
}
.cc-banner__frame {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 40vw, 440px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 90% 80%, rgba(232, 139, 168, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(122, 155, 200, 0.18) 0%, transparent 50%),
    linear-gradient(145deg, #3d4568 0%, var(--blue-deep) 40%, var(--violet-deep) 100%);
}
.cc-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.cc-banner__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(30, 34, 56, 0.88) 0%,
    rgba(42, 48, 78, 0.72) 42%,
    rgba(42, 48, 78, 0.2) 100%
  );
  pointer-events: none;
}
.cc-banner__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.1;
  background-image: url('https://api.chitatelstvo.ru/assets/pattern-meadow-books.png');
  background-repeat: repeat;
  background-size: 420px;
  pointer-events: none;
  mask-image: linear-gradient(105deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(105deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.cc-banner__layout {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 52px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 1fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: end;
}
.cc-banner__visual {
  align-self: end;
}
.cc-banner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.cc-banner__tag {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}
.cc-banner__tag--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.cc-banner h1 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  max-width: 15em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.cc-banner__lead {
  margin: 0 0 24px;
  max-width: 480px;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.cc-btn--banner {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--terra) 0%, var(--accent) 100%);
  box-shadow: 0 4px 20px rgba(201, 90, 98, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cc-btn--banner:hover {
  background: linear-gradient(135deg, var(--accent) 0%, #d46a7a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 90, 98, 0.4);
}
.cc-banner__chip {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cc-banner__chip--price {
  border-color: rgba(232, 139, 168, 0.5);
  background: rgba(232, 139, 168, 0.12);
}
.cc-banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cc-banner__visual .cc-hero__shelf {
  padding: 0;
  background: none;
  border: none;
  gap: 10px;
  align-items: end;
}
.cc-banner__visual .cc-book__frame {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  aspect-ratio: var(--book-ratio-banner);
  min-height: clamp(190px, 22vw, 270px);
}
.cc-banner__visual .cc-book__frame::before {
  display: none;
}
.cc-banner__visual .cc-book__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Hero */
.cc-hero,
.cc-hero--compact {
  background:
    radial-gradient(ellipse at 18% 35%, rgba(143, 125, 163, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 65%, rgba(232, 139, 168, 0.08) 0%, transparent 48%),
    linear-gradient(135deg, var(--cream-deep) 0%, var(--white) 50%, #F8F4F7 100%);
  border-bottom: 1px solid var(--border);
}
.cc-hero { padding: 52px 24px 60px; }
.cc-hero--compact { padding: 28px 24px 32px; }
.cc-hero__grid--simple {
  gap: 32px;
  align-items: center;
}
.cc-hero__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
}
.cc-hero--compact h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 38px);
}
.cc-hero__facts {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.45;
}
.cc-hero--compact .cc-btn {
  padding: 12px 24px;
  font-size: 15px;
}
.cc-hero--compact .cc-hero__shelf {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  gap: 10px;
}
.cc-hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.cc-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(232, 139, 168, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.cc-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1.12;
}
.cc-hero__lead {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}
.cc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.cc-meta-pill {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--white);
  border: 2px solid var(--border-strong);
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-deep);
}
.cc-meta-pill--accent {
  background: var(--accent-bright);
  border-color: var(--accent);
  color: var(--text);
}
.cc-hero__trust {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.cc-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--blue-deep);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  box-shadow: 0 2px 12px rgba(74, 82, 136, 0.22);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cc-btn:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(74, 82, 136, 0.28);
}
.cc-btn--outline {
  background: var(--white);
  color: var(--blue-deep);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.cc-btn--outline:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.cc-btn--block { width: 100%; }
.cc-btn:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }

/* Book cover frames — always 3:4, contain, no crop */
.cc-hero__shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
  padding: 20px 16px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(74, 109, 148, 0.08) 100%);
  border-radius: 20px;
  border: 2px solid var(--border);
}
.cc-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

a.cc-book__link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  outline-offset: 4px;
}

a.cc-book__link:focus-visible {
  outline: 2px solid var(--blue);
}

a.cc-book__link:hover .cc-book__frame {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-hover);
}
.cc-book__frame {
  width: 100%;
  aspect-ratio: var(--book-ratio);
  background: transparent;
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow-book);
  display: block;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cc-book__frame:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-hover);
}
.cc-book__frame::before {
  display: none;
}
.cc-book__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 10px;
}
.cc-book__placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--border-strong);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(143, 125, 163, 0.14) 0%, rgba(232, 139, 168, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-book__placeholder::after {
  content: '📖';
  font-size: 28px;
  opacity: 0.55;
}
.cc-book__caption {
  display: none;
}

/* Pull quote */
.cc-quote-band {
  padding: 36px 24px;
  background: var(--blue-deep);
  color: #fff;
}
.cc-quote-band__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cc-quote-band blockquote {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  font-style: italic;
}
.cc-quote-band cite {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

/* Sections */
.cc-section { padding: clamp(48px, 7vw, 72px) 24px; }
.cc-section--white { background: var(--white); }
.cc-section--pale { background: var(--cream); }
.cc-section--deep { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.cc-section--contrast {
  background: var(--blue-deep);
  color: #fff;
}
.cc-section--contrast .cc-chapter { color: rgba(255,255,255,0.7); }
.cc-section--contrast .cc-chapter em { color: #e8c8e0; }
.cc-section--contrast h2 { color: #fff; }
.cc-section--contrast .cc-section__lead { color: rgba(255,255,255,0.88); }
.cc-section__inner { max-width: var(--max); margin: 0 auto; }
.cc-chapter {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.cc-chapter em {
  font-style: normal;
  color: var(--violet);
  text-transform: uppercase;
}
.cc-section h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.cc-section__lead {
  margin: 0 0 32px;
  color: var(--muted);
  max-width: 640px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.cc-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.cc-checklist li {
  position: relative;
  padding: 14px 16px 14px 40px;
  font-size: 17px;
  line-height: 1.5;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
}
.cc-section--contrast .cc-checklist li {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.cc-checklist li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 1.15em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.cc-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.cc-info-card {
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.cc-info-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-deep);
}
.cc-info-card .cc-checklist li { background: var(--cream); }

/* Timeline */
.cc-timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cc-timeline__node {
  flex: 1 1 140px;
  text-align: center;
  padding: 16px 12px;
  background: var(--cream-deep);
  border-radius: 12px;
  border: 2px solid var(--border);
}
.cc-timeline__date {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.cc-timeline__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.cc-timeline__arrow {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.cc-timeline__total {
  flex: 1 0 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin-top: 4px;
}
.cc-timeline--compact {
  padding: 16px 18px;
  margin-bottom: 24px;
}

/* School intro */
.cc-intro {
  padding: clamp(40px, 6vw, 56px) 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cc-intro__inner { max-width: 720px; }
.cc-intro__pitch {
  margin: 0 0 20px;
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
  letter-spacing: -0.01em;
}
.cc-intro__program {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--muted);
}
.cc-intro__quote {
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  color: var(--violet-deep);
  line-height: 1.6;
}
.cc-intro__quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* Две полосы: что/как и навыки/для кого */
.cc-strips {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 24px 32px;
  background: var(--cream);
}
.cc-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.cc-split-panel {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cc-split-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.cc-split-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.cc-split-panel--pale {
  background: linear-gradient(160deg, #f3f0f7 0%, #ebe6f0 100%);
  color: var(--text);
}
.cc-split-panel--pale h2 { color: var(--text); }
.cc-split-panel--warm {
  background: linear-gradient(145deg, #d4656c 0%, var(--terra) 50%, #b84e56 100%);
  color: #fff;
  border-color: transparent;
}
.cc-split-panel--warm h2,
.cc-split-panel--warm .cc-split-subhead { color: #fff; }
.cc-split-panel--violet {
  background: linear-gradient(145deg, #7d6d96 0%, var(--violet-deep) 100%);
  color: #fff;
  border-color: transparent;
}
.cc-split-panel--violet h2 { color: #fff; }
.cc-split-panel--white {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
}
.cc-split-panel--white h2 { color: var(--text); }
.cc-split-subhead {
  margin: 28px 0 14px;
  font-size: 17px;
  font-weight: 800;
}
.cc-split-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.cc-split-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.cc-split-list--dark li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 1px;
}
.cc-split-list--light li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.cc-split-panel--white .cc-btn--pill {
  margin-top: 28px;
}
.cc-btn--pill {
  border-radius: 999px;
  padding: 14px 28px;
}

/* Value block (legacy) */
.cc-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.cc-value-card {
  padding: 16px;
  background: var(--cream-deep);
  border: 2px solid var(--border);
  border-radius: 12px;
}
.cc-value-card strong {
  display: block;
  font-size: 15px;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.cc-value-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}
.cc-whom-block { margin-bottom: 20px; }
.cc-whom-block__label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cc-pill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cc-pill-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.cc-skills-short {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.cc-skills-short li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.cc-skills-short li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.cc-program-note {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}

/* For whom */
.cc-for-whom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.cc-for-whom__item {
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  padding: 20px 22px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow);
}

/* Lesson steps */
.cc-lesson-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.cc-lesson-step img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Lesson demo (real example) */
.cc-lesson-demo {
  border: 3px solid var(--blue-deep);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
}
.cc-demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.cc-demo-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cream-deep);
  border: 2px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.cc-demo-chip b {
  color: var(--blue-deep);
  margin-right: 4px;
}
.cc-demo-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.cc-demo-preview__emotion,
.cc-demo-preview__card {
  padding: 18px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 14px;
}
.cc-demo-preview__emotion .cc-demo-block__title,
.cc-demo-preview__card .cc-demo-block__title {
  margin: 0 0 14px;
  font-size: 15px;
}
.cc-demo-preview__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.cc-demo-emotion--preview {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.cc-demo-emotion--preview .cc-demo-emotion__wheel img {
  width: 100%;
  max-width: 200px;
}
.cc-demo-emotion__hint {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}
.cc-demo-reading--preview {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: none;
}
.cc-demo-reading--preview .cc-demo-reading__img {
  max-width: 110px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.cc-demo-reading--preview .cc-demo-reading__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.cc-demo-reading--preview .cc-demo-reading__text {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.cc-demo-quiz--preview .cc-demo-quiz__q {
  font-size: 15px;
  margin-bottom: 12px;
}
.cc-demo-quiz--preview .cc-demo-quiz__opt {
  font-size: 14px;
  padding: 10px 12px;
}
.cc-demo-toggle {
  width: 100%;
  padding: 12px 16px;
  border: 2px dashed var(--border-strong);
  border-radius: 12px;
  background: var(--white);
  color: var(--blue-deep);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.cc-demo-toggle:hover { background: var(--cream-deep); }
.cc-demo-more { padding-top: 20px; border-top: 2px solid var(--border); margin-top: 16px; }
.cc-lesson-steps--compact {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(8px, 1.5vw, 14px);
}
.cc-lesson-steps--compact .cc-lesson-step {
  flex: 1 1 0;
  min-width: 0;
}
.cc-lesson-steps--compact .cc-lesson-step img {
  width: 100%;
  max-width: 148px;
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 720px) {
  .cc-lesson-steps--compact .cc-lesson-step img { max-width: 108px; }
}
@media (max-width: 480px) {
  .cc-lesson-steps--compact .cc-lesson-step img { max-width: 72px; }
}
.cc-compare-details {
  margin-top: 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  overflow: hidden;
}
.cc-compare-details summary {
  padding: 14px 18px;
  font-weight: 800;
  color: var(--blue-deep);
  cursor: pointer;
  list-style: none;
}
.cc-compare-details summary::-webkit-details-marker { display: none; }
.cc-compare-details .cc-compare { margin: 0; border: none; border-radius: 0; }
.cc-reviews--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.cc-reviews--compact .cc-review {
  padding: 16px;
  margin: 0;
}
.cc-reviews--compact .cc-review__text { font-size: 14px; }
.cc-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 20px rgba(58, 52, 80, 0.1);
}
.cc-mobile-cta .cc-btn { width: 100%; }
.cc-lesson-demo__head {
  padding: 24px 28px;
  background: var(--blue-deep);
  color: #fff;
}
.cc-lesson-demo__head h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
}
.cc-lesson-demo__head p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.92;
  line-height: 1.5;
}
.cc-lesson-demo__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--accent-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cc-lesson-demo__body { padding: 28px; }
.cc-demo-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}
.cc-demo-step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream-deep);
  border: 2px solid var(--border);
  border-radius: 12px;
}
.cc-demo-step__n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.cc-demo-step__label {
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 2px;
}
.cc-demo-step__desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}
.cc-demo-block { margin-bottom: 32px; padding-top: 8px; }
.cc-demo-block__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-deep);
}
.cc-demo-block__sub {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.cc-demo-emotion {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 22px;
  background: var(--cream-deep);
  border: 2px solid var(--border-strong);
  border-radius: 16px;
}
.cc-demo-emotion__wheel { text-align: center; }
.cc-demo-emotion__wheel img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-book);
  object-fit: contain;
}
.cc-demo-emotion__caption {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cc-demo-emotion__q {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.4;
}
.cc-demo-emotion__desc {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 12px;
}
.cc-demo-emotion__answer {
  padding: 12px 14px;
  background: var(--white);
  border-left: 4px solid var(--accent-bright);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
}
.cc-demo-emotion__feedback {
  margin-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  font-weight: 600;
}
.cc-demo-reading {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: 14px;
  max-width: 520px;
}
.cc-demo-reading__img {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #E8E6F5;
  border: 2px solid var(--border);
}
.cc-demo-reading__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cc-demo-reading__text {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-deep);
  margin: 0 0 8px;
  line-height: 1.4;
}
.cc-demo-reading__note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}
.cc-demo-quiz {
  padding: 18px 20px;
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: 14px;
  max-width: 480px;
}
.cc-demo-quiz__q {
  font-weight: 800;
  color: var(--blue-deep);
  margin: 0 0 12px;
}
.cc-demo-quiz__opts { display: flex; flex-direction: column; gap: 8px; }
.cc-demo-quiz__opt {
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}
.cc-demo-quiz__opt.is-correct {
  border-color: var(--accent);
  background: rgba(232, 139, 168, 0.16);
  font-weight: 800;
}
.cc-demo-heroes { display: flex; flex-wrap: wrap; gap: 14px; }
.cc-demo-hero { width: 100px; text-align: center; }
.cc-demo-hero__frame {
  aspect-ratio: 1;
  padding: 8px;
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  margin-bottom: 6px;
}
.cc-demo-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cc-demo-hero__frame.is-extra {
  opacity: 0.55;
  border-style: dashed;
}
.cc-demo-hero span {
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.cc-demo-hero em {
  display: block;
  font-size: 10px;
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
  margin-top: 2px;
}
.cc-demo-pairs { display: flex; flex-wrap: wrap; gap: 16px; }
.cc-demo-pair { text-align: center; width: 120px; }
.cc-demo-pair__img {
  aspect-ratio: 3/4;
  padding: 8px;
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: 10px;
  margin-bottom: 8px;
}
.cc-demo-pair__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cc-demo-pair span {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-deep);
}
.cc-demo-events { display: flex; flex-wrap: wrap; gap: 12px; }
.cc-demo-event {
  flex: 1 1 140px;
  max-width: 180px;
  padding: 12px;
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  text-align: center;
}
.cc-demo-event__img {
  aspect-ratio: 4/3;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #E8E6F5;
}
.cc-demo-event__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cc-demo-event p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.cc-demo-creative { display: flex; flex-wrap: wrap; gap: 10px; }
.cc-demo-creative span {
  padding: 10px 14px;
  background: var(--cream-deep);
  border: 2px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* Program — workshop-style grid with book covers */
.cc-program-block { margin-bottom: 56px; }
.cc-program-block__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  background: none;
  margin: 0 0 28px;
  padding: 0;
  border-radius: 0;
  letter-spacing: -0.02em;
  text-align: center;
}
.cc-tale-list { display: flex; flex-direction: column; gap: 12px; }
.cc-tale-row {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cc-tale-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.cc-tale-row .cc-book__frame {
  max-width: 108px;
}
.cc-tale-row__week {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.cc-tale-row__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 8px;
  line-height: 1.35;
}
.cc-tale-row__desc {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 8px;
  line-height: 1.5;
  font-weight: 600;
}
.cc-tale-row__quote {
  font-size: 14px;
  font-style: italic;
  color: var(--accent);
  margin: 0 0 8px;
  font-weight: 700;
}
.cc-tale-row__date {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.cc-tale-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Program grid — 2×2, cover left + date/title right */
.cc-tale-list--program,
.cc-tale-list--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
  align-items: start;
}
.cc-tale-program {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 0 18px;
  align-items: start;
  min-width: 0;
}
.cc-tale-program__cover .cc-book {
  width: 100%;
  margin: 0;
  align-items: stretch;
}
.cc-tale-program__cover .cc-book__frame {
  width: 124px;
  max-width: 124px;
  aspect-ratio: 3 / 4.25;
  border-radius: 4px 8px 8px 4px;
  box-shadow: var(--shadow-book);
  background: #f8f6fa;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cc-tale-program__cover .cc-book__frame img,
.cc-tale-program__cover .cc-book__placeholder {
  border-radius: 4px 8px 8px 4px;
  object-fit: contain;
  object-position: center center;
}
.cc-tale-program:hover .cc-book__frame {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.cc-tale-program__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-top: 2px;
  min-width: 0;
}
.cc-tale-program__date {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 10px;
}
.cc-tale-program__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 6px;
}
.cc-tale-program__desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

.cc-tale-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.cc-tale-badge--online {
  background: #eef4fb;
  color: var(--blue-deep);
}

.cc-tale-badge--meet {
  background: #f3f0fa;
  color: #5a4d8c;
}

/* Team */
.cc-team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.cc-team-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cc-team-card__photo {
  width: 120px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
}
.cc-team-card__name {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-deep);
}
.cc-team-card__role {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.cc-team-card__bio {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

/* Gamify preview */
.cc-gamify {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.cc-gamify__item {
  text-align: center;
  width: 100px;
}
.cc-gamify__item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}
.cc-gamify__item span {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue-deep);
}

/* Reviews strip */
.cc-strip-reviews {
  padding: clamp(40px, 6vw, 56px) clamp(20px, 4vw, 32px);
  background: linear-gradient(180deg, var(--cream) 0%, #f5f1f6 100%);
}
.cc-strip-reviews__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.cc-strip-reviews__head {
  margin-bottom: 28px;
}
.cc-strip-reviews__head h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.cc-reviews--strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.cc-reviews--strip .cc-review {
  margin: 0;
  padding: clamp(18px, 2.5vw, 24px);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cc-reviews--strip .cc-review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.cc-reviews--strip .cc-review__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}
.cc-reviews--strip .cc-review__author {
  margin-top: auto;
  padding-top: 12px;
}

/* Reviews */
.cc-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.cc-review {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cc-review__text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text);
  font-style: italic;
}
.cc-review__author {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--terra);
}

/* Tariffs */
.cc-tariffs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.cc-tariff {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.cc-tariff::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--violet));
  opacity: 0.5;
}
.cc-tariff:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cc-tariff--featured {
  border-color: rgba(196, 92, 110, 0.35);
  background: linear-gradient(180deg, #fff 0%, rgba(237, 230, 240, 0.5) 100%);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cc-tariff--featured::before {
  height: 4px;
  background: linear-gradient(90deg, var(--terra), var(--accent-bright));
  opacity: 1;
}
.cc-tariff--featured:hover {
  transform: translateY(-8px);
}
.cc-tariff__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-deep);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.cc-tariff__mood {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 500;
}
.cc-tariff__list {
  margin: 0 0 20px;
  padding-left: 18px;
  flex: 1;
  font-size: 15px;
  font-weight: 600;
}
.cc-tariff__list li { margin-bottom: 8px; }
.cc-tariff__price {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.cc-tariff__note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 700;
}
.cc-tariff__meet {
  font-size: 13px;
  color: var(--text);
  background: var(--cream-deep);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
  min-height: 72px;
  font-weight: 600;
  border: 1px solid var(--border);
}
.cc-tariff__meet--empty { visibility: hidden; }

/* Compare formats */
.cc-compare {
  margin-top: 32px;
  overflow-x: auto;
}
.cc-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 600;
}
.cc-compare th,
.cc-compare td {
  padding: 14px 16px;
  border: 2px solid var(--border);
  text-align: left;
}
.cc-compare th {
  background: var(--blue-deep);
  color: #fff;
  font-weight: 800;
}
.cc-compare tr:nth-child(even) td { background: var(--cream); }

/* Final CTA */
.cc-final-cta {
  position: relative;
  padding: 56px 24px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cc-final-cta__bg {
  position: absolute;
  inset: 0;
  background: var(--blue-deep) url('https://api.chitatelstvo.ru/assets/cta-fairy-tale-bg.png') center bottom / cover no-repeat;
  opacity: 0.92;
}
.cc-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.cc-final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
}
.cc-final-cta p {
  margin: 0 0 24px;
  font-size: 17px;
  font-weight: 600;
  opacity: 0.92;
}

/* Enrollment */
.cc-enroll {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 36px);
  box-shadow: var(--shadow-md);
}
.cc-step-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cc-step-hint {
  margin: -4px 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.cc-step-block { margin-bottom: 28px; }
.cc-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.cc-pill {
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.cc-pill:hover {
  border-color: var(--blue-deep);
  background: var(--cream);
}
.cc-pill.is-active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
  box-shadow: 0 2px 12px rgba(74, 82, 136, 0.25);
}
.cc-pick-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.cc-pick-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  cursor: pointer;
  background: var(--white);
  text-align: left;
  transition: all 0.2s var(--ease);
}
.cc-pick-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.cc-pick-card.is-active {
  border-color: var(--blue-deep);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  box-shadow: var(--shadow-md);
}
.cc-pick-card__tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.cc-pick-card__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-deep);
}
.cc-pick-card__price {
  font-size: 20px;
  font-weight: 800;
  margin: 6px 0;
  color: var(--blue-deep);
}
.cc-pick-card__hint {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.cc-tales { display: grid; gap: 10px; margin-top: 14px; }
.cc-tale-btn {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  background: var(--white);
  font-family: inherit;
  cursor: pointer;
}
.cc-tale-btn.is-active {
  border-color: var(--blue-deep);
  background: var(--cream-deep);
}
.cc-tale-btn__num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.cc-tale-btn__title {
  font-weight: 800;
  color: var(--blue-deep);
  display: block;
  margin-bottom: 4px;
}
.cc-block-preview__cards { display: grid; gap: 10px; margin-top: 12px; }
.cc-block-preview__card {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  font-weight: 600;
}
.cc-summary {
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--cream-deep);
  border: 2px dashed var(--border-strong);
  min-height: 60px;
  font-weight: 700;
}
.cc-summary.is-empty { color: var(--muted); font-style: italic; font-weight: 600; }
.cc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.cc-form-field label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--blue-deep);
}
.cc-form-field input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  background: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cc-form-field input:focus {
  outline: none;
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(74, 82, 136, 0.12);
}
.cc-form-consent {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 600;
}
.cc-form-consent a { color: var(--blue-deep); font-weight: 800; }

/* FAQ */
.cc-faq { display: flex; flex-direction: column; gap: 10px; }
.cc-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease);
}
.cc-faq-item:hover {
  box-shadow: var(--shadow);
}
.cc-faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  border: none;
  background: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-deep);
  cursor: pointer;
}
.cc-faq-q:hover { background: var(--cream-deep); }
.cc-faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  font-weight: 600;
}
.cc-faq-a.is-open { display: block; }

/* Pattern + footer (как на главной) */
.cc-pattern-strip {
  position: relative;
  height: 104px;
  background-color: var(--cream);
  background-image: url('https://api.chitatelstvo.ru/assets/pattern-meadow-books.png');
  background-repeat: repeat;
  background-position: center;
  background-size: 380px;
  border-top: 1px solid rgba(216, 208, 228, 0.55);
}
.cc-pattern-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    rgba(237, 230, 240, 0.58) 18%,
    rgba(237, 230, 240, 0.58) 82%,
    var(--white) 100%
  );
  pointer-events: none;
}
.cc-footer {
  position: relative;
  padding: 48px 24px 56px;
  text-align: center;
  background-color: var(--cream);
  background-image: url('https://api.chitatelstvo.ru/assets/pattern-meadow-books.png');
  background-repeat: repeat;
  background-position: center top;
  background-size: 420px;
  border-top: none;
}
.cc-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(237, 230, 240, 0.84) 100%
  );
  pointer-events: none;
}
.cc-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.cc-footer__logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
.cc-footer__warm {
  margin: 0 0 12px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: var(--text);
}
.cc-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
}
.cc-footer__legal a {
  color: var(--blue);
  text-decoration: none;
}
.cc-footer__legal a:hover { text-decoration: underline; }
.cc-footer__contact {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.cc-footer__contact a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}
.cc-footer__contact a:hover { text-decoration: underline; }
.cc-footer__seller {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.cc-footer__copy {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* Hub */
.cc-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.cc-hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cc-hub-card:hover {
  border-color: rgba(74, 82, 136, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cc-hub-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.cc-hub-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 960px) {
  .cc-nav { display: none; }
  .cc-banner__layout {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .cc-banner__visual {
    order: -1;
    max-width: 420px;
  }
  .cc-banner__visual .cc-hero__shelf {
    grid-template-columns: repeat(4, 1fr);
  }
  .cc-two-col,
  .cc-for-whom,
  .cc-form-grid,
  .cc-team,
  .cc-reviews,
  .cc-reviews--strip,
  .cc-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cc-tariffs,
  .cc-pick-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cc-strip__inner,
  .cc-demo-preview__row { grid-template-columns: 1fr; }
  .cc-demo-emotion--preview { grid-template-columns: 1fr; text-align: center; }
  .cc-demo-emotion--preview .cc-demo-emotion__wheel img { margin: 0 auto; }
  .cc-demo-reading--preview { grid-template-columns: 1fr; text-align: center; }
  .cc-demo-reading--preview .cc-demo-reading__img { margin: 0 auto; max-width: 160px; }
  .cc-tale-row { grid-template-columns: 88px minmax(0, 1fr); }
  .cc-tale-row .cc-book__frame { max-width: 88px; }
  .cc-tale-list--program,
  .cc-tale-list--compact { gap: 22px 20px; }
  .cc-tale-program { grid-template-columns: 104px minmax(0, 1fr); gap: 0 14px; }
  .cc-tale-program__cover .cc-book__frame { width: 104px; max-width: 104px; }
  .cc-tale-program__date { font-size: 14px; }
  .cc-tale-program__title { font-size: 13px; }
  .cc-demo-emotion { grid-template-columns: 1fr; }
  .cc-demo-reading { grid-template-columns: 1fr; max-width: 100%; }
  .cc-demo-reading__img { max-width: 200px; }
  .cc-team-card { grid-template-columns: 1fr; text-align: center; }
  .cc-team-card__photo { margin: 0 auto; }
  .cc-tariff--featured { transform: none; }
}

@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  .cc-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .cc-pattern-strip { height: 72px; background-size: 280px; }
  .cc-footer { padding: 36px 16px 48px; }
  .cc-footer__logo { width: 160px; }
}

@media (max-width: 640px) {
  .cc-tale-list--program,
  .cc-tale-list--compact {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cc-program-block__title { text-align: center; }
}

@media (max-width: 560px) {
  .cc-strips { padding: 16px 16px 24px; gap: 12px; }
  .cc-split-panel { padding: 24px 20px; }
  .cc-hero { padding: 32px 16px 40px; }
  .cc-section { padding: 44px 16px; }
  .cc-enroll { padding: 24px 18px; }
  .cc-hero__shelf { grid-template-columns: repeat(2, 1fr); }
}
