:root {
	--lime: #c6f24e;
	--lime-dark: #b3e036;
	--lime-soft: #c8eb67;
	--dark: #1a1a1a;
	--text: #2b2b2b;
	--muted: #6b6b6b;
	--bg: #f4f5f0;
	--bg-soft: #fafbf5;
	--bg-tint: #f0f2e8;
	--surface: #ffffff;
	--line: #e5e7de;
	--line-soft: #f1f3ec;
	--star: #f9b100;
	--font: "Nunito", system-ui, sans-serif;
	--font-mono: "Roboto Mono", ui-monospace, monospace;
	--max: 1100px;
	--pad: 1.25rem;
	--section-y: 3rem;
	--radius: 16px;
	--radius-lg: 24px;
	--sticky-h: 4.5rem;
	--line-on-dark: rgba(255, 255, 255, 0.14);
	--final-divider-gap: 2.5rem;
	--phone-gap: 0.625rem;
	--gutter: max(var(--pad), calc((100% - var(--max)) / 2));
}

@media (min-width: 768px) {
	:root {
		--pad: 2rem;
	}
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	background: var(--dark);
	font-size: 112%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a { color: inherit; text-decoration: none; }

main {
	padding-bottom: 0;
}

.container {
	width: 100%;
	max-width: var(--max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--pad);
	padding-right: var(--pad);
}

main > section:not(.hero):not(.cta) {
	position: relative;
}

main > section:not(.hero):not(.cta)::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(var(--max), calc(100% - var(--pad) * 2));
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
	pointer-events: none;
}

main > section.notice::before {
	display: none;
}

.faq::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(var(--max), calc(100% - var(--pad) * 2));
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
	pointer-events: none;
}

.stars {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.14em;
	color: var(--star);
	line-height: 1;
}

.stars .icon,
.stars__icon {
	display: block;
	width: 1.375rem;
	height: 1.375rem;
	flex-shrink: 0;
}

.stars--sm .icon,
.stars--sm .stars__icon {
	width: 0.875rem;
	height: 0.875rem;
}

.stars__score {
	margin: 0.375rem 0 0;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--muted);
	line-height: 1.45;
}

/* ── Sticky bottom call ── */

.sticky-call {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--phone-gap);
	min-height: var(--sticky-h);
	padding: 0.625rem 1rem calc(0.625rem + env(safe-area-inset-bottom, 0px));
	background: rgba(198, 242, 78, 0.78);
	backdrop-filter: blur(12px) saturate(2.5);
	-webkit-backdrop-filter: blur(12px) saturate(2.5);
	text-decoration: none;
	box-shadow: 0 -8px 28px rgba(26, 26, 26, 0.08);
}

.sticky-call__icon {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	align-self: center;
	color: var(--dark);
}

.sticky-call__num {
	align-self: center;
	font-size: 1.0625rem;
	font-weight: 800;
	color: var(--dark);
	letter-spacing: 0.01em;
}

.sticky-call:hover,
.sticky-call:hover .sticky-call__num {
	color: var(--dark);
}

/* ── Buttons ── */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.75rem 1.75rem;
	font-family: var(--font);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	border: 2px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.btn:active { transform: scale(0.98); }

.btn--lime {
	background: var(--lime);
	color: var(--dark);
	border-color: var(--lime);
	box-shadow: 0 4px 16px rgba(198, 242, 78, 0.35);
}

.btn--lime:hover {
	background: var(--lime-dark);
	border-color: var(--lime-dark);
}

.btn--dark {
	background: var(--dark);
	color: #fff;
	border-color: var(--dark);
	box-shadow: 0 6px 20px rgba(26, 26, 26, 0.2);
}

.btn--outline {
	background: transparent;
	color: var(--dark);
	border-color: var(--line);
}

.btn--lg {
	min-height: 3.5rem;
	font-size: 1.0625rem;
}

.btn--hero {
	min-height: 3.75rem;
	padding: 0.875rem 1.5rem;
	font-size: clamp(1rem, 4.2vw, 1.125rem);
	font-weight: 800;
	letter-spacing: 0.01em;
}

.btn__icon {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	align-self: center;
	margin-right: var(--phone-gap);
	color: var(--dark);
}

.btn > span {
	align-self: center;
	line-height: 1.2;
}

.btn--dark .btn__icon {
	color: #fff;
}

