/* ============================================
   Design tokens
============================================ */
:root {
	--bg-primary: #ffffff;
	--bg-secondary: #f7f8fa;
	--bg-dark-blue: #0d1b2a;
	--bg-dark-blue-soft: #132238;
	--text-primary: #0a0a0a;
	--text-secondary: #3b4450;
	--text-muted: #6b7280;
	--text-muted-2: #9ca3af;
	--text-light: #ffffff;
	--accent-blue: #163a5f;
	--accent-blue-strong: #0d2e4f;
	--border-soft: rgba(13, 27, 42, 0.1);
	--border-soft-2: rgba(13, 27, 42, 0.06);
	--shadow-soft: 0 12px 40px rgba(13, 27, 42, 0.1);
	--shadow-card: 0 12px 40px rgba(13, 27, 42, 0.08);
	--shadow-card-hover: 0 16px 48px rgba(13, 27, 42, 0.12);
	--radius-lg: 22px;
	--radius-xl: 24px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family:
		"Manrope",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Helvetica,
		Arial,
		sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: var(--bg-primary);
	color: var(--text-primary);
	text-rendering: optimizeLegibility;
	line-height: 1.5;
}

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

a {
	color: inherit;
	text-decoration: none;
}
button {
	font-family: inherit;
	cursor: pointer;
}

.page {
	max-width: 100vw;
	overflow-x: hidden;
	background: #fff;
	color: var(--text-primary);
}

/* ============================================
   Layout helpers
============================================ */
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
}
.container--sm {
	max-width: 36rem;
}
.container--md {
	max-width: 36rem;
}
.container--xl {
	max-width: 36rem;
}

@media (min-width: 640px) {
	.container {
		padding: 0 1.5rem;
	}
}
@media (min-width: 768px) {
	.container--xl {
		max-width: 64rem;
		padding: 0 2rem;
	}
	.container--md {
		max-width: 64rem;
		padding: 0 2rem;
	}
	.container--sm {
		max-width: 48rem;
		padding: 0 2rem;
	}
}

.center {
	text-align: center;
}

.eyebrow {
	text-align: center;
	font-size: 1rem;
	font-weight: 600;
	color: var(--bg-dark-blue);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 0.5rem 0;
}

.section-title {
	color: var(--text-primary);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-align: center;
	text-wrap: balance;
	margin: 0 0 2.5rem 0;
}
@media (min-width: 640px) {
	.section-title {
		font-size: 1.875rem;
	}
}
@media (min-width: 768px) {
	.section-title {
		font-size: 2.25rem;
	}
}

.section-paragraph {
	margin: 1.5rem auto 0;
	max-width: 48rem;
	text-align: center;
	font-size: 1.125rem;
	line-height: 1.625;
	color: var(--text-secondary);
}

/* ============================================
   Buttons
============================================ */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 1rem;
	background: var(--bg-dark-blue);
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0;
	box-shadow: 0 12px 32px rgba(13, 27, 42, 0.22);
	transition:
		background-color 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
	white-space: nowrap;
}
.btn-primary:hover {
	background: var(--bg-dark-blue-soft);
}
.btn-primary:active {
	transform: scale(0.98);
}
.btn-primary:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.3);
}
.btn-block {
	width: 100%;
}

/* ============================================
   Highlights / marks
============================================ */
mark.hl-dark {
	background: var(--bg-dark-blue);
	color: #fff;
	padding: 0.125rem 0.5rem;
	border-radius: 0.5rem;
	white-space: nowrap;
}
mark.hl-green {
	background: #dcfce7;
	color: #15803d;
	padding: 0.125rem 0.5rem;
	border-radius: 0.5rem;
	font-weight: 700;
}

/* ============================================
   Animations
============================================ */
@keyframes pulse-blue {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(13, 46, 79, 0.2);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(13, 46, 79, 0);
	}
}
.animate-pulse-blue {
	animation: pulse-blue 2.5s ease-in-out infinite;
}
@keyframes bounce-soft {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(25%);
	}
}
.icon-bounce {
	animation: bounce-soft 1s infinite;
}

