/* ==================================================================
   Elety 2.0 — лендинг
   Свёрстан по утверждённым макетам (design-v2/handoff/assets/approved).
   Фотографии — живые <picture> из clean plates, весь текст, кнопки,
   таймлайн, отчёт и дашборд — HTML, а не картинки.
   Ничего из старой темы здесь не используется: своя система токенов.
================================================================== */

.v2 {
	margin: 0;
	padding: 0;

	/* Палитра 2.1 — из макетов Codex (work/figma-capture/additional-v21) */
	--e-bg:          #f7f2e9;   /* тёплая бумага */
	--e-bg-soft:     #f1ebe0;
	--e-surface:     #fffdfa;
	--e-ink:         #09262b;   /* заголовки, тёмно-зелёный */
	--e-ink-2:       #24383b;
	--e-body:        #617075;   /* основной текст */
	--e-muted:       #8b979b;
	--e-line:        #ded6ca;
	--e-line-soft:   #ece6dc;

	--e-accent:      #f4512c;   /* коралловый */
	--e-accent-dark: #d43f1d;
	--e-accent-soft: #fde7e0;

	--e-good:        #45846d;   /* зелёный: прогресс, подтверждения */
	--e-good-soft:   #edf3eb;
	--e-warn:        #a16a1f;
	--e-warn-soft:   #fff0d3;

	--e-night:       #09262b;   /* тёмная секция и подвал */
	--e-night-2:     #061a1e;

	--e-r:    14px;
	--e-r-sm: 10px;
	--e-r-lg: 22px;

	--e-shadow:    0 1px 2px rgba(22,24,29,.04), 0 8px 30px rgba(22,24,29,.06);
	--e-shadow-lg: 0 2px 6px rgba(22,24,29,.05), 0 24px 60px rgba(22,24,29,.10);

	--e-max: 1440px;
	--e-pad: 64px;

	background: var(--e-bg);
	color: var(--e-body);
	font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.v2 *,
.v2 *::before,
.v2 *::after { box-sizing: border-box; }

.v2 :where(h1, h2, h3, h4, p, ul, ol, dl, dd, figure) { margin: 0; }
.v2 :where(ul, ol) { padding: 0; list-style: none; }
.v2 :where(img) { display: block; max-width: 100%; }
.v2 :where(a) { color: inherit; text-decoration: none; }

.v2-wrap {
	width: 100%;
	max-width: var(--e-max);
	margin: 0 auto;
	padding: 0 var(--e-pad);
}

/* ---------- шапка ---------------------------------------------- */

.v2-header {
	position: relative;
	z-index: 20;
	padding: 26px 0;
}

.v2-header-in {
	display: flex;
	align-items: center;
	gap: 56px;
}

.v2 .v2-logo {
	display: inline-flex;
	align-items: flex-start;
	gap: 2px;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -.03em;
	color: var(--e-ink);
	flex: none;
}

.v2-logo svg { width: 18px; height: 18px; margin-top: 2px; }
.v2 .v2-logo--light { color: #fff; }

.v2-nav { display: flex; gap: 44px; }

.v2-nav a {
	font-size: 15px;
	color: var(--e-ink);
	padding: 4px 0;
	border-bottom: 1px solid transparent;
	transition: border-color .15s ease, color .15s ease;
}

.v2-nav a:hover { border-bottom-color: var(--e-accent); }
.v2-nav a:focus-visible { outline: 2px solid var(--e-accent); outline-offset: 4px; border-radius: 2px; }

.v2 .v2-login {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 22px;
	border: 1px solid var(--e-line);
	border-radius: 999px;
	background: transparent;
	font-size: 15px;
	color: var(--e-ink);
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease;
}

.v2 .v2-login:hover { border-color: var(--e-ink); }
.v2-login:focus-visible { outline: 2px solid var(--e-accent); outline-offset: 3px; }
.v2-login svg { width: 15px; height: 15px; }

.v2 .v2-login--light { border-color: rgba(255,255,255,.35); color: #fff; }
.v2-login--light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- кнопка --------------------------------------------- */

.v2 .v2-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 19px 40px;
	border: 0;
	border-radius: var(--e-r);
	background: var(--e-accent);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
	box-shadow: 0 8px 22px rgba(244,86,42,.24);
}

.v2 .v2-cta:hover { background: var(--e-accent-dark); color: #fff; }
.v2-cta:focus-visible { outline: 3px solid var(--e-ink); outline-offset: 3px; }
.v2-cta:active { transform: translateY(1px); box-shadow: 0 4px 12px rgba(244,86,42,.22); }
.v2-cta[disabled] { background: var(--e-muted); box-shadow: none; cursor: not-allowed; }

.v2-cta-note { margin-top: 16px; font-size: 15px; color: var(--e-muted); }

/* ---------- общая типографика секций --------------------------- */

.v2-h {
	font-size: clamp(38px, 3.6vw, 56px);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -.035em;
	color: var(--e-ink);
}

.v2-h em { font-style: normal; color: var(--e-accent); }

.v2-lead {
	margin-top: 44px;
	font-size: 19px;
	line-height: 1.6;
	color: var(--e-body);
	max-width: 27em;
}

/* ---------- 1. Первый экран ------------------------------------ */

.v2-hero { position: relative; padding-bottom: 0; }

/* Секция во всю ширину окна: фотография упирается в правый край экрана,
   а текст стоит на той же линии, что и содержимое остальных секций. */
.v2-hero-in {
	display: grid;
	grid-template-columns: minmax(430px, 52%) 1fr;
	align-items: stretch;
	gap: 24px;
	min-height: 700px;
	max-width: none;
	padding-right: 0;
	padding-left: max(var(--e-pad), (100% - var(--e-max)) / 2 + var(--e-pad));
}

.v2-hero-copy { position: relative; z-index: 5; padding: 30px 0 70px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.v2-hero-copy .v2-cta { margin-top: 44px; }

.v2-hero-photo {
	position: relative;
	align-self: stretch;
	min-height: 700px;
}

.v2-hero-photo picture,
.v2-hero-photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.v2-hero-photo img { object-fit: cover; object-position: 30% 50%; }

/* Фотография уходит под текст мягким градиентом, как в макете */
.v2-hero-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--e-bg) 0%, rgba(250,244,240,.75) 16%, rgba(250,244,240,0) 46%);
	pointer-events: none;
}

/* Карточка собеседника поверх фотографии */
.v2-callcard {
	position: absolute;
	right: 6%;
	top: 42%;
	width: 172px;
	border-radius: var(--e-r);
	overflow: hidden;
	box-shadow: var(--e-shadow-lg);
	z-index: 6;
	background: #2b2b2f;
	aspect-ratio: 4 / 3;
}

.v2-callcard img { width: 100%; height: 100%; object-fit: cover; }

.v2-callcard::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: var(--e-r);
}

