/* =============================================================================
   GloryPixel · single-service · v2 layout
   Активне через ?v=2.
   Тільки компонувальні стилі — використовуємо існуючі токени з styles.css:
   --bg, --surface, --line, --line-2, --text, --muted, --accent, --accent-glow,
   --font-display, --font-mono, --gutter.
   ============================================================================= */

/* --- screen-reader-only --- */
.sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

/* --- BREADCRUMBS --- */
nav.breadcrumbs > ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
nav.breadcrumbs > ol > li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
nav.breadcrumbs > ol > li:not(:last-child)::after {
	content: "/";
	color: var(--line-2);
	opacity: 0.7;
}
nav.breadcrumbs [aria-current="page"] { color: var(--text); }

/* --- ARTICLE WRAP --- */
.sv-article {
	display: block;
}

/* =============================================================================
   HERO (sv-hero)
   ============================================================================= */
.sv-hero {
	padding: 48px var(--gutter) 96px;
	position: relative;
	overflow: hidden;
}
.sv-hero::before {
	content: "";
	position: absolute;
	top: 30%; right: -200px;
	width: 700px; height: 700px;
	background: radial-gradient(circle, var(--accent-glow), transparent 60%);
	transform: translateY(-50%);
	pointer-events: none;
	filter: blur(60px);
	z-index: 0;
}
.sv-hero > * { position: relative; z-index: 1; }

.sv-hero__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 48px;
}
.sv-hero__meta a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px dashed var(--line-2);
	transition: color .3s ease, border-color .3s ease;
}
.sv-hero__meta a:hover {
	color: var(--accent);
	border-bottom-color: var(--accent);
}
.sv-hero__meta-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 12px var(--accent);
}

.sv-hero__title {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(56px, 11vw, 180px);
	line-height: 0.92;
	letter-spacing: -0.03em;
	margin: 0 0 64px;
	color: var(--text);
}
.sv-hero__title-accent {
	font-style: italic;
	color: var(--accent);
	font-weight: 400;
}

.sv-hero__layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: end;
}
.sv-hero__col { display: flex; flex-direction: column; gap: 32px; }
.sv-hero__desc {
	font-size: clamp(17px, 1.4vw, 22px);
	line-height: 1.55;
	max-width: 540px;
	color: #C8C5BE;
	margin: 0;
}
.sv-hero__cta {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 20px 30px;
	background: var(--accent);
	color: var(--bg);
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -0.01em;
	transition: transform .3s ease, box-shadow .3s ease;
	text-decoration: none;
}
.sv-hero__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(0, 224, 138, 0.28);
}

.sv-hero__visual {
	aspect-ratio: 16 / 10;
	border: 1px solid var(--line-2);
	border-radius: 14px;
	margin: 0;
	background:
		radial-gradient(circle at 20% 25%, rgba(0,224,138,0.08), transparent 55%),
		linear-gradient(135deg, var(--surface), var(--bg-2));
	position: relative;
	overflow: hidden;
}
.sv-hero__visual-tag {
	position: absolute;
	top: 20px; left: 20px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	color: var(--muted);
	z-index: 2;
}
.sv-hero__visual-frame {
	position: absolute;
	inset: 56px 30px 30px;
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
}
.sv-hero__visual-frame > .gp-anim {
	width: 100%; height: 100%;
}

/* =============================================================================
   STATBAR
   ============================================================================= */
dl.sv-statbar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin: 0;
}
.sv-statbar__cell {
	padding: 32px var(--gutter);
	border-right: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.sv-statbar__cell:last-child { border-right: 0; }
.sv-statbar__lab {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0;
}
.sv-statbar__v {
	font-family: var(--font-display);
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--accent);
	line-height: 1;
	margin: 0;
}
.sv-statbar__sub {
	display: block;
	margin-top: 6px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.04em;
}

/* =============================================================================
   SECTION SHELL (універсальний для audience/stages/team/why/process/faq/included/pricing/lead)
   ============================================================================= */
.sv-section {
	padding: 96px var(--gutter);
	border-top: 1px solid var(--line);
	max-width: 1440px;
	margin: 0 auto;
}