/* ============================================
   Hero
============================================ */
.hero {
	position: relative;
	background: var(--bg-primary);
}
.hero-vsl-wrap {
	position: relative;
	width: calc(100% - 10px);
	max-width: 400px;
	margin: 0 auto;
	padding: 0;
	border-left: 1px solid var(--border-soft);
	border-right: 1px solid var(--border-soft);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.hero-vsl-wrap vturb-smartplayer {
	display: block;
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
}
.esconder {
	display: none !important;
}

.scroll-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	margin-bottom: 2px;
	user-select: none;
}
.scroll-arcs {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}
.scroll-arc {
	display: block;
	width: 36px;
	height: 36px;
	border-right: 4px solid rgba(156, 163, 175, 0.45);
	border-bottom: 4px solid rgba(156, 163, 175, 0.45);
	border-radius: 2px;
	transform: rotate(45deg);
	opacity: 0;
	margin-bottom: -20px;
	animation: arc-wave 1.6s ease-in-out infinite;
}
.scroll-arc:last-child {
	margin-bottom: 0;
}
.scroll-arc:nth-child(1) {
	animation-delay: 0s;
}
.scroll-arc:nth-child(2) {
	animation-delay: 0.22s;
}
.scroll-arc:nth-child(3) {
	animation-delay: 0.44s;
}
@keyframes arc-wave {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-3px, -3px);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: rotate(45deg) translate(3px, 3px);
	}
}

.vsl-cta {
	position: absolute;
	left: 50%;
	bottom: 1.25rem;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 2rem);
	max-width: 360px;
	min-height: 54px;
	padding: 0 1.25rem;
	border-radius: 1rem;
	background: var(--bg-dark-blue);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 8px 32px rgba(13, 27, 42, 0.35);
	transition:
		background-color 0.2s,
		transform 0.2s;
}
.vsl-cta:hover {
	background: var(--bg-dark-blue-soft);
}
.vsl-cta:active {
	transform: translateX(-50%) scale(0.98);
}

.tutor {
	padding: 3rem 0;
	background: #ffffff;
}
.tutor-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 1.5rem;
}
.tutor-image-wrap {
	display: flex;
	justify-content: center;
}
.tutor-image {
	width: 100%;
	max-width: 420px;
	height: auto;
	-webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}
.tutor-content {
	display: flex;
	flex-direction: column;
}
.tutor-content .section-title {
	margin-top: 0.5rem;
}
.tutor-intro {
	margin: 1rem 0 0;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--text-secondary);
}
.tutor-credentials {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.tutor-credentials li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.55;
}
.tutor-credentials svg {
	flex-shrink: 0;
	color: var(--accent-blue);
	margin-top: 0.125rem;
}
.tutor-quote {
	margin-top: 1.5rem;
	padding-left: 1rem;
	border-left: 3px solid var(--accent-blue);
	color: var(--text-primary);
	font-weight: 600;
	font-size: 1.0625rem;
	line-height: 1.55;
}
.tutor-cta {
	margin-top: 1.75rem;
	align-self: stretch;
}
@media (min-width: 768px) {
	.tutor-cta {
		align-self: flex-start;
		min-width: 280px;
	}
}
@media (min-width: 768px) {
	.tutor {
		padding: 4.5rem 0;
	}
	.tutor-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
		align-items: center;
		margin-top: 2rem;
	}
	.tutor-image-wrap {
		justify-content: flex-start;
	}
	.tutor-image {
		max-width: 100%;
	}
}

/* ============================================
   Testimonials
============================================ */
.testimonials {
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	background: #fff;
	padding: 5rem 0 3rem;
}
@media (min-width: 640px) {
	.testimonials {
		padding: 7rem 0 4rem;
	}
}
@media (min-width: 768px) {
	.testimonials {
		padding: 8rem 0 5rem;
	}
}