/* Курсор-искра Элли */
.v2-spark {
	position: absolute;
	z-index: 7;
	width: 96px;
	height: 96px;
	display: grid;
	place-items: center;
	pointer-events: none;
}

.v2-spark::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px dashed rgba(244,86,42,.55);
	border-radius: 50%;
}

.v2-spark svg { width: 34px; height: 34px; color: var(--e-accent); }

.v2-spark-cursor {
	position: absolute;
	right: 18px;
	bottom: 16px;
	width: 20px;
	height: 20px;
	color: var(--e-ink);
}

.v2-hero .v2-spark { right: 20%; top: 46%; }

/* ---------- 2. После урока ------------------------------------- */

.v2-report { padding: 96px 0 104px; background: var(--e-bg); }

.v2-report-in {
	display: grid;
	grid-template-columns: minmax(340px, 1.05fr) minmax(180px, .48fr) minmax(415px, 1.1fr) 160px;
	gap: 36px;
	align-items: start;
}

.v2-report-left { padding-top: 40px; }
.v2-report .v2-h { font-size: clamp(34px, 3.1vw, 50px); }
.v2-report .v2-lead { margin-top: 30px; }

.v2-report-photo {
	margin-top: 46px;
	position: relative;
	border-radius: var(--e-r);
	overflow: hidden;
	box-shadow: var(--e-shadow);
	max-width: 430px;
}

.v2-report-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Маленькое окно собеседника в углу, как в макете */
.v2-report-photo .v2-callcard {
	position: absolute;
	right: 12px;
	top: 12px;
	width: 74px;
	box-shadow: 0 6px 18px rgba(0,0,0,.3);
}

.v2-report-photo-close {
	position: absolute;
	left: 12px;
	top: 12px;
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: rgba(20,20,24,.45);
	color: #fff;
	font-size: 13px;
}

/* Хронология */
.v2-timeline { position: relative; padding-left: 26px; margin-top: 150px; }

.v2-timeline::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: var(--e-accent);
	opacity: .55;
}

.v2-tl-item { position: relative; padding-bottom: 34px; }
.v2-tl-item:last-child { padding-bottom: 0; }

.v2-tl-item::before {
	content: "";
	position: absolute;
	left: -26px;
	top: 5px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--e-bg);
	border: 1.5px solid var(--e-accent);
}

.v2-tl-time { font-size: 15px; color: var(--e-muted); }
.v2-tl-what { font-size: 19px; color: var(--e-ink); margin-top: 2px; }

/* Карточка черновика отчёта */
.v2-card {
	background: var(--e-surface);
	border: 1px solid var(--e-line-soft);
	border-radius: var(--e-r-lg);
	box-shadow: var(--e-shadow-lg);
	padding: 32px 34px;
}

.v2-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.v2-card-title { font-size: 25px; font-weight: 700; color: var(--e-ink); letter-spacing: -.02em; }

.v2-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 13px;
	border-radius: 999px;
	background: var(--e-warn-soft);
	color: var(--e-warn);
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}

.v2-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--e-warn); }
.v2-badge--accent { background: var(--e-accent-soft); color: var(--e-accent-dark); }
.v2-badge--good { background: var(--e-good-soft); color: var(--e-good); }

.v2-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--e-line-soft);
}

.v2-meta dt { font-size: 13px; color: var(--e-muted); margin-bottom: 3px; }
.v2-meta dd { margin: 0; font-size: 15px; color: var(--e-ink); font-weight: 500; white-space: nowrap; }

.v2-block { padding: 18px 0 0; }
.v2-block h4 { margin: 0 0 7px; font-size: 14px; font-weight: 600; color: var(--e-ink); }
.v2-block p { font-size: 14px; line-height: 1.6; color: var(--e-body); }

.v2-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 14px;
	color: var(--e-body);
	padding: 3px 0;
}

.v2-list svg { flex: none; width: 15px; height: 15px; margin-top: 3px; color: var(--e-good); }

.v2-list--todo li::before {
	content: "";
	flex: none;
	width: 9px;
	height: 9px;
	margin-top: 6px;
	border-radius: 50%;
	background: #cfd9e2;
}

.v2-card-foot {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 24px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--e-line-soft);
}

.v2-card-foot h4 { margin: 0 0 8px; font-size: 14px; font-weight: 600; color: var(--e-ink); }
.v2-card-foot p { font-size: 14px; color: var(--e-body); }

