:root {
	--green: #88ff00;
	--green-strong: #72d900;
	--green-soft: rgba(136, 255, 0, 0.1);
	--dark: #080909;
	--dark-elevated: #101111;
	--card: #121313;
	--card-hover: #161817;
	--white: #ffffff;
	--text: #ecefec;
	--muted: #a9aea9;
	--muted-strong: #c9cdc9;
	--line: rgba(255, 255, 255, 0.09);
	--line-green: rgba(136, 255, 0, 0.35);
	--shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
	--radius-sm: 12px;
	--radius: 18px;
	--radius-lg: 26px;
	--container: 1200px;
	--header-height: 78px;
	--font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 20px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--dark);
	color: var(--text);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
	top: 32px;
}

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

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
}

p,
h1,
h2,
h3,
ul,
figure {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.18;
	text-wrap: balance;
}

::selection {
	background: var(--green);
	color: #000;
}

:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 4px;
}

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

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 99999;
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--green);
	color: #000;
	font-weight: 800;
	text-decoration: none;
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

.icon {
	width: 1.35em;
	height: 1.35em;
	flex: 0 0 auto;
}

.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	height: var(--header-height);
	border-bottom: 1px solid transparent;
	background: linear-gradient(to bottom, rgba(5, 6, 6, 0.72), rgba(5, 6, 6, 0.18));
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
	border-color: var(--line);
	background: rgba(8, 9, 9, 0.94);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	width: min(var(--container), calc(100% - 40px));
	height: 100%;
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: 30px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--white);
	font-weight: 900;
	text-decoration: none;
	letter-spacing: -0.04em;
	white-space: nowrap;
}

.brand__mark {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--line-green);
	border-radius: 12px;
	background: var(--green-soft);
	color: var(--green);
	box-shadow: 0 0 24px rgba(136, 255, 0, 0.12);
}

.brand__mark .icon {
	width: 24px;
	height: 24px;
}

.brand__text {
	font-size: 1.35rem;
}

.brand__text span {
	color: var(--green);
}

.custom-logo-link {
	display: flex;
	align-items: center;
}

.custom-logo {
	width: auto;
	max-width: 220px;
	max-height: 52px;
}

.primary-navigation {
	margin-left: auto;
}

.primary-navigation .menu {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a {
	position: relative;
	color: #dfe2df;
	font-size: 0.93rem;
	font-weight: 650;
	text-decoration: none;
}

.primary-navigation a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--green);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 160ms ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
	color: var(--green);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
	transform: scaleX(1);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 20px;
	border-radius: 999px;
	background: var(--green);
	color: #060706;
	font-size: 0.9rem;
	font-weight: 850;
	text-decoration: none;
	box-shadow: 0 0 22px rgba(136, 255, 0, 0.18);
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta:hover {
	background: #9aff27;
	box-shadow: 0 0 30px rgba(136, 255, 0, 0.32);
	transform: translateY(-2px);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--white);
	cursor: pointer;
}

.menu-toggle__line {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px auto;
	border-radius: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle__line:nth-child(2) {
	opacity: 0;
}

.site-header.is-open .menu-toggle__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
	position: relative;
	min-height: min(920px, 100svh);
	display: grid;
	place-items: center;
	padding: calc(var(--header-height) + 60px) 20px 54px;
	overflow: hidden;
	isolation: isolate;
	background-color: #060707;
	background-image: url("../images/iptvbeste-hero.webp");
	background-position: center;
	background-size: cover;
	color: var(--white);
	text-align: center;
}

.hero-overlay {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(5, 6, 6, 0.24), rgba(5, 6, 6, 0.66) 70%, #080909 100%),
		radial-gradient(circle at center, rgba(4, 5, 5, 0.2), rgba(4, 5, 5, 0.62) 72%);
}

.hero-content {
	width: min(960px, 100%);
	min-width: 0;
	margin-inline: auto;
	padding-top: 34px;
}

.hero-badge,
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--green);
	font-size: 0.79rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.hero-badge {
	padding: 9px 18px;
	margin-bottom: 25px;
	border: 1px solid var(--line-green);
	border-radius: 999px;
	background: rgba(136, 255, 0, 0.08);
	box-shadow: 0 0 20px rgba(136, 255, 0, 0.12);
}

.hero-badge .icon {
	width: 18px;
	height: 18px;
}

.hero-title {
	margin-bottom: 22px;
	font-size: clamp(2.4rem, 5.8vw, 4.65rem);
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 1.05;
	text-transform: uppercase;
	text-shadow: 0 4px 28px rgba(0, 0, 0, 0.6);
}

.hero-title span,
.section-heading h2 span {
	color: var(--green);
	text-shadow: 0 0 26px rgba(136, 255, 0, 0.25);
}

.hero-subtitle {
	max-width: 760px;
	margin: 0 auto 36px;
	color: #e0e4e0;
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	line-height: 1.7;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-bottom: 50px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 30px;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.98rem;
	font-weight: 850;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
	transform: translateY(-3px);
}