.testimonials-carousel-wrap {
	position: relative;
	width: 100%;
	padding: 0;
}
@media (min-width: 640px) {
	.testimonials-carousel-wrap {
		padding: 0 1.5rem;
	}
}
@media (min-width: 768px) {
	.testimonials-carousel-wrap {
		max-width: 64rem;
		margin: 0 auto;
		padding: 0 2rem;
	}
}

.carousel {
	overflow: hidden;
}
.carousel-track {
	display: flex;
	transition: transform 0.35s ease;
	will-change: transform;
}

.testimonial-slide {
	flex: 0 0 85vw;
	padding-left: 0.75rem;
}
.testimonial-slide:first-child {
	padding-left: 0;
}

@media (min-width: 640px) {
	.testimonial-slide {
		flex-basis: 300px;
		padding-left: 1rem;
	}
	.testimonial-slide:first-child {
		padding-left: 0;
	}
}
@media (min-width: 768px) {
	.testimonial-slide {
		flex-basis: 320px;
	}
}

.testimonial-frame {
	padding: 0.375rem;
}
@media (min-width: 640px) {
	.testimonial-frame {
		padding: 0.5rem;
	}
}

.testimonial-card {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	border-radius: 22px;
	overflow: hidden;
	background: #e8ecf0;
	transition:
		box-shadow 0.3s,
		outline-color 0.3s;
	outline: 1px solid rgba(13, 27, 42, 0.1);
	box-shadow: 0 2px 8px rgba(13, 27, 42, 0.08);
}
.testimonial-slide.is-active .testimonial-card {
	outline: 2px solid rgba(13, 27, 42, 0.4);
	box-shadow: 0 8px 32px rgba(13, 27, 42, 0.18);
}

.testimonial-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	background: #000;
}

.testimonial-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	background: rgba(0, 0, 0, 0.3);
	border: none;
	padding: 0;
	transition: opacity 0.2s;
}
.testimonial-play.is-hidden {
	display: none;
}
.testimonial-play-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(4px);
	transition: background-color 0.2s;
}
.testimonial-play-circle svg {
	color: #fff;
	fill: #fff;
	margin-left: 4px;
}
.testimonial-play:hover .testimonial-play-circle {
	background: rgba(255, 255, 255, 0.25);
}

.carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	margin-top: 2rem;
	padding: 0 1rem;
}
.carousel-btn {
	min-height: 52px;
	min-width: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(13, 27, 42, 0.08);
	color: rgba(13, 27, 42, 0.6);
	border: 1px solid rgba(13, 27, 42, 0.1);
	transition: background-color 0.15s;
}
.carousel-btn:hover {
	background: rgba(13, 27, 42, 0.14);
}
.carousel-btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.2);
}

.carousel-dots {
	display: flex;
	gap: 0.5rem;
}
.carousel-dot {
	height: 12px;
	width: 12px;
	border: none;
	padding: 0;
	border-radius: 9999px;
	background: rgba(13, 27, 42, 0.2);
	transition:
		width 0.3s,
		background-color 0.3s;
}
.carousel-dot.is-active {
	background: var(--bg-dark-blue);
	width: 28px;
}
.carousel-dot:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.2);
}

/* ============================================
   What you get
============================================ */
.what-you-get {
	background: var(--bg-secondary);
	padding: 3.5rem 0;
}
@media (min-width: 640px) {
	.what-you-get {
		padding: 5rem 0;
	}
}
@media (min-width: 768px) {
	.what-you-get {
		padding: 6rem 0;
	}
}

.platform-image-wrap {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
}
.platform-image {
	width: 100%;
	max-width: 56rem;
	height: auto;
	object-fit: contain;
}

.phases-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2.5rem;
}
@media (min-width: 640px) {
	.phases-list {
		margin-top: 3rem;
	}
}