.v2-balance { font-size: 34px; font-weight: 600; color: var(--e-ink); letter-spacing: -.02em; line-height: 1.1; }
.v2-balance + p { margin-top: 4px; font-size: 13px; color: var(--e-muted); }

/* Подпись от руки */
.v2-hand {
	font-family: 'Segoe Script', 'Bradley Hand', cursive;
	color: var(--e-accent);
	font-size: 17px;
	line-height: 1.5;
	transform: rotate(-4deg);
}

.v2-report .v2-spark { position: relative; margin: 0 auto 6px; }

.v2-report-aside {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 210px;
}

.v2-privacy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 46px;
	font-size: 15px;
	color: var(--e-muted);
}

.v2-privacy svg { width: 17px; height: 17px; }

/* ---------- 3. Дашборд ----------------------------------------- */

.v2-dash { padding: 20px 0 110px; background: var(--e-bg); }

.v2-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 46px;
	justify-content: center;
	padding: 0 0 54px;
}

.v2-metric { display: flex; align-items: center; gap: 13px; font-size: 15px; color: var(--e-ink); }

.v2-metric span {
	width: 42px;
	height: 42px;
	flex: none;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: var(--e-bg-soft);
	color: var(--e-ink);
}

.v2-metric span svg { width: 19px; height: 19px; }
.v2-metric--hl span { background: var(--e-accent-soft); color: var(--e-accent); }

.v2-dash-in { display: grid; grid-template-columns: minmax(330px, 30%) 1fr; gap: 40px; align-items: center; }

.v2-dash-copy .v2-lead { max-width: 24em; }
.v2-dash-copy .v2-lead + .v2-lead { margin-top: 22px; }

.v2-dash-hint { margin-top: 66px; display: flex; align-items: flex-start; gap: 14px; }
.v2-dash-hint .v2-spark { position: relative; flex: none; }

/* Панель приложения */
.v2-panel {
	background: var(--e-surface);
	border: 1px solid var(--e-line-soft);
	border-radius: var(--e-r-lg);
	box-shadow: var(--e-shadow-lg);
	padding: 30px 32px 34px;
}

.v2-panel-hi { font-size: 25px; font-weight: 600; color: var(--e-ink); letter-spacing: -.02em; }
.v2-panel-sub { font-size: 14px; color: var(--e-muted); margin-top: 3px; margin-bottom: 24px; }

.v2-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.v2-tile {
	background: var(--e-surface);
	border: 1px solid var(--e-line);
	border-radius: var(--e-r);
	padding: 18px 20px 20px;
	min-width: 0;
}

.v2-tile-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 16px;
}

.v2-tile-title { font-size: 15px; font-weight: 600; color: var(--e-ink); }

.v2 .v2-tile-more {
	font-size: 13px;
	color: var(--e-muted);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

.v2-tile-more:hover { color: var(--e-accent); }

/* Список уроков и учеников */
.v2-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; }
.v2-row + .v2-row { border-top: 1px solid var(--e-line-soft); }

.v2-ava {
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: 50%;
	overflow: hidden;
	background: var(--e-bg-soft);
}

.v2-ava img { width: 100%; height: 100%; object-fit: cover; }
.v2-row-main { min-width: 0; flex: 1; }
.v2-row-time { font-size: 12px; color: var(--e-muted); }
.v2-row-name { font-size: 14px; color: var(--e-ink); }

.v2-state {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--e-good);
	margin-top: 1px;
}

.v2-state i { width: 6px; height: 6px; border-radius: 50%; background: var(--e-good); }
.v2-state--warn { color: var(--e-accent); }
.v2-state--warn i { background: var(--e-accent); }

.v2-add {
	width: 100%;
	margin-top: 12px;
	padding: 10px;
	border: 0;
	border-radius: var(--e-r-sm);
	background: var(--e-bg-soft);
	color: var(--e-body);
	font-size: 13px;
	font-family: inherit;
	cursor: pointer;
	transition: background .15s ease;
}

.v2-add:hover { background: var(--e-line-soft); }
.v2-add:focus-visible { outline: 2px solid var(--e-accent); outline-offset: 2px; }

/* Календарь */
.v2-cal-month { font-size: 14px; color: var(--e-ink); font-weight: 500; margin-bottom: 12px; }

.v2-cal {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	text-align: center;
}

.v2-cal-dow { font-size: 11px; color: var(--e-muted); padding-bottom: 6px; }

.v2-cal-day {
	position: relative;
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	font-size: 13px;
	color: var(--e-ink);
	border-radius: 50%;
}