.button--primary {
	border-color: var(--green);
	background: var(--green);
	color: #050605;
	box-shadow: 0 10px 30px rgba(136, 255, 0, 0.16);
}

.button--primary:hover {
	background: #9aff27;
	box-shadow: 0 14px 36px rgba(136, 255, 0, 0.28);
}

.button--outline {
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(8, 9, 9, 0.3);
	color: var(--white);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.button--outline:hover {
	border-color: var(--green);
	background: var(--green-soft);
	color: var(--green);
}

.button--full {
	width: 100%;
}

.button--pulse {
	animation: pulse-green 2.2s infinite;
}

@keyframes pulse-green {
	0% {
		box-shadow: 0 0 0 0 rgba(136, 255, 0, 0.52);
	}
	70% {
		box-shadow: 0 0 0 16px rgba(136, 255, 0, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(136, 255, 0, 0);
	}
}

.devices-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 40px;
	max-width: 900px;
	padding-top: 28px;
	margin-inline: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.device-item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #c5cac5;
	font-size: 0.94rem;
	font-weight: 700;
	text-decoration: none;
	transition: color 160ms ease, transform 160ms ease;
}

.device-item .icon {
	color: var(--green);
	font-size: 1.2rem;
}

.device-item:hover {
	color: var(--green);
	transform: translateY(-2px);
}

.section {
	position: relative;
	padding: 92px 20px;
	background: var(--dark);
}

.section-heading {
	width: min(760px, 100%);
	margin: 0 auto 56px;
	text-align: center;
}

.section-heading .eyebrow {
	margin-bottom: 14px;
}

.section-heading h2 {
	margin-bottom: 16px;
	color: var(--white);
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 920;
	letter-spacing: -0.045em;
}

.section-heading p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1.06rem;
}