.phase-card {
	background: #fff;
	border-radius: 22px;
	border: 1px solid var(--border-soft);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	box-shadow: var(--shadow-card);
	transition:
		box-shadow 0.2s,
		border-color 0.2s;
}
.phase-card:hover {
	box-shadow: var(--shadow-card-hover);
	border-color: rgba(13, 27, 42, 0.16);
}
.phase-card-top {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}
.phase-thumb {
	flex-shrink: 0;
	width: 90px;
	height: 90px;
	border-radius: 0.75rem;
	overflow: hidden;
	border: 1px solid rgba(13, 27, 42, 0.08);
}
.phase-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.phase-meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
	flex: 1;
	min-width: 0;
}
.phase-meta h3 {
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	margin: 0;
}
.phase-card p {
	color: var(--text-secondary);
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0;
}
@media (min-width: 640px) {
	.phase-card p {
		font-size: 1rem;
	}
}

.badge-dark {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	border-radius: 9999px;
	background: var(--bg-dark-blue);
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
.badge-with-icon {
	gap: 0.25rem;
	padding: 0.25rem 0.625rem;
}

/* ============================================
   Bonuses
============================================ */
.bonuses {
	background: #fff;
	padding: 3.5rem 0;
}
@media (min-width: 640px) {
	.bonuses {
		padding: 5rem 0;
	}
}
@media (min-width: 768px) {
	.bonuses {
		padding: 6rem 0;
	}
}

.bonuses-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
	.bonuses-header {
		margin-bottom: 3.5rem;
	}
}
.bonuses-header .section-title {
	margin-bottom: 0;
}

.icon-tile {
	width: 56px;
	height: 56px;
	border-radius: 1rem;
	background: var(--bg-dark-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.bonus-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.bonus-card {
	border-radius: 22px;
	background: #fff;
	border: 1px solid var(--border-soft);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	box-shadow: var(--shadow-card);
	transition:
		box-shadow 0.2s,
		border-color 0.2s;
}
.bonus-card:hover {
	box-shadow: var(--shadow-card-hover);
	border-color: rgba(13, 27, 42, 0.16);
}
.bonus-card-top {
	display: flex;
	gap: 1rem;
}
.bonus-thumb {
	flex-shrink: 0;
}
.bonus-thumb img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 0.75rem;
	border: 1px solid rgba(13, 27, 42, 0.08);
}
.bonus-meta {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
}
.bonus-badges {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: nowrap;
}
.bonus-meta h3 {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--text-primary);
	line-height: 1.3;
	margin: 0;
}
.bonus-card > p {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 0;
}
@media (min-width: 640px) {
	.bonus-card > p {
		font-size: 1rem;
	}
}

.price-old {
	font-size: 0.75rem;
	color: #f87171;
	font-weight: 500;
	text-decoration: line-through;
	white-space: nowrap;
}
.price-free {
	display: inline-block;
	border-radius: 0.375rem;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 0.125rem 0.5rem;
	color: #15803d;
	font-weight: 800;
	font-size: 0.75rem;
	white-space: nowrap;
}

/* ============================================
   Comparison
============================================ */
.comparison {
	background: var(--bg-secondary);
	padding: 3.5rem 0;
}
@media (min-width: 640px) {
	.comparison {
		padding: 5rem 0;
	}
}
@media (min-width: 768px) {
	.comparison {
		padding: 6rem 0;
	}
}

.comparison-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.comparison-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.compare-card {
	border-radius: 22px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
@media (min-width: 640px) {
	.compare-card {
		padding: 2rem;
	}
}

.compare-card--problem {
	background: #fff;
	border: 1px solid #fee2e2;
	box-shadow: var(--shadow-card);
}
.compare-card--solution {
	background: var(--bg-dark-blue);
	box-shadow: 0 12px 40px rgba(13, 27, 42, 0.25);
	color: #fff;
}

.compare-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-bottom: 0.5rem;
}
.compare-card--problem .compare-head {
	border-bottom: 1px solid #fef2f2;
}
.compare-card--solution .compare-head {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-head h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
}
@media (min-width: 640px) {
	.compare-head h3 {
		font-size: 1.5rem;
	}
}
.compare-card--problem .compare-head h3 {
	color: var(--text-primary);
}
.compare-card--solution .compare-head h3 {
	color: #fff;
}