.v2-cal-day.is-out { color: #c9d2da; }
.v2-cal-day.is-today { background: var(--e-good); color: #fff; font-weight: 600; }

.v2-cal-day.has-dot::after {
	content: "";
	position: absolute;
	top: 3px;
	right: calc(50% - 2px);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--e-good);
}

.v2-cal-legend {
	display: flex;
	gap: 18px;
	margin-top: 14px;
	font-size: 12px;
	color: var(--e-muted);
	flex-wrap: wrap;
}

.v2-cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.v2-cal-legend i { width: 7px; height: 7px; border-radius: 50%; background: var(--e-good); }
.v2-cal-legend i.is-free { background: #d8e0e6; }

/* Ученики */
.v2-pct { text-align: right; flex: none; width: 96px; }
.v2-pct b { font-size: 13px; font-weight: 500; color: var(--e-ink); }

.v2-bar {
	height: 4px;
	margin-top: 5px;
	border-radius: 2px;
	background: var(--e-line);
	overflow: hidden;
}

.v2-bar i { display: block; height: 100%; background: var(--e-good); border-radius: 2px; }
.v2-active { font-size: 11px; color: var(--e-good); flex: none; }

/* Оплаты, прогресс, отчёты */
.v2-kv { font-size: 13px; color: var(--e-muted); }
.v2-kv b { display: block; margin-top: 4px; font-size: 17px; font-weight: 600; color: var(--e-ink); }

.v2-ok { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13px; color: var(--e-good); }
.v2-ok svg { width: 15px; height: 15px; }

.v2-big { font-size: 34px; font-weight: 600; color: var(--e-ink); letter-spacing: -.02em; line-height: 1.1; }
.v2-delta { font-size: 12px; color: var(--e-muted); margin-top: 4px; }

.v2-spark-chart { margin-top: 10px; width: 100%; height: 58px; }
.v2-spark-chart svg { width: 100%; height: 100%; overflow: visible; }

.v2-reports li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	font-size: 13px;
	color: var(--e-ink);
}

.v2-reports li + li { border-top: 1px solid var(--e-line-soft); }
.v2-reports span { color: var(--e-muted); font-size: 12px; flex: none; }

.v2 .v2-tile-foot {
	display: block;
	margin-top: 14px;
	text-align: center;
	font-size: 13px;
	color: var(--e-body);
}

.v2-tile-foot:hover { color: var(--e-accent); }

/* ---------- 4. Вечер ------------------------------------------- */

.v2-night {
	position: relative;
	background: var(--e-night);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.v2-night-photo { position: absolute; inset: 0; z-index: -2; }
.v2-night-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 50%; }

.v2-night::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, var(--e-night-2) 0%, rgba(15,26,33,.92) 28%, rgba(15,26,33,.35) 52%, rgba(15,26,33,.05) 72%);
}

.v2-night .v2-header { padding-top: 30px; }

.v2-night-in { padding: 40px 0 96px; max-width: 620px; }

.v2-night .v2-h { color: #fff; }
.v2-night .v2-h em { color: var(--e-accent); }
.v2-night .v2-lead { color: rgba(255,255,255,.78); max-width: 24em; }
.v2-night .v2-cta { margin-top: 42px; }
.v2-night .v2-cta-note { color: rgba(255,255,255,.6); }

.v2-status { margin-top: 54px; display: grid; gap: 18px; }
.v2-status li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: rgba(255,255,255,.86); }

.v2-status span {
	width: 34px;
	height: 34px;
	flex: none;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: rgba(255,255,255,.08);
	color: #fff;
}

.v2-status svg { width: 16px; height: 16px; }

/* ---------- подвал --------------------------------------------- */

.v2-foot {
	background: var(--e-night-2);
	color: rgba(255,255,255,.55);
	padding: 34px 0;
	font-size: 14px;
}