.features-grid,
.pricing-grid,
.trust-grid,
.guide-grid {
	width: min(var(--container), 100%);
	margin-inline: auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.feature-card,
.trust-card {
	position: relative;
	padding: 36px 27px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(145deg, #141515, #0f1010);
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
	transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.feature-card::before {
	position: absolute;
	top: -70px;
	right: -70px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(136, 255, 0, 0.11), transparent 68%);
	content: "";
}

.feature-card:hover,
.trust-card:hover {
	border-color: var(--line-green);
	background: linear-gradient(145deg, #171918, #101110);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32), 0 0 34px rgba(136, 255, 0, 0.06);
	transform: translateY(-8px);
}

.icon-box,
.trust-icon {
	display: grid;
	width: 72px;
	height: 72px;
	margin-bottom: 24px;
	place-items: center;
	border: 1px solid rgba(136, 255, 0, 0.14);
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green);
	transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.icon-box .icon,
.trust-icon .icon {
	width: 34px;
	height: 34px;
}

.feature-card:hover .icon-box {
	background: var(--green);
	color: #000;
	transform: scale(1.08);
}

.feature-card h3,
.trust-card h3 {
	margin-bottom: 13px;
	color: var(--white);
	font-size: 1.28rem;
	font-weight: 820;
}

.feature-card p,
.trust-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.pricing-section {
	background:
		radial-gradient(circle at 50% 40%, rgba(136, 255, 0, 0.065), transparent 46%),
		var(--dark);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	align-items: center;
	max-width: 1080px;
}

.price-card {
	position: relative;
	min-height: 570px;
	display: flex;
	flex-direction: column;
	padding: 42px 32px 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--card);
	box-shadow: var(--shadow);
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.price-card:hover {
	border-color: var(--line-green);
	transform: translateY(-9px);
}

.price-card--popular {
	z-index: 1;
	min-height: 620px;
	padding-top: 54px;
	border: 2px solid var(--green);
	background: linear-gradient(145deg, #191b19, #0d0e0d);
	box-shadow: 0 0 40px rgba(136, 255, 0, 0.13), var(--shadow);
	transform: scale(1.045);
}

.price-card--popular:hover {
	box-shadow: 0 0 52px rgba(136, 255, 0, 0.2), var(--shadow);
	transform: scale(1.055) translateY(-7px);
}

.popular-badge {
	position: absolute;
	top: -16px;
	left: 50%;
	padding: 6px 20px;
	border-radius: 999px;
	background: var(--green);
	color: #030403;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	white-space: nowrap;
	transform: translateX(-50%);
}

.plan-name {
	margin-bottom: 12px;
	color: var(--muted);
	font-size: 1.12rem;
	font-weight: 780;
	text-align: center;
}

.price {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 6px;
	margin-bottom: 28px;
	color: var(--white);
}

.price-value {
	font-size: clamp(2.7rem, 5vw, 3.5rem);
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 1;
}

.currency {
	padding-bottom: 7px;
	color: var(--muted);
	font-size: 1rem;
	font-weight: 750;
}

.features-list {
	display: grid;
	gap: 13px;
	padding: 24px 0 28px;
	margin: 0 0 22px;
	border-top: 1px solid var(--line);
	list-style: none;
}

.features-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--muted-strong);
	font-size: 0.92rem;
}

.features-list .icon {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	color: var(--green);
	stroke-width: 2.4;
}

.button--price {
	width: 100%;
	margin-top: auto;
	border-color: var(--green);
	background: transparent;
	color: var(--green);
}

.button--price:hover {
	background: var(--green);
	color: #000;
}

.price-card--popular .button--price {
	background: var(--green);
	color: #000;
}

.steps-section {
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.steps-container {
	position: relative;
	width: min(1080px, 100%);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	margin-inline: auto;
}

.steps-container::before {
	position: absolute;
	z-index: 0;
	top: 44px;
	right: 16%;
	left: 16%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(136, 255, 0, 0.65), transparent);
	content: "";
}

.step-item {
	position: relative;
	z-index: 1;
	padding: 0 22px;
	text-align: center;
}

.step-number {
	position: absolute;
	z-index: 2;
	top: -8px;
	left: calc(50% + 24px);
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 2px solid var(--dark);
	border-radius: 50%;
	background: var(--green);
	color: #000;
	font-size: 0.78rem;
	font-weight: 950;
}

.step-icon {
	position: relative;
	display: grid;
	width: 90px;
	height: 90px;
	margin: 0 auto 25px;
	place-items: center;
	border: 1px solid var(--line-green);
	border-radius: 50%;
	background: var(--card);
	color: var(--green);
	box-shadow: 0 0 0 10px var(--dark), 0 0 34px rgba(136, 255, 0, 0.09);
}

.step-icon .icon {
	width: 37px;
	height: 37px;
}

.step-item h3 {
	margin-bottom: 12px;
	color: var(--white);
	font-size: 1.24rem;
}

.step-item p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.faq-section {
	background: #0a0b0b;
	border-block: 1px solid rgba(255, 255, 255, 0.045);
}

.faq-container {
	width: min(900px, 100%);
	margin-inline: auto;
}

.faq-item {
	border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
	border-top: 1px solid var(--line);
}

.faq-item h3 {
	margin: 0;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 2px;
	border: 0;
	background: transparent;
	color: var(--white);
	cursor: pointer;
	font-size: 1.03rem;
	font-weight: 760;
	text-align: left;
}

.faq-question:hover {
	color: var(--green);
}

.faq-symbol {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	place-items: center;
	border: 1px solid var(--line-green);
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green);
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	transition: transform 200ms ease, color 200ms ease, background 200ms ease;
}

.faq-question[aria-expanded="true"] .faq-symbol {
	background: var(--green);
	color: #000;
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 58px 24px 2px;
}

.faq-answer p {
	margin: 0;
	color: var(--muted);
}

.final-cta {
	margin-top: 48px;
	text-align: center;
}

.final-cta h3 {
	margin-bottom: 20px;
	color: var(--white);
	font-size: 1.3rem;
}

.reviews-section {
	overflow: hidden;
}

.carousel {
	width: min(1500px, 100%);
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 52px;
	align-items: center;
	gap: 18px;
	margin-inline: auto;
}

.carousel-viewport {
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar {
	display: none;
}

.carousel-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 60px) / 4);
	gap: 20px;
}

.review-slide {
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(145deg, #151615, #0d0e0d);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
	scroll-snap-align: start;
	transition: transform 220ms ease, border-color 220ms ease;
}

.review-slide:hover {
	border-color: var(--line-green);
	transform: translateY(-5px);
}

.review-slide img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	object-position: top;
	background: #000;
}

.carousel-nav {
	display: grid;
	width: 52px;
	height: 52px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--line-green);
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green);
	cursor: pointer;
	transition: transform 160ms ease, color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.carousel-nav:hover {
	background: var(--green);
	color: #000;
	transform: scale(1.07);
}

.carousel-nav:disabled {
	cursor: default;
	opacity: 0.35;
	transform: none;
}

.reviews-note {
	max-width: 720px;
	margin: 24px auto 0;
	color: #747a74;
	font-size: 0.78rem;
	text-align: center;
}

.trust-section {
	background:
		linear-gradient(rgba(8, 9, 9, 0.96), rgba(8, 9, 9, 0.96)),
		radial-gradient(circle at 20% 0%, rgba(136, 255, 0, 0.1), transparent 40%);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.trust-card {
	padding: 32px;
}

.trust-card p {
	margin-bottom: 22px;
}

.trust-icon {
	width: 62px;
	height: 62px;
	border-radius: 16px;
}

.trust-icon .icon {
	width: 29px;
	height: 29px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--green);
	font-size: 0.9rem;
	font-weight: 760;
	text-decoration: none;
}