.btn--block {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 22rem;
	margin-left: auto;
	margin-right: auto;
}

.btn--pulse {
	animation: btn-pulse 4.2s ease-in-out infinite;
}

@keyframes btn-pulse {
	0%, 100% {
		box-shadow: 0 4px 16px rgba(198, 242, 78, 0.18);
	}
	50% {
		box-shadow: 0 6px 26px rgba(198, 242, 78, 0.32);
	}
}

/* ── Hero ── */

.hero {
	position: relative;
	z-index: 401;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	min-height: max(100svh, calc(var(--vh, 1vh) * 100));
	height: max(100svh, calc(var(--vh, 1vh) * 100));
	box-sizing: border-box;
	padding:
		calc(1.25rem + env(safe-area-inset-top, 0px))
		var(--pad)
		calc(1.25rem + env(safe-area-inset-bottom, 0px));
	background: var(--dark);
	color: #fff;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background-image: var(--hero-bg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	pointer-events: none;
	z-index: 0;
	filter: blur(5px) saturate(1.32) contrast(1.08) brightness(0.93);
	transform: scale(1.04);
}

.hero__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(26, 26, 26, 0.62) 0%, rgba(26, 26, 26, 0.42) 45%, rgba(26, 26, 26, 0.58) 100%),
		radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26, 26, 26, 0.25) 0%, transparent 70%),
		radial-gradient(ellipse 75% 55% at 90% 15%, rgba(37, 99, 235, 0.2) 0%, transparent 55%),
		radial-gradient(ellipse 70% 50% at 8% 88%, rgba(228, 27, 41, 0.18) 0%, transparent 52%);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--max);
	margin: 0 auto;
	padding-top: clamp(1.5rem, 5vh, 3rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(2.025rem, 9vw, 2.875rem);
	font-weight: 800;
	line-height: 1.08;
	color: #fff;
	letter-spacing: -0.02em;
}

.hero__lead {
	margin: 0 auto;
	max-width: 32ch;
	font-size: 1rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.5;
	letter-spacing: 0.01em;
}

.hero__cta {
	width: 100%;
	max-width: 26rem;
	margin: clamp(1.5rem, 5vh, 2.25rem) auto 0;
	padding: 1.25rem;
}

.hero__rating {
	display: block;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.hero__rating:hover,
.hero__rating:focus,
.hero__rating:active,
.hero__rating:visited {
	color: inherit;
	text-decoration: none;
}

.hero__rating:focus-visible {
	outline: 2px solid var(--lime);
	outline-offset: 2px;
}

.hero .stars .icon,
.hero .stars .stars__icon {
	width: 1.375rem;
	height: 1.375rem;
}

.hero .stars__score {
	margin-top: 0.5rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.8125rem;
}

.hero__call label,
.hero .messengers label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.55);
	text-align: center;
}

.hero__call .btn {
	display: flex;
	align-items: center;
	width: 100%;
}

.hero .messengers {
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero .messengers label {
	flex: 0 0 100%;
	margin-bottom: 0;
}

.hero .messengers__link {
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.92);
}

.hero .messengers__link:hover {
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.92);
}

/* ── Messengers ── */

.messengers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
}

.messengers__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	padding: 0.4375rem 0.75rem;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	background: var(--surface);
	color: var(--text);
	transition: background 0.15s, color 0.15s;
}

.messengers__link:hover {
	background: var(--bg-soft);
}

.messengers__link:focus-visible {
	outline: 2px solid var(--lime);
	outline-offset: 2px;
}

.messengers__icon {
	display: block;
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	align-self: center;
}

.messengers__icon--telegram {
	color: #229ed9;
}

.messengers__icon--viber {
	color: #7360f2;
}

.messengers__icon--whatsapp {
	color: #25d366;
}

.messengers__link > span {
	line-height: 1;
}