.v2-foot-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.v2-foot a:hover { color: #fff; }
.v2-foot nav { display: flex; gap: 26px; flex-wrap: wrap; }

/* ---------- адаптив -------------------------------------------- */

@media (max-width: 1200px) {
	.v2 { --e-pad: 40px; }
	.v2-hero-in { grid-template-columns: minmax(340px, 50%) 1fr; min-height: 560px; }
	.v2-hero-photo { min-height: 560px; }
	.v2-report-in { grid-template-columns: minmax(240px,.8fr) minmax(160px,.45fr) minmax(360px,1.2fr); gap: 26px; }
	.v2-dash-in { grid-template-columns: minmax(280px, 32%) 1fr; gap: 32px; }
	.v2-grid { gap: 14px; }
	.v2-report-aside { display: none; }
}

@media (max-width: 1024px) {
	.v2-nav { gap: 28px; }
	.v2-grid { grid-template-columns: repeat(2, 1fr); }
	.v2-metrics { gap: 26px; }
	.v2-dash-in { grid-template-columns: 1fr; }
	.v2-dash-hint { margin-top: 30px; }
}

@media (max-width: 860px) {
	.v2 { --e-pad: 24px; }

	/* Первый экран: текст и кнопка сверху, фотография ниже */
	.v2-hero-in { grid-template-columns: 1fr; min-height: 0; gap: 0; }
	.v2-hero-copy { padding: 20px 0 34px; }
	.v2-hero-photo { position: relative; min-height: 0; aspect-ratio: 4 / 3.4; border-radius: var(--e-r-lg); overflow: hidden; }
	.v2-hero-photo picture, .v2-hero-photo img { position: absolute; }
	.v2-hero-photo::after { background: linear-gradient(180deg, rgba(250,244,240,.5) 0%, rgba(250,244,240,0) 30%); }
	.v2-hero .v2-spark { right: 8%; top: 34%; }
	.v2-callcard { width: 128px; right: 5%; top: 12%; }

	.v2-report { padding: 62px 0 68px; }
	.v2-report-in { grid-template-columns: 1fr; gap: 34px; }
	.v2-timeline { margin-top: 0; }
	.v2-report-left { padding-top: 0; }
	.v2-report-photo { max-width: none; margin-top: 30px; }
	.v2-timeline { margin-top: 34px; }

	.v2-dash { padding: 0 0 70px; }
	.v2-metrics { gap: 16px 24px; justify-content: flex-start; padding-bottom: 34px; }
	.v2-metric { font-size: 14px; }
	.v2-grid { grid-template-columns: 1fr; }
	.v2-panel { padding: 22px 20px 26px; }

	.v2-night-in { padding: 26px 0 64px; }
	.v2-night::before { background: linear-gradient(180deg, rgba(15,26,33,.94) 0%, rgba(15,26,33,.86) 46%, rgba(15,26,33,.72) 100%); }
	.v2-night-photo img { object-position: 60% 40%; }
}

@media (max-width: 620px) {
	.v2-nav { display: none; }
	.v2-header-in { gap: 16px; }
	.v2-logo { font-size: 25px; }
	.v2-login { padding: 9px 16px; font-size: 14px; }
	.v2-cta { width: 100%; padding: 17px 24px; font-size: 17px; }
	.v2-h { font-size: clamp(31px, 8.6vw, 40px); }
	.v2-lead { font-size: 17px; margin-top: 20px; }
	.v2-card { padding: 22px 18px; border-radius: var(--e-r); }
	.v2-card-title { font-size: 21px; }
	.v2-meta { grid-template-columns: 1fr 1fr; gap: 14px; }
	.v2-card-foot { grid-template-columns: 1fr; gap: 18px; }
	.v2-status { gap: 14px; }
	.v2-foot-in { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* Уважение к настройке «меньше движения» */
@media (prefers-reduced-motion: reduce) {
	.v2 *, .v2 *::before, .v2 *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}

/* ==================================================================
   Секции 2.1 — рабочий день · контроль · быстрый старт · вопросы
   Добавлены поверх утверждённых story-секций, их не меняя.
================================================================== */

/* ---------- 04. Весь рабочий день ------------------------------ */

.v2-eyebrow {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--e-accent);
	margin-bottom: 18px;
}

.v2-workday { padding: 100px 0; background: var(--e-bg); }

.v2-workday-in {
	display: grid;
	grid-template-columns: minmax(300px, 30%) 1fr;
	gap: 56px;
	align-items: center;
}

/* Макет приложения: тёмная боковая колонка и рабочая область */
.v2-app {
	display: grid;
	grid-template-columns: 200px 1fr;
	background: var(--e-surface);
	border: 1px solid var(--e-line);
	border-radius: var(--e-r-lg);
	box-shadow: var(--e-shadow-lg);
	overflow: hidden;
	min-width: 0;
}

.v2-app-side {
	background: var(--e-ink);
	color: #fff;
	padding: 26px 18px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.v2-app-brand { font-size: 22px; font-weight: 700; margin-bottom: 26px; letter-spacing: -.02em; }

.v2-app-nav {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 11px 13px;
	border-radius: var(--e-r-sm);
	font-size: 14px;
	color: rgba(255,255,255,.68);
}

.v2-app-nav svg { width: 17px; height: 17px; flex: none; }
.v2-app-nav.is-active { background: rgba(255,255,255,.1); color: #fff; }

.v2-app-me { margin-top: auto; display: flex; align-items: center; gap: 10px; padding-top: 20px; }
.v2-app-me img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex: none; }
.v2-app-me b { display: block; font-size: 14px; font-weight: 500; color: #fff; }
.v2-app-me span { font-size: 12px; color: rgba(255,255,255,.55); }

.v2-app-body { padding: 26px 28px 30px; min-width: 0; }

.v2-app-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.v2-app-top h3 { font-size: 25px; font-weight: 600; color: var(--e-ink); letter-spacing: -.02em; }

.v2 .v2-app-new {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	border: 0;
	border-radius: var(--e-r-sm);
	background: var(--e-ink);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
}

.v2 .v2-app-new:hover { background: var(--e-ink-2); }

.v2-app-grid { display: grid; grid-template-columns: 1.15fr 1fr .9fr; gap: 16px; align-items: start; }
.v2-app-col { display: grid; gap: 16px; min-width: 0; }

.v2-mini {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--e-line-soft);
	font-size: 14px;
	color: var(--e-ink);
}

.v2-mini:last-of-type { border-bottom: 0; }
.v2-mini-l { display: flex; align-items: center; gap: 10px; min-width: 0; }
.v2-mini-l img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: none; }
.v2-mini-t { font-size: 12px; color: var(--e-muted); }
.v2-mini b { font-weight: 600; }

.v2-chip {
	flex: none;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--e-good-soft);
	color: var(--e-good);
	font-size: 11px;
	white-space: nowrap;
}

.v2-chip--wait { background: var(--e-warn-soft); color: var(--e-warn); }
.v2-chip--off  { background: var(--e-bg-soft); color: var(--e-body); }

.v2-more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 500;
	color: var(--e-accent);
}

.v2-more svg { width: 13px; height: 13px; }
.v2-more:hover { color: var(--e-accent-dark); }

/* ---------- 05. Проверка человеком ----------------------------- */

.v2-control { padding: 0 0 104px; background: var(--e-bg); }

.v2-control-in {
	display: grid;
	grid-template-columns: minmax(300px, 31%) 1fr;
	gap: 52px;
	align-items: center;
}

.v2-trustline {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 26px;
	font-size: 15px;
	font-weight: 500;
	color: var(--e-good);
}

.v2-trustline svg { width: 17px; height: 17px; flex: none; }

.v2-control-photo {
	margin-top: 28px;
	border-radius: var(--e-r-lg);
	overflow: hidden;
	max-height: 240px;
}

.v2-control-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }

/* Редактор черновика */
.v2-editor {
	background: var(--e-surface);
	border: 1px solid var(--e-line);
	border-radius: var(--e-r-lg);
	box-shadow: var(--e-shadow-lg);
	overflow: hidden;
	min-width: 0;
}

.v2-editor-head {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 18px 24px;
	border-bottom: 1px solid var(--e-line-soft);
}

.v2-editor-head b { margin-right: auto; font-size: 16px; font-weight: 600; color: var(--e-ink); display: flex; align-items: center; gap: 10px; }
.v2-editor-head b svg { width: 16px; height: 16px; color: var(--e-muted); }

.v2-editor-tools {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 13px 24px;
	border-bottom: 1px solid var(--e-line-soft);
	color: var(--e-muted);
	font-size: 14px;
}

.v2-editor-tools span { font-weight: 600; }
.v2-editor-tools i { font-style: italic; }