.compare-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.compare-icon--red {
	background: #fef2f2;
	color: #ef4444;
}
.compare-icon--green {
	background: rgba(74, 222, 128, 0.2);
	color: #4ade80;
}

.compare-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.compare-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.875rem 0;
	font-size: 1rem;
	line-height: 1.6;
}
@media (min-width: 640px) {
	.compare-list li {
		font-size: 1.125rem;
	}
}
.compare-list li svg {
	margin-top: 2px;
	flex-shrink: 0;
}

.compare-list--red li {
	color: var(--text-secondary);
	border-bottom: 1px solid #fef2f2;
}
.compare-list--red li:last-child {
	border-bottom: none;
}
.compare-list--red li svg {
	color: #fca5a5;
}

.compare-list--green li {
	color: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.compare-list--green li:last-child {
	border-bottom: none;
}
.compare-list--green li svg {
	color: #4ade80;
}

/* ============================================
   Offer
============================================ */
.offer {
	background: var(--bg-secondary);
	padding: 3.5rem 0;
}
@media (min-width: 640px) {
	.offer {
		padding: 5rem 0;
	}
}
@media (min-width: 768px) {
	.offer {
		padding: 6rem 0;
	}
}

.offer-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
	.offer-header {
		margin-bottom: 3rem;
	}
}
.offer-header .section-title {
	margin-bottom: 0;
}
.offer-header .icon-tile svg path {
	fill: #fff;
}

.offer-card {
	background: #fff;
	border-radius: 24px;
	border: 1px solid rgba(13, 27, 42, 0.12);
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(13, 27, 42, 0.1);
}
.offer-discount {
	background: var(--bg-dark-blue);
	padding: 1.25rem 1.5rem;
	display: flex;
	justify-content: center;
}
.discount-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.75rem 1.25rem;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}
@media (min-width: 768px) {
	.discount-pill {
		font-size: 1.125rem;
	}
}

.offer-body {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 640px) {
	.offer-body {
		padding: 1.5rem;
	}
}

.offer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.offer-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-soft-2);
}
.offer-list li:last-child {
	border-bottom: none;
}
.offer-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(13, 27, 42, 0.06);
	border: 1px solid rgba(13, 27, 42, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-dark-blue);
	flex-shrink: 0;
}
.offer-text {
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	flex: 1;
}
.offer-tag {
	width: 56px;
	flex-shrink: 0;
	display: flex;
	justify-content: flex-end;
}

.offer-pricing {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0;
}
.offer-pricing-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.muted {
	font-size: 0.875rem;
	color: var(--text-muted);
}
.muted-2 {
	font-size: 0.875rem;
	color: var(--text-secondary);
}
.price-strike {
	color: #ef4444;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: line-through;
}
.price-main {
	color: var(--bg-dark-blue);
	font-size: 2.25rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0;
}
@media (min-width: 768px) {
	.price-main {
		font-size: 3rem;
	}
}
.price-sub {
	font-size: 1rem;
	color: var(--text-secondary);
	margin: 0;
}

.trust-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 500;
}
.trust-item svg {
	color: var(--bg-dark-blue);
}
.trust-divider {
	width: 1px;
	height: 1rem;
	background: rgba(13, 27, 42, 0.12);
}

/* ============================================
   Guarantee
============================================ */
.guarantee {
	background: #fff;
	padding: 3.5rem 0;
}
@media (min-width: 640px) {
	.guarantee {
		padding: 5rem 0;
	}
}
@media (min-width: 768px) {
	.guarantee {
		padding: 6rem 0;
	}
}