.messengers--final .messengers__link {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.messengers--final .messengers__link:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

/* ── Offer ── */

.offer {
	padding: var(--section-y) var(--gutter);
}

.offer__card {
	max-width: var(--max);
	margin: 0 auto;
	padding: 2rem;
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.offer__card h2 {
	margin: 0 auto 0.875rem;
	max-width: 34ch;
	font-size: clamp(1.25rem, 3.5vw, 1.625rem);
	font-weight: 900;
	line-height: 1.25;
	color: var(--dark);
}

.offer__lead {
	margin: 0 auto 1.5rem;
	max-width: 48ch;
	color: var(--muted);
	line-height: 1.65;
}

.offer__perks {
	display: grid;
	gap: 0.875rem;
	margin: 0 auto 1.5rem;
	text-align: center;
}

.offer__perk {
	padding: 1.25rem;
	background: var(--bg-soft);
	border-radius: var(--radius);
}

.offer__perk-title {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.3;
}

.offer__perk p:last-child {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.55;
}

@media (min-width: 768px) {
	.offer__perks {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
}

.offer__card .btn {
	margin: 0 auto;
}

/* ── Section banner ── */

.section-banner {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin: 0 calc(50% - 50vw) 1rem;
	overflow: hidden;
	border-radius: 0;
	background: var(--dark);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section-banner__img {
	display: block;
	width: 100%;
	aspect-ratio: 21 / 9;
	max-height: 14rem;
	object-fit: cover;
	object-position: center;
	filter: saturate(1.32) contrast(1.08) brightness(0.93);
}

.section-banner__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(37, 99, 235, 0.16) 0%, transparent 42%),
		linear-gradient(300deg, rgba(228, 27, 41, 0.14) 0%, transparent 40%),
		rgba(26, 26, 26, 0.38);
	pointer-events: none;
}

.section-banner__caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 1rem;
	text-align: center;
	pointer-events: none;
}

.section-banner__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 36ch;
}

.section-banner__caption h2 {
	margin: 0;
	max-width: none;
	font-size: clamp(1.125rem, 4vw, 1.625rem);
	font-weight: 900;
	line-height: 1.35;
}

.section-banner__title-stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.section-banner__title-stack .section-banner__label {
	line-height: 1.35;
}

.section-banner__title-stack .section-banner__label + .section-banner__label {
	margin-top: -0.24em;
}

.section-banner__label--meta {
	font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
	font-weight: 700;
}

.section-banner__label--stars {
	display: inline-flex;
	align-items: center;
}

.section-banner__label--stars .stars {
	color: var(--dark);
}

.section-banner__title-stack .stars .icon,
.section-banner__title-stack .stars .stars__icon {
	width: 1.125rem;
	height: 1.125rem;
}

.docs__call {
	margin-top: 1rem;
}

.section-banner__label {
	display: inline;
	padding: 0.12em 0.42em;
	background: var(--lime);
	color: var(--dark);
	line-height: 1.35;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	text-wrap: balance;
}

.info .section-banner {
	margin-bottom: 1.25rem;
}

.faq .section-banner {
	margin-bottom: 1.25rem;
}

.reviews .section-banner {
	margin-bottom: 1rem;
}

.docs {
	padding-block: var(--section-y);
}

.docs.container {
	padding-block: var(--section-y);
}

.docs__grid {
	display: grid;
	gap: 0.875rem;
}

.docs__panel {
	padding: 1.5rem;
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.docs__panel h3 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
}

/* ── Checks ── */

.checks {
	margin: 0;
	padding: 0;
	list-style: none;
}

.checks li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.55;
}

.checks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--lime);
	border-radius: 50%;
}

/* ── Reviews ── */

.reviews {
	padding-block: var(--section-y);
	overflow: visible;
}

.reviews .container {
	padding-top: 0;
	padding-bottom: 0;
}

.reviews__slider {
	margin-bottom: 1rem;
}

.reviews__viewport {
	position: relative;
	display: grid;
	margin-bottom: 1rem;
	touch-action: pan-y;
}

.review {
	grid-area: 1 / 1;
	padding: 1.25rem;
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	visibility: hidden;
	pointer-events: none;
}

.review--active {
	visibility: visible;
	pointer-events: auto;
}

.reviews__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.reviews__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--surface);
	color: var(--dark);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.reviews__arrow:hover {
	background: var(--lime);
}

.reviews__arrow:focus-visible {
	outline: 2px solid var(--lime);
	outline-offset: 2px;
}