.v2-editor-body { display: grid; grid-template-columns: 1fr 290px; }
.v2-doc { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 26px 28px; }
.v2-doc h4 { font-size: 15px; font-weight: 600; color: var(--e-ink); margin-bottom: 9px; }
.v2-doc h4 + ul { margin-bottom: 22px; }
.v2-doc li { font-size: 14px; line-height: 1.75; color: var(--e-body); padding-left: 15px; position: relative; }
.v2-doc li::before { content: "•"; position: absolute; left: 0; color: var(--e-muted); }
.v2-doc p { font-size: 14px; line-height: 1.7; color: var(--e-body); }

.v2-notes { border-left: 1px solid var(--e-line-soft); padding: 26px 24px; display: flex; flex-direction: column; }
.v2-notes h4 { font-size: 15px; font-weight: 600; color: var(--e-ink); margin-bottom: 12px; }

.v2-notes-text {
	border: 1px solid var(--e-line);
	border-radius: var(--e-r-sm);
	background: var(--e-bg);
	padding: 14px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--e-body);
	min-height: 130px;
}

.v2-saved { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 12px; color: var(--e-muted); }
.v2-saved svg { width: 14px; height: 14px; }

.v2-editor-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 18px 24px;
	border-top: 1px solid var(--e-line-soft);
	background: var(--e-bg);
}

.v2-editor-foot p { font-size: 13px; color: var(--e-muted); }

.v2 .v2-send {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 24px;
	border: 0;
	border-radius: var(--e-r-sm);
	background: var(--e-accent);
	color: #fff;
	font: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s ease;
}

.v2 .v2-send:hover { background: var(--e-accent-dark); }
.v2-send:focus-visible { outline: 3px solid var(--e-ink); outline-offset: 3px; }
.v2-send svg { width: 16px; height: 16px; }

/* ---------- 06. Быстрый старт ---------------------------------- */

.v2-start { padding: 96px 0 104px; background: var(--e-bg-soft); text-align: center; position: relative; }
.v2-start .v2-h { max-width: 18em; margin: 0 auto; }
.v2-start .v2-lead { margin: 20px auto 0; max-width: 34em; text-align: center; }

.v2-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 260px));
	justify-content: center;
	gap: 72px;
	margin-top: 56px;
}

.v2-step { position: relative; }

.v2-step-ico {
	width: 118px;
	height: 118px;
	margin: 0 auto 18px;
	border: 1px solid var(--e-line);
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--e-surface);
}

.v2-step-ico svg { width: 44px; height: 44px; color: var(--e-ink); }

.v2-step-num {
	position: absolute;
	top: -6px;
	left: calc(50% - 88px);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #f4e5cc;
	color: var(--e-ink);
	display: grid;
	place-items: center;
	font-size: 17px;
	font-weight: 700;
}

.v2-step h3 { font-size: 17px; font-weight: 500; color: var(--e-ink); }

.v2-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 58px;
	right: -50px;
	width: 28px;
	height: 10px;
	background: no-repeat center/contain url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 10' fill='none' stroke='%23bbae9d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M0 5h22m-4-4 4 4-4 4'/%3E%3C/svg%3E");
}

.v2-start-cta { margin-top: 48px; }
.v2-start .v2-cta-note { margin-top: 14px; }

/* ---------- 07. Вопросы и подвал ------------------------------- */

.v2-faq { padding: 96px 0 104px; background: var(--e-bg); }

.v2-faq-in {
	display: grid;
	grid-template-columns: minmax(280px, 32%) 1fr;
	gap: 72px;
	align-items: start;
}

.v2-faq-list { display: grid; gap: 14px; }

.v2-faq-item {
	border: 1px solid var(--e-line);
	border-radius: var(--e-r);
	background: var(--e-surface);
	overflow: hidden;
}

.v2 .v2-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 21px 26px;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 17px;
	color: var(--e-ink);
	text-align: left;
	cursor: pointer;
}

.v2 .v2-faq-q:hover { background: var(--e-bg); }
.v2-faq-q:focus-visible { outline: 2px solid var(--e-accent); outline-offset: -2px; }
.v2-faq-q svg { width: 18px; height: 18px; flex: none; color: var(--e-muted); transition: transform .2s ease; }
.v2-faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }

.v2-faq-a { padding: 0 26px 22px; font-size: 16px; line-height: 1.55; color: var(--e-body); }
.v2-faq-a[hidden] { display: none; }

/* ---------- адаптив новых секций ------------------------------- */

@media (max-width: 1200px) {
	.v2-workday-in,
	.v2-control-in { grid-template-columns: minmax(260px, 34%) 1fr; gap: 34px; }
	.v2-app { grid-template-columns: 170px 1fr; }
	.v2-app-grid { grid-template-columns: 1fr 1fr; }
	.v2-editor-body { grid-template-columns: 1fr 240px; }
	.v2-faq-in { gap: 40px; }
}

@media (max-width: 1024px) {
	.v2-workday-in,
	.v2-control-in,
	.v2-faq-in { grid-template-columns: 1fr; }
	.v2-workday { padding: 70px 0; }
	.v2-steps { gap: 44px; }
	.v2-step:not(:last-child)::after { right: -36px; }
}