.text-link .icon {
	width: 16px;
	height: 16px;
	transition: transform 160ms ease;
}

.text-link:hover .icon {
	transform: translateX(4px);
}

.trust-panel {
	width: min(900px, 100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 30px;
	margin: 45px auto 0;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--card);
	box-shadow: var(--shadow);
}

.trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.trust-badges span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--muted-strong);
	font-size: 0.78rem;
	font-weight: 650;
}

.trust-badges .icon {
	width: 16px;
	height: 16px;
	color: var(--green);
}

.guide-section {
	background: #090a0a;
}

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

.guide-card {
	position: relative;
	min-height: 270px;
	display: flex;
	flex-direction: column;
	padding: 32px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		linear-gradient(150deg, rgba(136, 255, 0, 0.045), transparent 55%),
		var(--card);
	transition: transform 220ms ease, border-color 220ms ease;
}

.guide-card:hover {
	border-color: var(--line-green);
	transform: translateY(-6px);
}

.guide-card > span {
	margin-bottom: 22px;
	color: var(--green);
	font-size: 0.74rem;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.guide-card h3 {
	margin-bottom: 14px;
	color: var(--white);
	font-size: 1.35rem;
}

.guide-card h3 a {
	text-decoration: none;
}

.guide-card h3 a::after {
	position: absolute;
	inset: 0;
	content: "";
}

.guide-card p {
	margin: auto 0 0;
	color: var(--muted);
	font-size: 0.94rem;
}

.contact-section {
	padding-top: 36px;
}

.contact-panel {
	width: min(var(--container), 100%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 46px 50px;
	margin-inline: auto;
	border: 1px solid var(--line-green);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 90% 50%, rgba(136, 255, 0, 0.12), transparent 38%),
		linear-gradient(145deg, #151715, #0e0f0e);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.contact-panel .eyebrow {
	margin-bottom: 12px;
}

.contact-panel h2 {
	max-width: 720px;
	margin-bottom: 12px;
	color: var(--white);
	font-size: clamp(1.8rem, 4vw, 2.55rem);
	letter-spacing: -0.04em;
}

.contact-panel p {
	margin: 0;
	color: var(--muted);
}

.form-status {
	width: min(760px, 100%);
	padding: 14px 20px;
	margin: 20px auto 0;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--card);
	text-align: center;
}

.form-status--gesendet {
	border-color: var(--line-green);
	color: var(--green);
}

.site-footer {
	padding: 72px 20px 26px;
	border-top: 1px solid var(--line);
	background: #050606;
}

.site-footer__grid,
.site-footer__bottom {
	width: min(var(--container), 100%);
	margin-inline: auto;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1fr 0.8fr;
	gap: 60px;
	padding-bottom: 50px;
}

.footer-brand p {
	max-width: 430px;
	margin: 20px 0 0;
	color: var(--muted);
}

.footer-email {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 16px;
	color: var(--green);
	font-size: 0.92rem;
	font-weight: 750;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.footer-email .icon {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.footer-email:hover {
	color: var(--white);
}

.site-footer h2 {
	margin-bottom: 18px;
	color: var(--white);
	font-size: 1rem;
}

.footer-links {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links a {
	color: var(--muted);
	font-size: 0.9rem;
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--green);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	color: #747974;
	font-size: 0.78rem;
}

.site-footer__bottom p {
	margin: 0;
}

.contact-dialog {
	width: min(720px, calc(100% - 30px));
	max-height: min(860px, calc(100dvh - 30px));
	padding: 0;
	overflow-y: auto;
	border: 1px solid var(--line-green);
	border-radius: var(--radius-lg);
	background: #101210;
	color: var(--text);
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72);
}

.contact-dialog::backdrop {
	background: rgba(0, 0, 0, 0.78);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.contact-dialog__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 30px 32px 24px;
	border-bottom: 1px solid var(--line);
}

.contact-dialog__head .eyebrow {
	margin-bottom: 8px;
}

.contact-dialog__head h2 {
	margin: 0;
	color: var(--white);
	font-size: 1.7rem;
}

.dialog-close {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	padding: 0 0 3px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	color: var(--white);
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 1;
}

.dialog-close:hover {
	border-color: var(--green);
	color: var(--green);
}

.contact-form {
	display: grid;
	gap: 18px;
	padding: 28px 32px 32px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.contact-form label:not(.privacy-check) {
	display: grid;
	gap: 7px;
}

.contact-form label > span {
	color: var(--muted-strong);
	font-size: 0.82rem;
	font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #090a09;
	color: var(--white);
	outline: none;
}

.contact-form input,
.contact-form select {
	height: 48px;
	padding: 0 13px;
}

.contact-form textarea {
	min-height: 110px;
	padding: 12px 13px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(136, 255, 0, 0.08);
}

.privacy-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.privacy-check input {
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	margin-top: 4px;
	accent-color: var(--green);
}

.privacy-check span,
.form-note {
	color: var(--muted);
	font-size: 0.77rem;
}

.form-note {
	margin: -4px 0 0;
	text-align: center;
}

.form-note a,
.contact-email-direct a {
	color: var(--green);
	font-weight: 750;
	text-underline-offset: 3px;
	overflow-wrap: anywhere;
}

.contact-panel .contact-email-direct {
	margin-top: 10px;
}

.form-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.content-hero {
	padding: calc(var(--header-height) + 92px) 20px 76px;
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(circle at 75% 10%, rgba(136, 255, 0, 0.11), transparent 34%),
		linear-gradient(145deg, #111311, #070807);
}

.content-shell {
	width: min(1040px, 100%);
	margin-inline: auto;
}

.content-shell--narrow {
	width: min(790px, 100%);
}

.content-hero .eyebrow {
	margin-bottom: 16px;
}

.content-hero h1 {
	max-width: 900px;
	margin-bottom: 16px;
	color: var(--white);
	font-size: clamp(2.3rem, 6vw, 4.4rem);
	font-weight: 930;
	letter-spacing: -0.055em;
}

.content-hero p {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1.08rem;
}

.content-layout,
.prose {
	padding-block: 76px 100px;
}

.prose {
	color: var(--muted-strong);
}

.prose > * {
	max-width: 780px;
}

.prose > .alignwide {
	max-width: 1040px;
}

.prose h2,
.prose h3 {
	color: var(--white);
}

.prose h2 {
	margin-top: 48px;
	margin-bottom: 18px;
	font-size: clamp(1.65rem, 4vw, 2.25rem);
	letter-spacing: -0.035em;
}

.prose h3 {
	margin-top: 34px;
	margin-bottom: 12px;
	font-size: 1.35rem;
}

.prose p,
.prose ul,
.prose ol {
	margin-bottom: 22px;
}

.prose li {
	margin-bottom: 8px;
}

.prose a {
	color: var(--green);
	text-underline-offset: 3px;
}

.seo-landing {
	background: var(--dark);
}

.landing-shell {
	width: min(var(--container), 100%);
	margin-inline: auto;
}

.landing-reading {
	width: min(820px, 100%);
}

.landing-hero {
	position: relative;
	min-height: 720px;
	display: grid;
	align-items: center;
	padding: calc(var(--header-height) + 72px) 20px 78px;
	overflow: hidden;
	isolation: isolate;
	background-color: #060707;
	background-image: url("../images/iptvbeste-hero.webp");
	background-position: center;
	background-size: cover;
}

.landing-hero__overlay {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 6, 6, 0.94), rgba(5, 6, 6, 0.72) 58%, rgba(5, 6, 6, 0.7)),
		linear-gradient(to bottom, rgba(5, 6, 6, 0.2), rgba(5, 6, 6, 0.62) 74%, var(--dark));
}

.landing-hero__inner {
	padding-top: 24px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 36px;
	color: #969c96;
	font-size: 0.78rem;
}

.breadcrumbs a {
	color: var(--green);
	text-decoration: none;
}

.landing-hero .eyebrow {
	margin-bottom: 18px;
}

.landing-hero h1 {
	max-width: 920px;
	margin-bottom: 24px;
	color: var(--white);
	font-size: clamp(2.55rem, 6vw, 4.8rem);
	font-weight: 950;
	letter-spacing: -0.058em;
	line-height: 1.03;
}

.landing-lead {
	max-width: 800px;
	margin-bottom: 32px;
	color: #d8ddd8;
	font-size: clamp(1.03rem, 1.8vw, 1.22rem);
	line-height: 1.72;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.landing-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 36px;
}

.landing-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.landing-proof li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(8, 9, 9, 0.5);
	color: var(--muted-strong);
	font-size: 0.8rem;
	font-weight: 680;
}

.landing-proof .icon {
	width: 16px;
	height: 16px;
	color: var(--green);
	stroke-width: 2.4;
}

.landing-section {
	padding: 94px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.landing-section--shade {
	background:
		radial-gradient(circle at 50% 0%, rgba(136, 255, 0, 0.045), transparent 42%),
		#0a0b0b;
}

.landing-intro {
	background: var(--dark);
}

.landing-intro .eyebrow {
	margin-bottom: 16px;
}

.landing-intro h2,
.landing-split h2,
.landing-sources h2 {
	margin-bottom: 24px;
	color: var(--white);
	font-size: clamp(2rem, 4vw, 2.85rem);
	font-weight: 920;
	letter-spacing: -0.045em;
}

.landing-intro p {
	margin-bottom: 22px;
	color: var(--muted-strong);
	font-size: 1.03rem;
	line-height: 1.82;
}

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

.landing-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	padding-bottom: 28px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--line);
	color: #777d77;
	font-size: 0.78rem;
}