.reviews__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.reviews__dot {
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(26, 26, 26, 0.2);
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.reviews__dot--active {
	background: var(--dark);
	transform: scale(1.15);
}

.reviews__dot:focus-visible {
	outline: 2px solid var(--lime);
	outline-offset: 2px;
}

.reviews__submit {
	display: block;
	width: fit-content;
	margin: 1.25rem auto 0;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--dark);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.reviews__submit:hover {
	color: var(--muted);
}

.review__header {
	display: flex;
	align-items: center;
	margin-bottom: 0.875rem;
}

.review__name {
	margin: 0 0 0.25rem;
	font-weight: 700;
	font-size: 0.9375rem;
}

.review .stars {
	justify-content: flex-start;
}

.review__text {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.6;
}

/* ── Pack ── */

.pack {
	padding-block: var(--section-y);
}

.pack.container {
	padding-block: var(--section-y);
}

.pack__grid {
	display: grid;
	gap: 0.875rem;
	margin-top: 0;
}

.pack__box {
	padding: 1.5rem;
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pack__box h3 {
	margin: 0 0 0.75rem;
	font-size: 1.0625rem;
	font-weight: 800;
	color: var(--dark);
}

.pack__note {
	margin: 1.5rem auto 1.5rem;
	max-width: 52ch;
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.6;
	text-align: center;
}

.pack__note span {
	display: block;
}

@media (min-width: 640px) {
	.pack__grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ── Info ── */

.info {
	padding-block: var(--section-y);
	text-align: center;
}

.info.container {
	padding-block: var(--section-y);
}

.info__body {
	margin-bottom: 1.5rem;
	padding: 1.75rem;
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	text-align: center;
}

.info__body p {
	margin: 0 auto 1rem;
	max-width: 58ch;
	color: var(--muted);
	line-height: 1.65;
}

.info__body p:last-child {
	margin-bottom: 0;
}

.info .btn {
	margin: 0 auto;
}

/* ── FAQ ── */

.faq {
	padding-block: var(--section-y);
}

.faq.container {
	padding-block: var(--section-y);
}

.faq__list {
	display: grid;
	gap: 0.625rem;
	padding: var(--pad);
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq__item {
	overflow: hidden;
}

.faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	font-weight: 700;
	font-size: 0.9375rem;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
	color: var(--dark);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
	content: "";
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	margin-top: 0;
	border-right: 2px solid var(--dark);
	border-bottom: 2px solid var(--dark);
	transform: rotate(45deg);
	transition: transform 0.2s;
}

.faq__item[open] summary::after {
	transform: rotate(225deg);
}

.faq__item p {
	margin: 0;
	padding: 0 1.25rem 1.25rem;
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.65;
}

/* ── Extra ── */

.notice {
	padding-block: var(--section-y);
}

.notice.container {
	padding-block: var(--section-y);
}

.notice .section-banner {
	margin-bottom: 1rem;
}

.notice__grid {
	display: flex;
	flex-direction: column;
}

.notice__divider {
	flex-shrink: 0;
	width: min(var(--max), calc(100% - var(--pad) * 2));
	height: 1px;
	margin: var(--section-y) auto;
	background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
}

.notice__text {
	padding: 1.75rem;
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	text-align: center;
}

.notice__cta h2 {
	margin: 0 auto 0.875rem;
	font-size: 1.25rem;
	font-weight: 900;
	color: var(--dark);
}

.notice__cta p {
	margin: 0 auto 1.25rem;
	max-width: 30ch;
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.65;
}

.notice__text p {
	margin: 0 auto 0.75rem;
	max-width: 52ch;
	font-size: 0.9375rem;
	color: var(--muted);
	line-height: 1.65;
}

.notice__cta {
	padding: 1.75rem;
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* ── Final ── */

.cta {
	padding:
		var(--section-y)
		var(--gutter)
		var(--final-divider-gap);
	background: var(--dark);
	color: #fff;
	text-align: center;
}

.cta h2 {
	margin: 0 0 0.875rem;
	font-size: clamp(1.75rem, 6vw, 2.25rem);
	font-weight: 900;
	line-height: 1.12;
}

.cta > p {
	margin: 0 auto 1.5rem;
	max-width: 28ch;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
}

.cta .btn {
	margin: 0 auto 1.25rem;
}

.messengers--final {
	justify-content: center;
	max-width: 22rem;
	margin: 0 auto;
}

/* ── Footer ── */

.footer {
	position: relative;
	padding:
		var(--final-divider-gap)
		var(--gutter)
		calc(var(--section-y) + env(safe-area-inset-bottom, 0px) + var(--sticky-h));
	background: var(--dark);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.875rem;
	text-align: center;
}

.footer__nav {
	max-width: var(--max);
	margin: 0 auto 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.25rem;
	font-size: 0.8125rem;
}

.footer__nav a:hover,
.footer a:hover {
	color: var(--lime);
}

.footer__title {
	max-width: var(--max);
	margin: 0 auto 0.75rem;
	color: #fff;
}

.footer p {
	max-width: var(--max);
	margin: 0 auto 0.5rem;
}

.footer__copy {
	max-width: var(--max);
	margin: 1.5rem auto 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
}

/* ── GAI page (index12-gai) ── */

.page-gai {
	background: var(--bg);
}

.gai-article__head {
	padding:
		calc(1.5rem + env(safe-area-inset-top, 0px))
		var(--pad)
		1.25rem;
	text-align: left;
}

.gai-article__head h1 {
	margin: 0 0 0.75rem;
	max-width: var(--max);
	font-size: clamp(1.625rem, 5vw, 2rem);
	font-weight: 900;
	line-height: 1.2;
	color: var(--dark);
}

.gai-article__lead {
	margin: 0;
	max-width: 36rem;
	font-size: 0.96875rem;
	line-height: 1.65;
	color: var(--muted);
}

.gai-picker {
	padding:
		0 var(--pad)
		calc(var(--section-y) * 0.75);
}

.gai-picker__title {
	margin: 0 auto 0.875rem;
	max-width: var(--max);
	font-size: 1.0625rem;
	font-weight: 800;
	color: var(--dark);
}

.gai-picker__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.625rem;
	max-width: var(--max);
	margin: 0 auto;
}

.gai-picker__card {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 0.125rem 0.875rem;
	padding: 0.9375rem 1rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--dark);
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
	transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.gai-picker__card:hover {
	border-color: rgba(198, 242, 78, 0.55);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	color: var(--dark);
}

.gai-picker__card:active {
	transform: scale(0.995);
}

.gai-picker__name {
	grid-column: 1;
	font-size: 0.9375rem;
	font-weight: 800;
	line-height: 1.35;
}

.gai-picker__addr {
	grid-column: 1;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--muted);
}

.gai-picker__chev {
	grid-column: 2;
	grid-row: 1 / span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--bg-soft);
	color: var(--muted);
}

.gai-picker__chev-icon {
	display: block;
	width: 1.125rem;
	height: 1.125rem;
}

.gai-picker__card:hover .gai-picker__chev {
	background: var(--lime);
	color: var(--dark);
}

.gai-office {
	padding-block: var(--section-y);
}

.gai-office__title {
	margin: 0 auto 1rem;
	max-width: var(--max);
	padding-inline: var(--pad);
	font-size: clamp(1.125rem, 4vw, 1.375rem);
	font-weight: 900;
	line-height: 1.35;
	color: var(--dark);
}

.gai-office__photo {
	margin: 0 auto 1rem;
	max-width: var(--max);
	padding-inline: var(--pad);
}

.gai-office__photo img {
	display: block;
	width: auto;
	max-width: min(100%, 28rem);
	height: auto;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	object-fit: contain;
}

.gai-office__photo--inline {
	margin: 0 0 1rem;
	padding-inline: 0;
}

.gai-office__photo--inline img {
	max-width: min(100%, 22rem);
}

.faq__item .gai-office__photo--inline {
	padding-top: 0.75rem;
}

.gai-office__meta {
	margin: 0 auto 1rem;
	max-width: var(--max);
	padding: 1.25rem 1.375rem;
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.gai-office__meta p {
	margin: 0 0 0.375rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--dark);
}

.gai-office__meta p:last-child {
	margin-bottom: 0;
}

.gai-office__notice {
	margin-top: 0.75rem !important;
	padding-top: 0.75rem;
	border-top: 1px solid var(--line);
	font-weight: 700;
	color: #b45309;
}

.gai-office__schedule {
	margin-top: 0;
}

.gai-office__table-wrap {
	padding: 0 1.25rem 1.25rem;
	overflow-x: auto;
}

.gai-hours {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.gai-hours th,
.gai-hours td {
	padding: 0.75rem 0.875rem;
	border: 1px solid var(--line);
	vertical-align: top;
	text-align: left;
	line-height: 1.5;
}

.gai-hours th {
	background: var(--bg-tint);
	font-weight: 800;
	color: var(--dark);
}

.gai-hours td {
	color: var(--muted);
}

.notice__cta {
	padding: 1.75rem;
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	text-align: center;
}

@media (min-width: 640px) {
	.gai-picker__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}
}