.guarantee-card {
	background: var(--bg-dark-blue);
	border-radius: 24px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
	box-shadow: 0 16px 48px rgba(13, 27, 42, 0.22);
	color: #fff;
}
@media (min-width: 640px) {
	.guarantee-card {
		padding: 2.5rem;
	}
}
@media (min-width: 768px) {
	.guarantee-card {
		padding: 3rem;
	}
}

.guarantee-badge {
	width: 7rem;
	height: 7rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.9);
}

.guarantee-card h2 {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-wrap: balance;
	margin: 0;
}
@media (min-width: 640px) {
	.guarantee-card h2 {
		font-size: 1.875rem;
	}
}
@media (min-width: 768px) {
	.guarantee-card h2 {
		font-size: 2.25rem;
	}
}

.guarantee-card > p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.125rem;
	line-height: 1.6;
	max-width: 32rem;
	margin: 0;
}
@media (min-width: 640px) {
	.guarantee-card > p {
		font-size: 1.25rem;
	}
}
.guarantee-card strong {
	color: #fff;
	font-weight: 600;
}

.guarantee-pill {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 1rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
}
.guarantee-pill p {
	color: #fff;
	font-weight: 700;
	font-size: 1.25rem;
	margin: 0;
}
@media (min-width: 640px) {
	.guarantee-pill p {
		font-size: 1.5rem;
	}
}
.muted-w {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
}

/* ============================================
   FAQ
============================================ */
.faq {
	background: var(--bg-secondary);
	padding: 3.5rem 0;
}
@media (min-width: 640px) {
	.faq {
		padding: 5rem 0;
	}
}
@media (min-width: 768px) {
	.faq {
		padding: 6rem 0;
	}
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	background: #fff;
	border-radius: 22px;
	border: 1px solid var(--border-soft);
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06);
	transition:
		box-shadow 0.2s,
		border-color 0.2s;
}
.faq-item:hover {
	box-shadow: 0 8px 24px rgba(13, 27, 42, 0.1);
	border-color: rgba(13, 27, 42, 0.16);
}

.faq-item summary {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.25rem;
	min-height: 64px;
	cursor: pointer;
	transition: background-color 0.15s;
	user-select: none;
}
@media (min-width: 640px) {
	.faq-item summary {
		padding: 1.25rem 1.5rem;
	}
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item summary:hover {
	background: var(--bg-secondary);
}
.faq-item summary:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 2px rgba(13, 27, 42, 0.2);
}

.faq-icon {
	color: var(--bg-dark-blue);
	flex-shrink: 0;
	transition: transform 0.3s ease-in-out;
}
.faq-item[open] .faq-icon {
	transform: rotate(45deg);
}

.faq-item summary > span {
	color: var(--text-primary);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.3;
}
@media (min-width: 640px) {
	.faq-item summary > span {
		font-size: 1.25rem;
	}
}

.faq-body {
	padding: 0 1.25rem 1.5rem;
}
@media (min-width: 640px) {
	.faq-body {
		padding: 0 1.5rem 1.5rem;
	}
}
.faq-body p {
	margin: 0;
	padding-top: 1rem;
	border-top: 1px solid var(--border-soft-2);
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
}
@media (min-width: 640px) {
	.faq-body p {
		font-size: 1.125rem;
	}
}

/* ============================================
   Floating CTA
============================================ */
.floating-cta {
	position: fixed;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%) translateY(1rem);
	z-index: 50;
	width: 100%;
	max-width: 360px;
	padding: 0 1rem;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.3s,
		transform 0.3s;
}
.floating-cta.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
.floating-cta-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	border-radius: 1rem;
	background: var(--bg-dark-blue);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	box-shadow: 0 8px 32px rgba(13, 27, 42, 0.35);
	transition:
		background-color 0.2s,
		transform 0.2s;
}
.floating-cta-link:hover {
	background: var(--bg-dark-blue-soft);
}
.floating-cta-link:active {
	transform: scale(0.98);
}