/* universal head: [80px num | h2 + intro] */
.sv-section__head {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 32px;
	margin-bottom: 64px;
	align-items: start;
}
.sv-section__num {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 0.06em;
	padding-top: 18px;
}
.sv-section__body { min-width: 0; }
.sv-section__title {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(36px, 5vw, 72px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: var(--text);
	margin: 0;
}
.sv-section__title em {
	font-style: italic;
	color: var(--accent);
	font-weight: 400;
}
.sv-section__intro {
	max-width: 640px;
	margin: 18px 0 0;
	color: #C4C0B5;
	font-size: 17px;
	line-height: 1.55;
}

/* =============================================================================
   02 · AUDIENCE — 4-col великих карток
   ============================================================================= */
.sv-audience {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
}
.sv-audience__card {
	background: var(--bg);
	padding: 36px 32px;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
	transition: background .4s ease;
}
.sv-audience__card:hover { background: var(--surface); }

.sv-audience__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px; height: 56px;
	border-radius: 14px;
	border: 1px solid var(--line-2);
	background: var(--surface);
	color: var(--accent);
	/* initial state — невидима, чекає коли batь стане .reveal.in */
	opacity: 0;
	transform: translateY(8px) scale(.92);
	filter: blur(2px);
	transition:
		opacity .7s cubic-bezier(.2,.7,.2,1),
		transform .7s cubic-bezier(.2,.7,.2,1),
		filter .7s cubic-bezier(.2,.7,.2,1),
		border-color .4s ease, background .4s ease;
	transition-delay: calc(0.1s + var(--ai, 0) * 0.08s);
}
/* Запускається коли секція потрапляє у viewport (IntersectionObserver додає .in) */
.sv-section.reveal.in .sv-audience__icon,
.sv-section.in .sv-audience__icon {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}
/* після reveal — hover не повинен чекати stagger-delay */
.sv-section.in .sv-audience__card:hover .sv-audience__icon { transition-delay: 0s; }
.sv-audience__icon svg {
	width: 28px; height: 28px;
	display: block;
	transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.sv-audience__card:hover .sv-audience__icon {
	border-color: var(--accent);
	background: rgba(0, 224, 138, 0.08);
}
.sv-audience__card:hover .sv-audience__icon svg {
	animation: sv-icon-tilt .8s cubic-bezier(.4,0,.2,1);
}

.sv-audience__num {
	font-family: var(--font-mono);
	color: var(--muted);
	font-size: 12px;
	letter-spacing: 0.08em;
}
.sv-audience__body { display: flex; flex-direction: column; gap: 10px; }
.sv-audience__title {
	font-family: var(--font-display);
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	font-weight: 500;
	color: var(--text);
	margin: 0;
}
.sv-audience__sub {
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted);
	margin: 0;
}

/* =============================================================================
   03 · COMPOSE (stages) — 2-col однорядкових items
   ============================================================================= */
.sv-compose {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--line);
}
.sv-compose__item {
	display: grid;
	grid-template-columns: 60px 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
	transition: padding-left .4s ease, background .3s ease;
}
.sv-compose__item:hover {
	padding-left: 24px;
	background: var(--surface);
}
.sv-compose__item:nth-child(odd) {
	border-right: 1px solid var(--line);
	padding-right: 32px;
}
.sv-compose__item:nth-child(even) { padding-left: 32px; }
.sv-compose__item:nth-child(even):hover { padding-left: 56px; }
.sv-compose__num {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 0.06em;
}
.sv-compose__body { min-width: 0; }
.sv-compose__name {
	font-family: var(--font-display);
	font-size: clamp(20px, 1.6vw, 26px);
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--text);
	margin: 0;
	line-height: 1.2;
}
.sv-compose__desc {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--muted);
}
.sv-compose__arrow {
	font-size: 18px;
	color: var(--muted);
	transition: color .3s ease, transform .3s ease;
}
.sv-compose__item:hover .sv-compose__arrow {
	color: var(--accent);
	transform: rotate(-45deg);
}

/* =============================================================================
   04 · TEAM — 4-col квадратних карток
   ============================================================================= */