.landing-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.landing-card {
	min-height: 310px;
	padding: 30px 25px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(145deg, #141515, #0e0f0f);
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
	transition: transform 220ms ease, border-color 220ms ease;
}

.landing-card:hover {
	border-color: var(--line-green);
	transform: translateY(-6px);
}

.landing-card .icon-box {
	width: 60px;
	height: 60px;
	margin-bottom: 22px;
}

.landing-card .icon-box .icon {
	width: 28px;
	height: 28px;
}

.landing-card h3 {
	margin-bottom: 12px;
	color: var(--white);
	font-size: 1.2rem;
}

.landing-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.93rem;
}

.landing-split {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	align-items: center;
	gap: 78px;
}

.landing-split__copy .eyebrow {
	margin-bottom: 14px;
}

.landing-split__copy p {
	margin-bottom: 24px;
	color: var(--muted);
	font-size: 1.02rem;
}

.landing-checklist {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--card);
	box-shadow: var(--shadow);
	list-style: none;
}

.landing-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 22px;
	border-bottom: 1px solid var(--line);
	color: var(--muted-strong);
}

.landing-checklist li:last-child {
	border-bottom: 0;
}

.landing-checklist li > span {
	display: grid;
	width: 25px;
	height: 25px;
	flex: 0 0 25px;
	margin-top: 1px;
	place-items: center;
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green);
}