/* ============================================
   Footer
============================================ */
.site-footer {
	background: var(--bg-dark-blue);
	padding: 2rem 0;
	border-top: 1px solid rgba(13, 27, 42, 0.2);
}
.footer-line-1 {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}
.footer-line-2 {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	margin: 0.5rem 0 0;
}

/* ============================================
   Checkout page
============================================ */
.checkout-page {
	min-height: 100vh;
	background: #000;
	max-width: 100vw;
	overflow-x: hidden;
	color: #fff;
}
.checkout-wrap {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
@media (min-width: 640px) {
	.checkout-wrap {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}
.checkout-back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.45);
	min-height: 44px;
	margin-bottom: 2rem;
	padding: 0 0.5rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.15s;
}
.checkout-back:hover {
	color: #fff;
}
.checkout-back:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.checkout-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 1024px) {
	.checkout-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

.checkout-card {
	background: #161616;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.checkout-card {
		padding: 2rem;
	}
}

.checkout-summary {
	order: 2;
}
.checkout-form {
	order: 1;
}
@media (min-width: 1024px) {
	.checkout-summary {
		order: 1;
	}
	.checkout-form {
		order: 2;
	}
}

.checkout-card h1,
.checkout-card h2 {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin: 0;
}
@media (min-width: 640px) {
	.checkout-card h1,
	.checkout-card h2 {
		font-size: 1.5rem;
	}
}

.checkout-rows {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.checkout-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}
.checkout-row--bordered {
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.checkout-row-meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.checkout-product {
	font-weight: 600;
	color: #fff;
	font-size: 0.875rem;
}
@media (min-width: 640px) {
	.checkout-product {
		font-size: 1rem;
	}
}
.checkout-product-sub {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
}
.checkout-price-strike {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: line-through;
}
.checkout-total-label {
	font-weight: 600;
	color: #fff;
	font-size: 0.875rem;
}
@media (min-width: 640px) {
	.checkout-total-label {
		font-size: 1rem;
	}
}
.checkout-total-wrap {
	text-align: right;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.checkout-total {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
}
.checkout-total-sub {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
}

.checkout-checks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.checkout-checks li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.75);
}
.checkout-check {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.checkout-guarantee {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 1rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.75);
	flex-shrink: 0;
}
.checkout-guarantee > svg {
	flex-shrink: 0;
}
.checkout-guarantee-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
}
.checkout-guarantee-sub {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
}

.checkout-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding-top: 0.5rem;
}
.checkout-trust-item {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.75rem;
}
.checkout-trust-item svg {
	color: rgba(255, 255, 255, 0.75);
}
.checkout-trust-divider {
	width: 1px;
	height: 0.75rem;
	background: rgba(255, 255, 255, 0.08);
}

.checkout-form form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.form-field label {
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
}
.form-field input {
	width: 100%;
	min-height: 48px;
	padding: 0.75rem 1rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: #111;
	color: #fff;
	font-size: 0.875rem;
	font-family: inherit;
	transition:
		border-color 0.15s,
		box-shadow 0.15s;
}
.form-field input::placeholder {
	color: rgba(255, 255, 255, 0.25);
}
.form-field input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.btn-checkout {
	width: 100%;
	min-height: 64px;
	background: #fff;
	color: #000;
	font-weight: 600;
	font-size: 1.125rem;
	border-radius: 1rem;
	border: none;
	padding: 1rem 2rem;
	box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08);
	transition:
		background-color 0.2s,
		transform 0.2s;
	margin-top: 0.5rem;
}
.btn-checkout:hover {
	background: #e5e5e5;
}
.btn-checkout:active {
	background: #ccc;
	transform: scale(0.99);
}
.btn-checkout:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.checkout-secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.75rem;
}
.checkout-secure svg {
	color: rgba(255, 255, 255, 0.75);
}