.sv-team {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.sv-team__card {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--line-2);
	border-radius: 14px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
	transition: transform .4s ease, border-color .4s ease, background .4s ease;
	position: relative;
	overflow: hidden;
}
.sv-team__card::before {
	content: "";
	position: absolute;
	top: -40%; right: -40%;
	width: 100%; height: 100%;
	background: radial-gradient(circle, var(--accent-glow), transparent 60%);
	opacity: 0;
	transition: opacity .5s ease;
	pointer-events: none;
}
.sv-team__card:hover {
	transform: translateY(-6px);
	border-color: var(--accent);
	background: var(--surface);
}
.sv-team__card:hover::before { opacity: 1; }

.sv-team__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: rgba(0, 224, 138, 0.04);
	color: var(--accent);
	/* initial state */
	opacity: 0;
	transform: translateY(8px) scale(.92);
	filter: blur(2px);
	transition:
		opacity .7s cubic-bezier(.2,.7,.2,1),
		transform .5s cubic-bezier(.4,0,.2,1),
		filter .7s cubic-bezier(.2,.7,.2,1),
		border-color .4s ease, background .4s ease;
	transition-delay: calc(0.1s + var(--ti, 0) * 0.06s);
	position: relative;
	z-index: 1;
}
.sv-section.reveal.in .sv-team__icon,
.sv-section.in .sv-team__icon {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}
.sv-section.in .sv-team__card:hover .sv-team__icon { transition-delay: 0s; }
.sv-team__icon svg {
	width: 24px; height: 24px;
	display: block;
	transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.sv-team__card:hover .sv-team__icon {
	border-color: var(--accent);
	background: rgba(0, 224, 138, 0.12);
	transform: rotate(-4deg) scale(1.05);
}
.sv-team__card:hover .sv-team__icon svg {
	animation: sv-icon-pulse 1.2s ease-in-out infinite;
}

.sv-team__body { display: flex; flex-direction: column; gap: 6px; position: relative; z-index: 1; }
.sv-team__abbr {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--muted);
	letter-spacing: 0.12em;
}
.sv-team__body { display: flex; flex-direction: column; gap: 8px; }
.sv-team__role {
	font-family: var(--font-display);
	font-size: clamp(20px, 1.8vw, 24px);
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.05;
	color: var(--text);
	margin: 0;
}
.sv-team__sub {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--muted);
}

/* =============================================================================
   05 · REASONS (advantages) — 2-col крупних карток
   ============================================================================= */
.sv-reasons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
}
.sv-reason {
	background: var(--bg);
	padding: 48px 40px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: background .4s ease;
}
.sv-reason:hover { background: var(--surface); }
.sv-reason__num {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--muted);
	letter-spacing: 0.08em;
}
.sv-reason__title {
	font-family: var(--font-display);
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	font-weight: 500;
	color: var(--text);
	margin: 0;
}
.sv-reason__text {
	color: #BDB9AD;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

/* =============================================================================
   06 · PROCESS — список крупних кроків
   ============================================================================= */
.sv-process {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sv-process__group {
	margin: 32px 0 16px;
	padding: 0;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
}
.sv-process__item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 32px;
	padding: 36px 0;
	border-bottom: 1px solid var(--line);
	transition: padding-left .4s ease;
}
.sv-process__item:first-child { border-top: 1px solid var(--line); }
.sv-process__item:hover { padding-left: 24px; }
.sv-process__num {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--accent);
	letter-spacing: 0.1em;
	padding-top: 8px;
}
.sv-process__body { min-width: 0; }
.sv-process__text {
	font-family: var(--font-display);
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: var(--text);
	margin: 0;
}
.sv-process__desc {
	margin: 12px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--muted);
	max-width: 720px;
}

/* =============================================================================
   07 · FAQ — нативні <details/summary>
   ============================================================================= */