@media (max-width: 860px) {
	/* Приложение: боковая колонка становится строкой над содержимым */
	.v2-app { grid-template-columns: 1fr; }
	.v2-app-side { flex-direction: row; align-items: center; gap: 8px; overflow-x: auto; padding: 14px 16px; }
	.v2-app-brand { margin: 0 10px 0 0; font-size: 19px; }
	.v2-app-nav { padding: 8px 11px; white-space: nowrap; font-size: 13px; }
	.v2-app-me { margin: 0 0 0 auto; padding: 0; }
	.v2-app-me div { display: none; }
	.v2-app-grid { grid-template-columns: 1fr; }
	.v2-app-body { padding: 20px 18px 24px; }
	.v2-app-top h3 { font-size: 21px; }

	/* Редактор: статусы, документ, заметки — одной колонкой */
	.v2-editor-body { grid-template-columns: 1fr; }
	.v2-doc { grid-template-columns: 1fr; gap: 4px; padding: 20px 18px; }
	.v2-notes { border-left: 0; border-top: 1px solid var(--e-line-soft); padding: 20px 18px; }
	.v2-editor-head { padding: 16px 18px; }
	.v2-editor-head b { width: 100%; margin: 0 0 4px; }
	.v2-control { padding-bottom: 70px; }
	.v2-control-photo { max-height: 200px; }

	/* Три шага — вертикальной последовательностью */
	.v2-start { padding: 70px 0 78px; }
	.v2-steps { grid-template-columns: 1fr; gap: 34px; max-width: 320px; margin-left: auto; margin-right: auto; }
	.v2-step:not(:last-child)::after { display: none; }
	.v2-step-num { left: calc(50% - 84px); }

	.v2-faq { padding: 70px 0 78px; }
	.v2-faq-in { gap: 28px; }
}

@media (max-width: 620px) {
	.v2 .v2-faq-q { padding: 17px 18px; font-size: 16px; }
	.v2-faq-a { padding: 0 18px 18px; font-size: 15px; }
	.v2-editor-foot { flex-direction: column; align-items: stretch; }
	.v2 .v2-send { justify-content: center; }
	.v2-step-ico { width: 96px; height: 96px; }
	.v2-step-ico svg { width: 36px; height: 36px; }
	.v2-step-num { left: calc(50% - 72px); width: 36px; height: 36px; font-size: 15px; }
}

/* --- правки после первого просмотра 2.1 ------------------------ */

/* Иконки внутри кнопок и строк должны иметь свой размер: без него SVG
   разворачивается на всю доступную ширину. */
.v2-app-new svg,
.v2-send svg,
.v2-more svg,
.v2-trustline svg,
.v2-saved svg { width: 16px; height: 16px; flex: none; }

.v2-app-new svg { width: 15px; height: 15px; }
.v2-more svg { width: 13px; height: 13px; }

/* Аватары и полосы прогресса в макете приложения */
.v2-app .v2-mini-l img,
.v2-app-me img { width: 32px; height: 32px; flex: none; }

.v2-app .v2-mini { gap: 12px; }
.v2-app .v2-mini-l { flex: 1; min-width: 0; }
.v2-app .v2-mini-l > span { min-width: 0; }

.v2-app .v2-pct { width: 96px; flex: none; }
.v2-app .v2-pct .v2-bar { width: 100%; margin: 0; }
.v2-app .v2-mini > b { flex: none; min-width: 40px; text-align: right; font-size: 13px; }

/* Строки «Али — 12 мая» не должны переноситься по слову */
.v2-app-col .v2-mini > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-app-col .v2-tile-title { white-space: nowrap; }

/* Заголовок секции — в две строки, как в макете */
.v2-workday .v2-h,
.v2-control .v2-h { font-size: clamp(34px, 3.2vw, 50px); }
.v2-workday-in { grid-template-columns: minmax(340px, 33%) 1fr; }

/* Аватары и полосы в макете приложения схлопывались во flex-строке —
   фиксируем размер жёстко, а не через flex:none. */
.v2-app .v2-mini-l img { flex: 0 0 32px; width: 32px; height: 32px; min-width: 32px; border-radius: 50%; object-fit: cover; }
.v2-app-me img { flex: 0 0 36px; width: 36px; height: 36px; min-width: 36px; }

.v2-app .v2-pct { display: block; flex: 0 0 96px; width: 96px; min-width: 96px; }
.v2-app .v2-pct .v2-bar { display: block; width: 100%; height: 6px; margin: 0; border-radius: 3px; background: var(--e-line); overflow: hidden; }
.v2-app .v2-pct .v2-bar i { display: block; height: 100%; background: var(--e-good); }

/* Имя ученика не должно уступать место плашке статуса */
.v2-app .v2-mini-l > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.v2-app .v2-chip { font-size: 10px; padding: 4px 8px; }
.v2-app-col .v2-mini { gap: 8px; }
.v2-app-col .v2-mini > span:first-child { flex: 1; min-width: 0; }

/* Карточкам приложения тесно: даём макету больше ширины, а полосе и
   плашкам — меньше. Иначе имя ученика сжимается до одной буквы. */
.v2-workday-in { grid-template-columns: minmax(280px, 26%) 1fr; gap: 44px; }

.v2-app-grid { grid-template-columns: 1.05fr 1.15fr .8fr; gap: 14px; }
.v2-app-body { padding: 24px 24px 26px; }
.v2-tile { padding: 16px 16px 18px; }

.v2-app .v2-mini { gap: 10px; font-size: 13px; }
.v2-app .v2-mini-l { gap: 9px; }
.v2-app .v2-mini-l img { flex: 0 0 30px; width: 30px; height: 30px; min-width: 30px; }
.v2-app .v2-mini-l > span { flex: 1; }

.v2-app .v2-pct { flex: 0 0 58px; width: 58px; min-width: 58px; }
.v2-app .v2-mini > b { min-width: 34px; font-size: 12px; }
.v2-app .v2-chip { font-size: 10px; padding: 4px 7px; }
.v2-app .v2-tile-title { font-size: 14px; }
.v2-app .v2-more { font-size: 12px; margin-top: 12px; }