.landing-checklist .icon {
	width: 15px;
	height: 15px;
	stroke-width: 2.5;
}

.landing-steps {
	width: min(1040px, 100%);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
}

.landing-steps li {
	position: relative;
	min-height: 220px;
	padding: 34px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--card);
}

.landing-step-number {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 24px;
	place-items: center;
	border: 1px solid var(--line-green);
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green);
	font-weight: 900;
}

.landing-steps h3 {
	margin-bottom: 10px;
	color: var(--white);
	font-size: 1.2rem;
}

.landing-steps p {
	margin: 0;
	color: var(--muted);
	font-size: 0.94rem;
}

.landing-sources {
	padding: 34px 20px 72px;
	background: #0a0b0b;
}

.landing-sources h2 {
	margin-bottom: 14px;
	font-size: 1.3rem;
}

.landing-sources ul {
	display: grid;
	gap: 8px;
	padding-left: 20px;
	margin: 0;
	color: var(--muted);
}

.landing-sources a {
	color: var(--green);
	text-underline-offset: 3px;
}

.landing-related {
	background: #090a0a;
}

.landing-closing {
	padding-top: 24px;
}

.article-meta,
.post-meta {
	color: #747a74 !important;
	font-size: 0.82rem !important;
}

.article-image {
	margin: 0 0 40px;
	overflow: hidden;
	border-radius: var(--radius);
}

.article-image img {
	width: 100%;
	height: auto;
}

.article-cta {
	max-width: 790px;
	padding: 34px;
	margin-top: 56px;
	border: 1px solid var(--line-green);
	border-radius: var(--radius);
	background: var(--card);
}

.article-cta h2 {
	margin-top: 0;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--card);
	transition: transform 200ms ease, border-color 200ms ease;
}

.post-card:hover {
	border-color: var(--line-green);
	transform: translateY(-5px);
}

.post-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.post-card:hover .post-card__image img {
	transform: scale(1.035);
}

.post-card__body {
	padding: 26px;
}

.post-card h2 {
	margin-bottom: 12px;
	color: var(--white);
	font-size: 1.3rem;
}

.post-card h2 a {
	text-decoration: none;
}

.post-card p:not(.post-meta) {
	color: var(--muted);
	font-size: 0.9rem;
}

.navigation.pagination {
	margin-top: 50px;
}

.nav-links {
	display: flex;
	gap: 8px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 10px;
	color: var(--muted-strong);
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--green);
	background: var(--green);
	color: #000;
}

.empty-state,
.not-found {
	text-align: center;
}

.not-found {
	min-height: 72vh;
	display: grid;
	place-items: center;
	padding: calc(var(--header-height) + 80px) 20px 80px;
}

.error-code {
	display: block;
	color: var(--green);
	font-size: clamp(5rem, 18vw, 10rem);
	font-weight: 950;
	letter-spacing: -0.08em;
	line-height: 0.9;
	text-shadow: 0 0 45px rgba(136, 255, 0, 0.22);
}

.not-found h1 {
	margin: 18px 0 12px;
	color: var(--white);
	font-size: clamp(2rem, 6vw, 3.4rem);
}

.not-found p {
	margin-bottom: 28px;
	color: var(--muted);
}

.reveal {
	opacity: 1;
	transform: none;
}

.js .reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1100px) {
	.site-header__inner {
		gap: 18px;
	}

	.primary-navigation .menu {
		gap: 18px;
	}

	.primary-navigation a {
		font-size: 0.86rem;
	}

	.features-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.landing-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
		gap: 42px;
	}

	.carousel-track {
		grid-auto-columns: calc((100% - 40px) / 3);
	}

	.review-slide img {
		height: 500px;
	}
}