.sv-faq {
	border-top: 1px solid var(--line);
}
.sv-faq__item {
	border-bottom: 1px solid var(--line);
	margin: 0;
}
.sv-faq__summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 32px 0;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-display);
	font-size: clamp(20px, 2vw, 30px);
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.2;
	color: var(--text);
	transition: color .3s ease;
}
.sv-faq__summary::-webkit-details-marker { display: none; }
.sv-faq__summary::marker { display: none; content: ''; }
.sv-faq__summary:hover { color: var(--accent); }
.sv-faq__q { flex: 1; min-width: 0; }
.sv-faq__icon {
	flex-shrink: 0;
	width: 36px; height: 36px;
	border: 1px solid var(--line-2);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: var(--font-mono);
	font-size: 18px;
	color: var(--text);
	transition: transform .4s ease, background .3s ease, border-color .3s ease, color .3s ease;
}
.sv-faq__item[open] > .sv-faq__summary .sv-faq__icon {
	transform: rotate(45deg);
	background: var(--accent);
	color: var(--bg);
	border-color: var(--accent);
}
.sv-faq__body {
	padding: 0 0 32px;
	max-width: 800px;
	color: #BDB9AD;
	font-size: 15px;
	line-height: 1.65;
}
.sv-faq__body p { margin: 0 0 12px; }
.sv-faq__body p:last-child { margin: 0; }

/* =============================================================================
   08 · INCLUDES — 3-col окремих карток
   ============================================================================= */
.sv-includes {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.sv-include {
	border: 1px solid var(--line-2);
	border-radius: 14px;
	padding: 32px;
	background: var(--surface);
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform .4s ease, border-color .4s ease;
}
.sv-include:hover {
	transform: translateY(-4px);
	border-color: var(--accent);
}
.sv-include__check {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--accent);
	display: grid;
	place-items: center;
	color: var(--bg);
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 6px;
}
.sv-include__title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--text);
	margin: 0;
}
.sv-include__text {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

/* =============================================================================
   PRICING (bonus) — 3-col packs
   ============================================================================= */
.sv-packs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.sv-pack {
	border: 1px solid var(--line-2);
	border-radius: 14px;
	padding: 32px;
	background: var(--surface);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.sv-pack.is-featured {
	border-color: var(--accent);
	box-shadow: 0 14px 40px rgba(0,224,138,0.12);
}
.sv-pack__name {
	font-family: var(--font-mono);
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--accent);
	margin: 0;
	text-transform: uppercase;
}
.sv-pack__price {
	font-family: var(--font-display);
	font-size: 44px;
	font-weight: 500;
	color: var(--text);
	margin: 0;
}
.sv-pack__cur { font-size: 22px; color: var(--muted); margin-right: 4px; }
.sv-pack__per { font-size: 14px; color: var(--muted); margin-left: 6px; }
.sv-pack__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.55;
}
.sv-pack__features li::before { content: "✓ "; color: var(--accent); }
.sv-pack__cta {
	margin-top: auto;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 20px;
	border: 1px solid var(--line-2);
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 14px;
	color: var(--text);
	text-decoration: none;
	transition: border-color .3s, background .3s, color .3s;
}
.sv-pack__cta:hover { border-color: var(--accent); background: var(--accent); color: var(--bg); }

/* =============================================================================
   LEAD (bonus) — однополосний text block
   ============================================================================= */
.sv-lead__body { max-width: 880px; }
.sv-lead__main {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.2vw, 32px);
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--text);
	margin: 0 0 24px;
	font-weight: 400;
}
.sv-lead__body p {
	font-size: 16px;
	line-height: 1.65;
	color: #BDB9AD;
	margin: 0 0 16px;
}
.sv-lead__body p:last-child { margin: 0; }

/* =============================================================================
   QUOTE (bonus) — центрована
   ============================================================================= */
.sv-quote {
	margin: 0;
	padding: 96px var(--gutter);
	border-top: 1px solid var(--line);
	text-align: center;
	max-width: 1440px;
	margin: 0 auto;
}
.sv-quote__meta {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 32px;
}
.sv-quote__text {
	margin: 0 auto;
	max-width: 880px;
}
.sv-quote__text p {
	font-family: var(--font-display);
	font-size: clamp(24px, 3vw, 40px);
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: var(--text);
	margin: 0;
}
.sv-quote__cite {
	margin-top: 24px;
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--muted);
}
.sv-quote__cite strong { color: var(--text); font-weight: 500; }