/* В «Черновиках» имя с датой не должно съедаться плашкой */
.v2-app-col .v2-tile:last-child .v2-mini { font-size: 12px; }
.v2-app-col .v2-chip { font-size: 9px; padding: 3px 6px; }
.v2-app-grid { grid-template-columns: 1fr 1.1fr .85fr; }

/* ---------- публичные страницы на языке лендинга 2.1 (для школ, политика) ---------- */

.v2-header--solid { position: static; background: var(--v2-paper, #f7f2e9); border-bottom: 1px solid rgba(9, 38, 43, .1); }

.v2-pg-in { max-width: 900px; }

.v2-pg-hero { padding: 56px 0 40px; }
.v2-pg-hero .v2-h { margin: 12px 0 16px; }

.v2-pg-lead { font-size: 19px; line-height: 1.6; color: rgba(9, 38, 43, .78); margin: 0 0 24px; max-width: 62ch; }

.v2-pg-sec { padding: 40px 0; }
.v2-pg-sec--tint { background: rgba(69, 132, 109, .07); }

.v2-pg-h2 { font-size: 28px; line-height: 1.25; letter-spacing: -.02em; margin: 0 0 8px; }
.v2-pg-sub { font-size: 16px; line-height: 1.6; color: rgba(9, 38, 43, .7); margin: 0 0 24px; max-width: 62ch; }

.v2-pg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.v2-pg-two  { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

.v2-pg-grid .v2-card p,
.v2-pg-two .v2-card p { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: rgba(9, 38, 43, .75); }

.v2-pg-list { margin: 10px 0 0; padding-left: 18px; display: grid; gap: 8px; font-size: 15px; line-height: 1.55; color: rgba(9, 38, 43, .8); }

.v2-pg-steps { margin-top: 8px; }

.v2-pg-cta { text-align: center; }
.v2-pg-cta .v2-pg-sub { margin-left: auto; margin-right: auto; }

/* Документ: политика конфиденциальности и подобные тексты */
.v2-pg-h { font-size: 32px; line-height: 1.2; letter-spacing: -.02em; margin: 0 0 8px; }
.v2-pg-body { padding: 48px 0 72px; }
.v2-pg-text { font-size: 15px; line-height: 1.7; color: rgba(9, 38, 43, .82); }
.v2-pg-text p { margin: 0 0 14px; }
.v2-pg-text strong { color: var(--v2-ink, #09262b); }

@media (max-width: 767px) {
	.v2-pg-hero { padding: 32px 0 24px; }
	.v2-pg-h2 { font-size: 23px; }
	.v2-pg-h  { font-size: 26px; }
	.v2-pg-lead { font-size: 17px; }
}

.v2-pg-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 16px;
	margin-top: 8px;
	counter-reset: pgstep;
}

.v2-pg-steps .v2-step {
	background: var(--e-surface, #fffdfa);
	border: 1px solid var(--e-line-soft, #ece6dc);
	border-radius: var(--e-r, 14px);
	padding: 18px;
	display: grid;
	gap: 6px;
	align-content: start;
}

.v2-pg-steps .v2-step-num {
	width: 28px; height: 28px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px;
	background: var(--e-accent-soft, #fde7e0);
	color: var(--e-accent-dark, #d43f1d);
	font-weight: 700; font-size: 14px;
}

.v2-pg-steps .v2-step b { color: var(--e-ink, #09262b); font-size: 16px; }
.v2-pg-steps .v2-step span:not(.v2-step-num) { font-size: 14px; line-height: 1.6; }
.v2-pg-steps .v2-step::after { display: none; }
/* ---------- планшет: убираем тесные колонки и перегруженную шапку ----------

   Раньше первый экран оставался двухколоночным до 860 px: на 861 колонки
   сжимались примерно до 400 px и текст с фотографией выглядели стиснутыми,
   а на 860 раскладка резко «прыгала» в одну колонку. Переносим этот переход
   туда, где колонки ещё широкие. */

@media (max-width: 1024px) {
	.v2 { --e-pad: 32px; }

	.v2-hero-in { grid-template-columns: 1fr; min-height: 0; gap: 0; }
	.v2-hero-copy { padding: 20px 0 34px; }
	.v2-hero-photo {
		position: relative;
		min-height: 0;
		aspect-ratio: 16 / 9;
		border-radius: var(--e-r-lg);
		overflow: hidden;
	}
	.v2-hero-photo picture,
	.v2-hero-photo img { position: absolute; }

	.v2-report-in { grid-template-columns: 1fr; gap: 34px; }
	.v2-report-left { padding-top: 0; }
	.v2-report-photo { max-width: none; margin-top: 30px; }

	/* Шапка: 56 px между пунктами при узком экране съедали место */
	.v2-header { padding: 18px 0; }
	.v2-header-in { gap: 24px; }
	.v2-nav { gap: 20px; font-size: 15px; }
}

@media (max-width: 860px) {
	/* Фотография первого экрана становится вертикальнее только на телефоне */
	.v2-hero-photo { aspect-ratio: 4 / 3.4; }
}

@media (max-width: 767px) {
	/* На планшете в портрете меню уже мешает: оставляем логотип и вход */
	.v2-nav { display: none; }
	.v2-header-in { gap: 16px; justify-content: space-between; }
}

/* Цена «от» в карточке преподавателя на лендинге школы */
.v2-card-price { margin-top: 10px; font-weight: 600; color: var(--e-ink); }
/* Цены преподавателя в карточке на витрине школы */
.v2-card-prices { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.v2-card-prices li { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.v2-card-prices li b { margin-left: auto; white-space: nowrap; }
.v2-card-timer { color: var(--e-muted, #6b7280); font-size: 14px; white-space: nowrap; }