@media (max-width: 900px) {
	:root {
		--header-height: 70px;
	}

	body.menu-open {
		overflow: hidden;
	}

	body.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		width: min(100% - 28px, var(--container));
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.header-cta {
		min-height: 40px;
		padding-inline: 16px;
	}

	.primary-navigation {
		position: absolute;
		top: var(--header-height);
		right: 0;
		left: 0;
		max-height: calc(100dvh - var(--header-height));
		padding: 10px 20px 24px;
		overflow-y: auto;
		overscroll-behavior: contain;
		border-bottom: 1px solid var(--line);
		background: rgba(8, 9, 9, 0.98);
	}

	.js .primary-navigation {
		visibility: hidden;
		opacity: 0;
		transform: translateY(-10px);
		transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	}

	.js .site-header.is-open .primary-navigation {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.primary-navigation .menu {
		display: grid;
		gap: 0;
	}

	.primary-navigation a {
		display: block;
		padding: 12px 4px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.055);
		font-size: 0.96rem;
	}

	.primary-navigation a::after {
		display: none;
	}

	.pricing-grid,
	.trust-grid,
	.guide-grid {
		grid-template-columns: 1fr;
		max-width: 620px;
	}

	.price-card,
	.price-card--popular {
		min-height: 0;
		transform: none;
	}

	.price-card--popular {
		order: -1;
	}

	.price-card--popular:hover {
		transform: translateY(-7px);
	}

	.steps-container {
		grid-template-columns: 1fr;
		gap: 46px;
		max-width: 620px;
	}

	.steps-container::before {
		top: 40px;
		bottom: 40px;
		left: 50%;
		width: 2px;
		height: auto;
		background: linear-gradient(transparent, rgba(136, 255, 0, 0.45), transparent);
	}

	.step-item {
		padding: 0 30px 20px;
		background: var(--dark);
	}

	.carousel-track {
		grid-auto-columns: calc((100% - 20px) / 2);
	}

	.review-slide img {
		height: 560px;
	}

	.trust-panel,
	.contact-panel {
		flex-direction: column;
		align-items: flex-start;
	}

	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.landing-split {
		grid-template-columns: 1fr;
		gap: 42px;
		max-width: 760px;
	}

	.landing-steps {
		grid-template-columns: 1fr;
		max-width: 680px;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	:root {
		--header-height: 66px;
		--radius-lg: 20px;
	}

	.site-header__inner {
		width: calc(100% - 22px);
	}

	.brand__mark {
		width: 34px;
		height: 34px;
		border-radius: 10px;
	}

	.brand__mark .icon {
		width: 21px;
		height: 21px;
	}

	.brand__text {
		font-size: 1.1rem;
	}

	.header-cta {
		display: none;
	}

	.menu-toggle {
		margin-left: auto;
	}

	.hero-section {
		min-height: auto;
		padding: calc(var(--header-height) + 42px) 16px 42px;
		background-position: 60% center;
	}

	.hero-overlay {
		background:
			linear-gradient(to bottom, rgba(5, 6, 6, 0.36), rgba(5, 6, 6, 0.7) 72%, #080909 100%),
			radial-gradient(circle at center, rgba(4, 5, 5, 0.14), rgba(4, 5, 5, 0.66) 76%);
	}

	.hero-content {
		width: 100%;
		min-width: 0;
		padding-top: 0;
	}

	.hero-badge {
		max-width: 100%;
		justify-content: center;
		padding: 8px 13px;
		margin-bottom: 18px;
		font-size: 0.67rem;
		line-height: 1.25;
		white-space: normal;
	}

	.hero-title {
		max-width: 100%;
		margin-bottom: 18px;
		font-size: clamp(1.68rem, 8.8vw, 2.65rem);
		letter-spacing: -0.045em;
		line-height: 1.06;
	}

	.hero-subtitle {
		margin-bottom: 28px;
		font-size: 0.93rem;
		line-height: 1.55;
	}

	.hero-buttons {
		display: grid;
		gap: 12px;
		margin-bottom: 30px;
	}

	.hero-buttons .button {
		width: 100%;
	}

	.button {
		min-height: 50px;
		padding: 12px 20px;
	}

	.devices-bar {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding-top: 18px;
	}

	.device-item {
		min-width: 0;
		min-height: 52px;
		justify-content: flex-start;
		gap: 7px;
		padding: 8px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 12px;
		background: rgba(8, 9, 9, 0.44);
		font-size: 0.72rem;
		line-height: 1.25;
		text-align: left;
	}

	.section {
		padding: 62px 16px;
	}

	.section-heading {
		margin-bottom: 34px;
	}

	.section-heading h2 {
		font-size: 1.82rem;
		overflow-wrap: anywhere;
	}

	.section-heading p {
		font-size: 0.95rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.feature-card,
	.trust-card {
		padding: 26px 21px;
	}

	.icon-box {
		width: 62px;
		height: 62px;
		margin-bottom: 20px;
	}

	.icon-box .icon {
		width: 30px;
		height: 30px;
	}

	.price-card,
	.price-card--popular {
		padding: 38px 21px 26px;
	}

	.price-card--popular {
		padding-top: 46px;
	}

	.features-list {
		gap: 11px;
		padding-block: 20px 24px;
	}

	.features-list li {
		font-size: 0.88rem;
	}

	.steps-container {
		gap: 32px;
	}

	.faq-question {
		gap: 12px;
		padding-block: 20px;
		font-size: 0.94rem;
	}

	.faq-answer {
		padding-right: 0;
	}

	.carousel {
		position: relative;
		display: block;
		max-width: 430px;
		padding-inline: 4px;
	}

	.carousel-track {
		grid-auto-columns: 100%;
		gap: 12px;
	}

	.carousel-nav {
		position: absolute;
		z-index: 3;
		top: 50%;
		width: 38px;
		height: 38px;
		background: rgba(8, 9, 9, 0.88);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
		transform: translateY(-50%);
	}

	.carousel-nav:hover {
		transform: translateY(-50%) scale(1.05);
	}

	.carousel-nav:disabled {
		transform: translateY(-50%);
	}

	.carousel-prev {
		left: 10px;
	}

	.carousel-next {
		right: 10px;
	}

	.review-slide img {
		height: auto;
		max-height: none;
		object-fit: contain;
	}

	.reviews-note {
		padding-inline: 8px;
		margin-top: 18px;
	}

	.trust-panel {
		padding: 24px;
	}

	.trust-panel .button {
		width: 100%;
	}

	.contact-section {
		padding-top: 20px;
	}

	.contact-panel {
		padding: 28px 21px;
	}

	.contact-panel h2 {
		font-size: 1.68rem;
	}

	.contact-panel .button {
		width: 100%;
	}

	.site-footer {
		padding-top: 56px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.site-footer__bottom {
		display: grid;
		text-align: center;
	}

	.contact-dialog {
		width: calc(100% - 16px);
		max-height: calc(100dvh - 16px);
		border-radius: 18px;
	}

	.contact-dialog__head {
		position: sticky;
		z-index: 2;
		top: 0;
		padding: 20px 18px 16px;
		background: #101210;
	}

	.contact-dialog__head h2 {
		font-size: 1.38rem;
	}

	.contact-form {
		gap: 16px;
		padding: 20px 18px 24px;
	}

	.form-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.content-hero {
		padding: calc(var(--header-height) + 66px) 16px 58px;
	}

	.content-hero h1 {
		font-size: clamp(1.95rem, 10vw, 3.1rem);
		overflow-wrap: anywhere;
	}

	.content-layout,
	.prose {
		padding: 54px 16px 76px;
	}

	.landing-hero {
		min-height: auto;
		padding: calc(var(--header-height) + 46px) 16px 58px;
		background-position: 60% center;
	}

	.landing-hero__inner {
		padding-top: 0;
	}

	.breadcrumbs {
		margin-bottom: 26px;
		font-size: 0.7rem;
	}

	.landing-hero h1 {
		font-size: clamp(2rem, 10.5vw, 3.2rem);
		overflow-wrap: anywhere;
	}

	.landing-lead {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.landing-actions {
		display: grid;
	}

	.landing-actions .button {
		width: 100%;
	}

	.landing-proof {
		display: grid;
	}

	.landing-proof li {
		border-radius: 12px;
	}

	.landing-section {
		padding: 62px 16px;
	}

	.landing-intro h2,
	.landing-split h2 {
		font-size: 1.85rem;
		overflow-wrap: anywhere;
	}

	.landing-intro p {
		font-size: 0.96rem;
		line-height: 1.72;
	}

	.landing-card-grid {
		grid-template-columns: 1fr;
	}

	.landing-card {
		min-height: 0;
		padding: 26px 21px;
	}

	.landing-checklist li {
		padding: 16px 17px;
		font-size: 0.92rem;
	}

	.landing-steps li {
		min-height: 0;
		padding: 28px 22px;
	}

	.landing-sources {
		padding: 26px 16px 54px;
	}

	.post-grid {
		grid-template-columns: 1fr;
	}

	.article-cta {
		padding: 26px 22px;
	}
}

@media (max-width: 380px) {
	.hero-badge {
		font-size: 0.62rem;
	}

	.hero-title {
		font-size: clamp(1.62rem, 8.6vw, 2.05rem);
	}

	.device-item {
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		padding: 7px 5px;
		font-size: 0.67rem;
		text-align: center;
	}

	.carousel-nav {
		width: 34px;
		height: 34px;
	}

	.carousel-prev {
		left: 8px;
	}

	.carousel-next {
		right: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.js .reveal {
		opacity: 1;
		transform: none;
	}
}