/* CTA — використовує НАТИВНІ класи теми (.section.cta, .cta-grid, .btn,
   .contact-info, .group/.lbl/.val) зі styles.css.
   У v2 заголовок CTA — це <div class="cta-heading">, а не <h2>:
   це інтерфейсний тригер (форма зв'язку), а не підтема контенту →
   не повинен брати участь у DOM-оглавленні документу (Main Content).
*/
.section.cta { isolation: isolate; }
.section.cta > .container { position: relative; z-index: 1; }
.section.cta .cta-grid {
	column-gap: 80px;
	position: relative;
	z-index: 1;
}
.section.cta .cta-heading {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(48px, 6.5vw, 104px);
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: var(--text);
	overflow-wrap: normal;
	margin: 0;
}
.section.cta .cta-heading .accent {
	display: inline-block;
	color: var(--accent);
	font-style: italic;
	font-weight: 400;
	padding-left: 0.06em;     /* ascender курсиву «р» не обрізається зліва */
	padding-right: 0.12em;    /* descender «?» дихає справа */
	margin-left: -0.06em;
	max-width: 100%;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1100px) {
	.sv-hero__layout { grid-template-columns: 1fr; gap: 48px; }
	.sv-audience { grid-template-columns: repeat(2, 1fr); }
	.sv-team { grid-template-columns: repeat(3, 1fr); }
	.sv-includes { grid-template-columns: repeat(2, 1fr); }
	.sv-packs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.sv-hero { padding: 32px var(--gutter) 64px; }
	.sv-hero__title { margin-bottom: 40px; }
	.sv-section { padding: 64px var(--gutter); }
	.sv-section__head {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 40px;
	}
	.sv-section__num { padding-top: 0; }

	.sv-audience { grid-template-columns: 1fr; border-radius: 12px; }
	.sv-audience__card { min-height: 180px; padding: 32px 24px; }

	.sv-compose { grid-template-columns: 1fr; }
	.sv-compose__item:nth-child(odd) { border-right: 0; padding-right: 0; }
	.sv-compose__item:nth-child(even) { padding-left: 0; }
	.sv-compose__item:nth-child(even):hover { padding-left: 24px; }

	.sv-team { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.sv-team__card { padding: 20px; }

	.sv-reasons { grid-template-columns: 1fr; }
	.sv-reason { padding: 32px 24px; }

	.sv-process__item { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
	.sv-process__num { padding-top: 0; }

	.sv-includes { grid-template-columns: 1fr; }
	.sv-packs { grid-template-columns: 1fr; }

	.sv-statbar { grid-template-columns: repeat(2, 1fr); }
	.sv-statbar__cell:nth-child(2) { border-right: 0; }
	.sv-statbar__cell:nth-child(odd) { border-right: 1px solid var(--line); }

	.sv-quote { padding: 64px var(--gutter); }
}
@media (max-width: 480px) {
	.sv-hero__meta { gap: 8px; }
	.sv-faq__summary { padding: 24px 0; font-size: 18px; }
	.sv-faq__icon { width: 32px; height: 32px; font-size: 16px; }
}

/* =============================================================================
   A11Y
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
	.sv-article *,
	.sv-hero * { transition: none !important; }
}
.sv-article :focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 4px;
}

/* =============================================================================
   ICON ANIMATIONS (audience + team)
   ============================================================================= */
/* Inline SVG-стрілка (заміна Unicode ↗ — без emoji-promotion на iOS) */
.sv-arrow {
	flex-shrink: 0;
	display: inline-block;
	vertical-align: middle;
	width: 14px; height: 14px;
}
.sv-hero__cta .sv-arrow,
.sv-cta__btn .sv-arrow { width: 16px; height: 16px; }

@keyframes sv-icon-tilt {
	0%   { transform: rotate(0)   scale(1); }
	35%  { transform: rotate(-8deg) scale(1.08); }
	65%  { transform: rotate(6deg)  scale(1.04); }
	100% { transform: rotate(0)   scale(1); }
}
@keyframes sv-icon-pulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
	.sv-audience__icon,
	.sv-team__icon,
	.sv-audience__icon svg,
	.sv-team__icon svg {
		animation: none !important;
		transition: none !important;
	}
}
