/*
Theme Name: SubscribeIPTV
Theme URI: https://subscribeiptv.us/
Author: SubscribeIPTV
Description: Custom theme for the SubscribeIPTV subscription site.
Version: 1.0.2
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: subscribeiptv
*/

/* ==========================================================================
   Fonts (self-hosted, swap)
   ========================================================================== */
@font-face {
	font-family: "Bricolage Grotesque";
	src: url("assets/fonts/bricolage-grotesque-800.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Public Sans";
	src: url("assets/fonts/public-sans-latin.woff2") format("woff2");
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
	--bg: #f6f1e7;
	--bg-alt: #eee6d6;
	--surface: #fffcf6;
	--surface-strong: #ffffff;
	--ink: #11221d;
	--ink-soft: #3a4a44;
	--muted: #65756e;
	--line: #d9cfbc;
	--line-soft: #e7dfcf;

	--brand: #0e5a4a;
	--brand-fill: #0e5a4a;
	--brand-fill-strong: #0a4337;
	--brand-deep: #082f27;
	--brand-tint: #dcede6;
	--on-brand: #ffffff;
	--mark: #0e5a4a;

	--accent: #ff7438;
	--accent-strong: #e8561a;
	--accent-tint: #ffe4d5;
	--on-accent: #1b0e06;

	--radius-sm: 10px;
	--radius: 18px;
	--radius-lg: 28px;
	--notch: 12px;

	--shadow-sm: 0 1px 2px rgb(17 34 29 / 6%), 0 3px 10px rgb(17 34 29 / 5%);
	--shadow: 0 2px 4px rgb(17 34 29 / 5%), 0 16px 40px -18px rgb(8 47 39 / 28%);
	--shadow-lg: 0 30px 70px -30px rgb(8 47 39 / 50%);
	--drop: drop-shadow(0 1px 1px rgb(17 34 29 / 8%)) drop-shadow(0 16px 26px rgb(8 47 39 / 13%));

	--font-head: "Bricolage Grotesque", "Public Sans", ui-sans-serif, system-ui, sans-serif;
	--font-body: "Public Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--wrap: 1180px;
	--wrap-mid: 980px;
	--wrap-narrow: 760px;
	--gutter: clamp(16px, 4vw, 28px);
	--header-h: 72px;

	/* Ticket notches: circular bites where two halves of a card meet. */
	--notch-bottom: radial-gradient(circle var(--notch) at 0 100%, #0000 98%, #000) 0 0 / 51% 100% no-repeat, radial-gradient(circle var(--notch) at 100% 100%, #0000 98%, #000) 100% 0 / 51% 100% no-repeat;
	--notch-top: radial-gradient(circle var(--notch) at 0 0, #0000 98%, #000) 0 0 / 51% 100% no-repeat, radial-gradient(circle var(--notch) at 100% 0, #0000 98%, #000) 100% 0 / 51% 100% no-repeat;
	--notch-right: radial-gradient(circle 14px at 100% 0, #0000 98%, #000) 0 0 / 100% 51% no-repeat, radial-gradient(circle 14px at 100% 100%, #0000 98%, #000) 0 100% / 100% 51% no-repeat;
	--notch-left: radial-gradient(circle 14px at 0 0, #0000 98%, #000) 0 0 / 100% 51% no-repeat, radial-gradient(circle 14px at 0 100%, #0000 98%, #000) 0 100% / 100% 51% no-repeat;

	color-scheme: light;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #0b1512;
		--bg-alt: #0f1d19;
		--surface: #12231e;
		--surface-strong: #162a24;
		--ink: #ebf2ee;
		--ink-soft: #c3d1cb;
		--muted: #93a69e;
		--line: #28403a;
		--line-soft: #1d312a;

		--brand: #7fd4b9;
		--brand-fill: #0f5f4e;
		--brand-fill-strong: #137260;
		--brand-deep: #061f1a;
		--brand-tint: #15352c;
		--mark: #17806a;

		--accent-tint: #3b2317;

		--shadow-sm: 0 1px 2px rgb(0 0 0 / 35%);
		--shadow: 0 16px 40px -18px rgb(0 0 0 / 65%);
		--shadow-lg: 0 30px 70px -30px rgb(0 0 0 / 75%);
		--drop: drop-shadow(0 1px 1px rgb(0 0 0 / 35%)) drop-shadow(0 16px 26px rgb(0 0 0 / 35%));

		color-scheme: dark;
	}
}

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

a {
	color: var(--brand);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--accent-strong);
}

:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
	border-radius: 6px;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.5em;
	color: var(--ink);
	font-family: var(--font-head);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.3rem, 1.5rem + 3.4vw, 3.6rem);
}

h2 {
	font-size: clamp(1.9rem, 1.3rem + 2.3vw, 3rem);
}

h3 {
	font-size: 1.3rem;
	line-height: 1.2;
	letter-spacing: -0.015em;
}

p {
	margin: 0 0 1em;
}

ul,
ol {
	margin: 0 0 1em;
}

[id] {
	scroll-margin-top: calc(var(--header-h) + 20px);
}

.wrap {
	width: min(100% - 2 * var(--gutter), var(--wrap));
	margin-inline: auto;
}

.wrap--mid {
	width: min(100% - 2 * var(--gutter), var(--wrap-mid));
}

.wrap--narrow {
	width: min(100% - 2 * var(--gutter), var(--wrap-narrow));
}

.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: 10px;
	left: -9999px;
	z-index: 200;
	padding: 10px 16px;
	border-radius: 10px;
	background: var(--surface-strong);
	color: var(--ink);
	font-weight: 700;
	box-shadow: var(--shadow);
}

.skip-link:focus {
	left: 10px;
}

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

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn,
.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	min-height: 48px;
	padding: 0.72em 1.35em;
	border: 2px solid transparent;
	border-radius: 999px;
	font: 700 1rem/1.15 var(--font-body);
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover,
.wpcf7-submit:hover {
	transform: translateY(-1px);
}

.btn:active,
.wpcf7-submit:active {
	transform: translateY(0);
}

.btn--accent,
.wpcf7-submit {
	background: var(--accent);
	color: var(--on-accent);
	box-shadow: 0 10px 24px -12px rgb(232 86 26 / 75%);
}

.btn--accent:hover,
.wpcf7-submit:hover {
	background: var(--accent-strong);
	color: var(--on-accent);
}

.btn--brand {
	background: var(--brand-fill);
	color: var(--on-brand);
}

.btn--brand:hover {
	background: var(--brand-fill-strong);
	color: var(--on-brand);
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: currentColor;
}

.btn--ghost:hover {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--bg);
}

.btn--light {
	background: #ffffff;
	color: var(--brand-deep);
}

.btn--light:hover {
	background: var(--accent);
	color: var(--on-accent);
}

.btn--lg {
	min-height: 56px;
	padding-inline: 1.6em;
	font-size: 1.05rem;
}

.btn--sm {
	min-height: 42px;
	padding: 0.55em 1.1em;
	font-size: 0.95rem;
}

.btn--block {
	width: 100%;
}

.btn .arrow {
	transition: transform 0.15s ease;
}

.btn:hover .arrow {
	transform: translateX(3px);
}

.link-arrow {
	font-weight: 700;
	text-decoration: none;
}

.link-arrow:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Header + navigation
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: color-mix(in srgb, var(--bg) 90%, transparent);
	-webkit-backdrop-filter: saturate(1.4) blur(12px);
	backdrop-filter: saturate(1.4) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: var(--shadow-sm);
}

.site-header__bar {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: var(--header-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	font: 800 1.32rem/1 var(--font-head);
	letter-spacing: -0.035em;
	text-decoration: none;
	white-space: nowrap;
}

.brand:hover {
	color: var(--ink);
}

.brand__mark {
	flex: none;
	width: 38px;
	height: 38px;
}

.brand__word b {
	color: var(--brand);
	font-weight: 800;
}

.mark-ticket {
	fill: var(--mark);
}

.mark-play {
	fill: var(--accent);
	stroke: var(--accent);
	stroke-width: 2.5;
	stroke-linejoin: round;
}

.nav {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-left: auto;
}

.nav__list {
	display: flex;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav__list a {
	display: block;
	padding: 9px 13px;
	border-radius: 999px;
	color: var(--ink-soft);
	font-weight: 600;
	font-size: 0.98rem;
	text-decoration: none;
}

.nav__list a:hover,
.nav__list a[aria-current="page"] {
	background: var(--bg-alt);
	color: var(--ink);
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-left: auto;
	padding: 0;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink);
	cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bars {
	position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before {
	top: -6px;
}

.nav-toggle__bars::after {
	top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 920px) {
	.nav-toggle {
		display: inline-flex;
	}

	.nav {
		position: fixed;
		inset: var(--header-h) 0 auto;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		max-height: calc(100dvh - var(--header-h));
		overflow-y: auto;
		padding: 12px var(--gutter) 28px;
		border-bottom: 1px solid var(--line);
		background: var(--bg);
		box-shadow: var(--shadow);
	}

	.nav.is-open {
		display: flex;
	}

	.nav__list {
		flex-direction: column;
	}

	.nav__list a {
		padding: 14px 12px;
		border-radius: 12px;
		font-size: 1.08rem;
	}

	.nav__cta {
		width: 100%;
	}
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
	padding-block: clamp(64px, 8vw, 112px);
}

.section--alt {
	background: var(--bg-alt);
}

.section--tight-top {
	padding-top: clamp(24px, 3vw, 40px);
}

.section__head {
	max-width: 700px;
	margin-bottom: clamp(32px, 4vw, 52px);
}

.section__head--center {
	margin-inline: auto;
	text-align: center;
}

.section__head h2 {
	margin-bottom: 0.35em;
}

.section__sub {
	margin: 0;
	color: var(--ink-soft);
	font-size: 1.12rem;
}

.kicker {
	display: inline-block;
	margin: 0 0 14px;
	color: var(--accent-strong);
	font: 800 0.8rem/1 var(--font-body);
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.kicker--light {
	color: #ffc6ab;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	padding-block: clamp(36px, 6vw, 84px) clamp(64px, 8vw, 112px);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -220px;
	right: -180px;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 16%, transparent), transparent);
	pointer-events: none;
}

.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(36px, 5vw, 76px);
	align-items: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 7px 14px 7px 11px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink-soft);
	font-size: 0.86rem;
	font-weight: 700;
}

.eyebrow__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px var(--accent-tint);
}

.hero h1 {
	margin: 20px 0;
	font-size: clamp(2.7rem, 1.35rem + 4.9vw, 4.9rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.hl {
	white-space: nowrap;
	background-image: linear-gradient(var(--accent), var(--accent));
	background-repeat: no-repeat;
	background-position: 0 94%;
	background-size: 100% 0.13em;
}

.lede {
	max-width: 36em;
	color: var(--ink-soft);
	font-size: clamp(1.08rem, 1rem + 0.35vw, 1.24rem);
	line-height: 1.6;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 30px 0 26px;
}

.ticks {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--ink-soft);
	font-weight: 600;
	font-size: 0.97rem;
}

.ticks li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.ticks li::before,
.plan__list li::before,
.prose ul.checks li::before {
	content: "";
	flex: none;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border-radius: 50%;
	background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.4l3 3 6-6.4' fill='none' stroke='%230e5a4a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat;
}

/* Hero visual: a TV-guide panel with the subscription pass on top. */
.hero__visual {
	position: relative;
}

.guide {
	position: relative;
	overflow: hidden;
	padding: 22px 22px 148px;
	border-radius: var(--radius-lg);
	background: var(--brand-deep);
	color: #dcebe5;
	box-shadow: var(--shadow-lg);
}

.guide::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
	background-position: 98px 0;
	background-size: calc((100% - 98px) / 3) 100%;
	pointer-events: none;
}

.guide__head,
.guide__row {
	position: relative;
	display: grid;
	grid-template-columns: 66px minmax(0, 1fr);
	gap: 10px;
}

.guide__head {
	padding-bottom: 6px;
	color: rgb(220 235 229 / 60%);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.guide__times {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.guide__row {
	margin-top: 10px;
}

.guide__ch {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	border-radius: 12px;
	background: rgb(255 255 255 / 8%);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.09em;
}

.guide__slots {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 8px;
}

.slot {
	display: flex;
	align-items: center;
	grid-column: span 2;
	height: 46px;
	padding: 0 12px;
	overflow: hidden;
	border-radius: 12px;
	background: rgb(255 255 255 / 10%);
	font-size: 0.82rem;
	font-weight: 600;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.slot--1 {
	grid-column: span 1;
}

.slot--3 {
	grid-column: span 3;
}

.slot--4 {
	grid-column: span 4;
}

.slot--live {
	background: var(--accent);
	color: var(--on-accent);
	font-weight: 700;
}

.slot--live::before {
	content: "";
	flex: none;
	width: 7px;
	height: 7px;
	margin-right: 8px;
	border-radius: 50%;
	background: currentColor;
	animation: sbi-pulse 1.8s ease-in-out infinite;
}

@keyframes sbi-pulse {
	50% {
		opacity: 0.25;
	}
}

.hero__pass {
	position: relative;
	width: min(340px, 88%);
	margin: -124px 0 0 auto;
	transform: rotate(-2.5deg);
}

/* ==========================================================================
   Ticket (shared by the hero pass, plan cards and the trial band)
   ========================================================================== */
.ticket {
	display: flex;
	flex-direction: column;
	filter: var(--drop);
}

.ticket__top,
.ticket__bottom {
	background: var(--surface-strong);
}

.ticket__top {
	border-radius: 22px 22px 0 0;
	-webkit-mask: var(--notch-bottom);
	mask: var(--notch-bottom);
}

.ticket__bottom {
	flex: 1;
	border-top: 2px dashed var(--line);
	border-radius: 0 0 22px 22px;
	-webkit-mask: var(--notch-top);
	mask: var(--notch-top);
}

.pass .ticket__top {
	padding: 20px 22px 18px;
}

.pass .ticket__bottom {
	padding: 16px 22px 20px;
}

.pass__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.pass__brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font: 800 1rem/1 var(--font-head);
	letter-spacing: -0.02em;
}

.pass__brand svg {
	width: 24px;
	height: 24px;
}

.pass__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--brand-tint);
	color: var(--brand);
	font-size: 0.76rem;
	font-weight: 800;
}

.pass__status i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}

.pass__label {
	margin: 16px 0 4px;
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pass__big {
	margin: 0;
	font: 800 2.3rem/1 var(--font-head);
	letter-spacing: -0.03em;
}

.pass__big small {
	margin-left: 6px;
	color: var(--muted);
	font: 600 0.84rem var(--font-body);
	letter-spacing: 0;
}

.pass__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 0 0 14px;
}

.pass__stats dt {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.3;
}

.pass__stats dd {
	margin: 3px 0 0;
	font: 800 1.08rem/1.1 var(--font-head);
	letter-spacing: -0.01em;
}

.pass__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pass__chips li {
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--bg-alt);
	color: var(--ink-soft);
	font-size: 0.74rem;
	font-weight: 700;
}

/* ==========================================================================
   Steps
   ========================================================================== */
.steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.step {
	position: relative;
	padding: 28px 26px 26px;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	background: var(--surface);
}

.step__num {
	display: block;
	margin-bottom: 16px;
	color: var(--brand);
	font: 800 3rem/1 var(--font-head);
	letter-spacing: -0.05em;
}

.step h3 {
	margin-bottom: 0.4em;
}

.step p {
	margin: 0;
	color: var(--ink-soft);
}

@media (min-width: 901px) {
	.step:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 52px;
		right: -23px;
		width: 24px;
		border-top: 2px dashed var(--line);
	}
}

/* ==========================================================================
   Plans
   ========================================================================== */
.plans {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.plan .ticket__top {
	position: relative;
	padding: 26px 22px 22px;
}

.plan .ticket__bottom {
	display: flex;
	flex-direction: column;
	padding: 20px 22px 24px;
}

.plan__name {
	margin: 0 0 12px;
	font-size: 1.15rem;
}

.plan__price {
	display: flex;
	align-items: flex-start;
	margin: 0;
	font: 800 3.1rem/1 var(--font-head);
	letter-spacing: -0.045em;
}

.plan__cur {
	margin: 0.2em 0.04em 0 0;
	font-size: 0.5em;
}

.plan__cents {
	margin-top: 0.2em;
	font-size: 0.44em;
	letter-spacing: -0.02em;
}

.plan__per {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 600;
}

.plan__save {
	display: inline-block;
	margin: 12px 0 0;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--accent-tint);
	color: var(--ink);
	font-size: 0.8rem;
	font-weight: 800;
}

.plan__tag {
	position: absolute;
	top: 18px;
	right: 18px;
	padding: 5px 11px;
	border-radius: 999px;
	background: var(--accent);
	color: var(--on-accent);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.plan__list {
	display: grid;
	gap: 10px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	font-size: 0.95rem;
}

.plan__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.plan .btn {
	margin-top: auto;
}

.plan--featured .ticket__top,
.plan--featured .ticket__bottom {
	background: var(--brand-fill);
	color: var(--on-brand);
}

.plan--featured .ticket__bottom {
	border-top-color: rgb(255 255 255 / 32%);
}

.plan--featured .plan__name {
	color: var(--on-brand);
}

.plan--featured .plan__per {
	color: rgb(255 255 255 / 78%);
}

.plan--featured .plan__save {
	background: rgb(255 255 255 / 16%);
	color: #ffffff;
}

.plan--featured .plan__list li::before {
	background-color: rgb(255 255 255 / 16%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.4l3 3 6-6.4' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.plans__note {
	margin: 34px auto 0;
	max-width: 760px;
	color: var(--ink-soft);
	font-size: 0.97rem;
	text-align: center;
}

/* ==========================================================================
   Feature + device tiles
   ========================================================================== */
.features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.feature {
	padding: 26px 24px;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	background: var(--surface);
}

.feature h3 {
	margin: 18px 0 8px;
	font-size: 1.2rem;
}

.feature p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.98rem;
}

.icon {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 15px;
	background: var(--brand-tint);
	color: var(--brand);
}

.icon-badge .icon {
	width: 26px;
	height: 26px;
}

.devices {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.device {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 100%;
	padding: 18px 20px;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--ink);
	text-decoration: none;
	transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.device:hover {
	border-color: var(--brand);
	color: var(--ink);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.device strong {
	display: block;
	font-size: 1.04rem;
	line-height: 1.3;
}

.device span:not(.icon-badge) {
	color: var(--brand);
	font-size: 0.9rem;
	font-weight: 700;
}

.apps-note {
	margin: 28px 0 0;
	color: var(--ink-soft);
}

/* ==========================================================================
   Comparison table
   ========================================================================== */
.table-scroll {
	overflow-x: auto;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	background: var(--surface);
	-webkit-overflow-scrolling: touch;
}

.compare {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
	font-size: 0.98rem;
}

.compare th,
.compare td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--line-soft);
	text-align: left;
	vertical-align: top;
}

.compare tr:last-child th,
.compare tr:last-child td {
	border-bottom: 0;
}

.compare thead th {
	color: var(--muted);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.compare tbody th {
	width: 24%;
	font-weight: 700;
}

.compare .is-us {
	background: color-mix(in srgb, var(--brand-tint) 70%, transparent);
	color: var(--ink);
	font-weight: 600;
}

.compare thead .is-us {
	color: var(--brand);
}

.compare td:last-child {
	color: var(--ink-soft);
}

/* ==========================================================================
   Trial band (horizontal ticket)
   ========================================================================== */
.band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	filter: var(--drop);
}

.band__main,
.band__stub {
	background: var(--brand-fill);
	color: var(--on-brand);
}

.band__main {
	padding: clamp(28px, 4vw, 48px);
	border-radius: 28px 0 0 28px;
	-webkit-mask: var(--notch-right);
	mask: var(--notch-right);
}

.band__main h2 {
	color: var(--on-brand);
	font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.6rem);
}

.band__main p {
	max-width: 36em;
	margin: 0;
	color: rgb(255 255 255 / 82%);
	font-size: 1.08rem;
}

.band__stub {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 28px clamp(28px, 4vw, 48px);
	border-left: 2px dashed rgb(255 255 255 / 30%);
	border-radius: 0 28px 28px 0;
	-webkit-mask: var(--notch-left);
	mask: var(--notch-left);
	text-align: center;
}

.band__stub small {
	color: rgb(255 255 255 / 72%);
	font-size: 0.86rem;
	font-weight: 600;
}

.band__big {
	font: 800 2.6rem/1 var(--font-head);
	letter-spacing: -0.04em;
}

@media (max-width: 760px) {
	.band {
		grid-template-columns: 1fr;
	}

	.band__main {
		border-radius: 24px 24px 0 0;
		-webkit-mask: var(--notch-bottom);
		mask: var(--notch-bottom);
	}

	.band__stub {
		border-top: 2px dashed rgb(255 255 255 / 30%);
		border-left: 0;
		border-radius: 0 0 24px 24px;
		-webkit-mask: var(--notch-top);
		mask: var(--notch-top);
	}
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
	max-width: 860px;
	margin-inline: auto;
	border-top: 1px solid var(--line);
}

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

.faq summary {
	position: relative;
	padding: 22px 56px 22px 0;
	font: 800 1.14rem/1.35 var(--font-head);
	letter-spacing: -0.01em;
	list-style: none;
	cursor: pointer;
}

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

.faq summary::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 4px;
	width: 34px;
	height: 34px;
	margin-top: -17px;
	border-radius: 50%;
	background: var(--surface-strong) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 4.5v11M4.5 10h11' stroke='%23e8561a' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 18px no-repeat;
	box-shadow: inset 0 0 0 1px var(--line);
	transition: transform 0.2s ease;
}

.faq details[open] summary::after {
	transform: rotate(45deg);
}

.faq summary:hover {
	color: var(--brand);
}

.faq__answer {
	padding: 0 56px 22px 0;
	color: var(--ink-soft);
}

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

.faq-more {
	margin: 30px 0 0;
	text-align: center;
}

/* ==========================================================================
   Closing call to action
   ========================================================================== */
.cta-final {
	text-align: center;
}

.cta-final h2 {
	max-width: 14em;
	margin-inline: auto;
	font-size: clamp(2.1rem, 1.4rem + 3vw, 3.6rem);
}

.cta-final p {
	max-width: 34em;
	margin: 0 auto 30px;
	color: var(--ink-soft);
	font-size: 1.12rem;
}

.cta-final__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* ==========================================================================
   Page + post headers
   ========================================================================== */
.page-hero {
	padding-block: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 44px);
	border-bottom: 1px solid var(--line-soft);
	background: var(--bg-alt);
}

.page-hero h1 {
	margin: 14px 0 0.35em;
}

.page-hero__dek {
	max-width: 40em;
	margin: 0;
	color: var(--ink-soft);
	font-size: 1.15rem;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 600;
}

.breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 6px;
	color: var(--line);
}

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

.breadcrumbs a:hover {
	color: var(--brand);
}

.chip {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--brand-tint);
	color: var(--brand);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

a.chip:hover {
	background: var(--brand-fill);
	color: var(--on-brand);
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 600;
}

.post-cover {
	margin-top: clamp(24px, 4vw, 40px);
	margin-bottom: 0;
}

.post-cover img {
	width: 100%;
	border-radius: var(--radius-lg);
	aspect-ratio: 16 / 9;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.page-body,
.post-body {
	padding-block: clamp(36px, 5vw, 60px);
}

/* ==========================================================================
   Prose (page + post content)
   ========================================================================== */
.prose {
	font-size: 1.08rem;
	line-height: 1.75;
}

.prose > :first-child {
	margin-top: 0;
}

.prose h2 {
	margin: 2em 0 0.55em;
	font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.1rem);
}

.prose h3 {
	margin: 1.7em 0 0.5em;
	font-size: 1.32rem;
}

.prose h4 {
	margin: 1.5em 0 0.4em;
	font-size: 1.1rem;
}

.prose ul,
.prose ol {
	padding-left: 1.3em;
}

.prose li {
	margin-bottom: 0.45em;
}

.prose ul li::marker {
	color: var(--accent-strong);
}

.prose ol li::marker {
	color: var(--brand);
	font-weight: 800;
}

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

.prose ul.checks li {
	display: flex;
	gap: 10px;
}

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

.prose img {
	border-radius: var(--radius);
}

.prose figure {
	margin: 2em 0;
}

.prose figcaption {
	margin-top: 8px;
	color: var(--muted);
	font-size: 0.9rem;
}

.prose blockquote {
	margin: 1.8em 0;
	padding: 4px 0 4px 22px;
	border-left: 4px solid var(--accent);
	color: var(--ink-soft);
	font-style: italic;
}

.prose hr {
	margin: 2.5em 0;
	border: 0;
	border-top: 2px dashed var(--line);
}

.prose table {
	width: 100%;
	margin: 1.6em 0;
	border-collapse: collapse;
	font-size: 0.96rem;
}

.prose th,
.prose td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

.prose thead th {
	background: var(--bg-alt);
	font-weight: 800;
}

.prose .table-scroll {
	margin: 1.6em 0;
}

.prose .table-scroll table {
	margin: 0;
}

.prose code {
	padding: 0.15em 0.4em;
	border-radius: 6px;
	background: var(--bg-alt);
	font-size: 0.9em;
}

.prose pre {
	overflow-x: auto;
	margin: 1.6em 0;
	padding: 16px 18px;
	border-radius: var(--radius-sm);
	background: var(--brand-deep);
	color: #dcebe5;
	font-size: 0.86rem;
	line-height: 1.6;
}

.prose pre code {
	padding: 0;
	background: none;
	color: inherit;
	font-size: inherit;
	white-space: pre;
}

.prose .table-scroll table {
	min-width: 560px;
}

.callout {
	margin: 1.8em 0;
	padding: 20px 22px;
	border: 1px solid var(--line-soft);
	border-left: 4px solid var(--brand);
	border-radius: var(--radius-sm);
	background: var(--surface);
}

.callout--tip {
	border-left-color: var(--accent);
}

.callout > :last-child {
	margin-bottom: 0;
}

.callout__title {
	display: block;
	margin-bottom: 6px;
	font: 800 1.02rem/1.3 var(--font-head);
}

.toc {
	margin: 0 0 2.2em;
	padding: 20px 24px;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	background: var(--surface);
}

.toc__title {
	display: block;
	margin-bottom: 8px;
	font: 800 1rem/1.3 var(--font-head);
}

.toc ol {
	margin: 0;
	padding-left: 1.2em;
	font-size: 0.98rem;
}

.toc li {
	margin: 4px 0;
}

.toc a {
	text-decoration: none;
}

.toc a:hover {
	text-decoration: underline;
}

.prose .faq {
	margin-top: 1.2em;
}

.prose .faq summary {
	font-size: 1.08rem;
}

.prose .faq__answer {
	padding-right: 0;
}

/* Setup page: device jump links */
.jump {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 2em;
	padding: 0;
	list-style: none;
}

.jump a {
	display: inline-block;
	padding: 8px 14px;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink);
	font-size: 0.93rem;
	font-weight: 700;
	text-decoration: none;
}

.jump a:hover {
	border-color: var(--brand);
	color: var(--brand);
}

.prose .jump {
	padding-left: 0;
}

.prose .jump li {
	margin: 0;
}

/* ==========================================================================
   In-content call to action (ticket style)
   ========================================================================== */
.post-cta {
	margin: 2.6em 0 0;
}

.post-cta .ticket__top {
	padding: 26px 26px 22px;
}

.post-cta .ticket__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px 26px 26px;
}

.post-cta h2,
.post-cta h3 {
	margin: 0 0 0.35em;
	font-size: 1.5rem;
}

.post-cta p {
	margin: 0;
	color: var(--ink-soft);
}

/* ==========================================================================
   Cards (guides hub, archives, related posts)
   ========================================================================== */
.cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	background: var(--surface);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
	border-color: var(--line);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.card__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--brand-tint);
}

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

.card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 20px 22px 22px;
}

.card__title {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.25;
}

.card__title a {
	color: var(--ink);
	text-decoration: none;
}

.card__title a:hover {
	color: var(--brand);
}

.card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.card {
	position: relative;
}

.card .chip {
	position: relative;
	z-index: 1;
	align-self: flex-start;
}

.card__excerpt {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.97rem;
}

.card__meta {
	margin-top: auto;
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 600;
}

.hub-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.hub-intro {
	padding-top: clamp(32px, 4vw, 48px);
}

.archive-list {
	padding-block: clamp(32px, 4vw, 56px) clamp(64px, 8vw, 104px);
}

.cat-block + .cat-block {
	margin-top: clamp(48px, 6vw, 72px);
}

.cat-block__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px 20px;
	margin-bottom: 22px;
}

.cat-block__head h2 {
	margin: 0;
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}

.cat-block__head p {
	flex-basis: 100%;
	max-width: 44em;
	margin: 0;
	color: var(--ink-soft);
}

.pagination {
	margin-top: 44px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	color: var(--ink);
	font-weight: 700;
	text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	border-color: var(--brand-fill);
	background: var(--brand-fill);
	color: var(--on-brand);
}

.related {
	padding-block: clamp(48px, 6vw, 80px);
	background: var(--bg-alt);
}

.related h2 {
	margin-bottom: 26px;
	font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
}

.empty-state {
	padding: 40px 0;
	color: var(--ink-soft);
}

/* ==========================================================================
   Forms (Contact Form 7)
   ========================================================================== */
.form-card {
	margin: 1.8em 0;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.form-card > :first-child {
	margin-top: 0;
}

.wpcf7 form > p,
.wpcf7 .form-row {
	margin: 0 0 18px;
}

.wpcf7 label {
	display: block;
	color: var(--ink);
	font-size: 0.97rem;
	font-weight: 700;
}

.wpcf7 .hint {
	color: var(--muted);
	font-weight: 500;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
	display: block;
	width: 100%;
	margin-top: 7px;
	padding: 13px 15px;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	background: var(--surface-strong);
	color: var(--ink);
	font: 500 1rem/1.4 var(--font-body);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wpcf7 textarea {
	min-height: 130px;
	resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	border-color: var(--brand);
	outline: none;
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent);
}

.wpcf7 .wpcf7-list-item {
	margin: 0;
}

.wpcf7 .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 500;
	color: var(--ink-soft);
}

.wpcf7 .wpcf7-acceptance input {
	width: 18px;
	height: 18px;
	margin-top: 4px;
	accent-color: var(--brand-fill);
}

.wpcf7-submit {
	width: 100%;
	margin-top: 4px;
}

.wpcf7-spinner {
	display: block;
	margin: 12px auto 0;
}

.wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #c2410c;
	font-size: 0.9rem;
	font-weight: 600;
}

.wpcf7 form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 14px 16px;
	border: 0;
	border-radius: 12px;
	background: var(--bg-alt);
	font-weight: 600;
}

.wpcf7 form.sent .wpcf7-response-output {
	background: var(--brand-tint);
	color: var(--ink);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
	background: var(--accent-tint);
	color: var(--ink);
}

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

/* ==========================================================================
   404
   ========================================================================== */
.notfound {
	padding-block: clamp(64px, 10vw, 128px);
	text-align: center;
}

.notfound__code {
	margin: 0;
	color: var(--brand);
	font: 800 clamp(5rem, 3rem + 10vw, 9rem)/1 var(--font-head);
	letter-spacing: -0.06em;
}

.notfound p {
	max-width: 32em;
	margin: 0 auto 28px;
	color: var(--ink-soft);
}

.notfound__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	padding-top: clamp(56px, 7vw, 88px);
	background: var(--brand-deep);
	color: #cfe2da;
	font-size: 0.97rem;
}

.site-footer a {
	color: #e3efea;
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--accent);
	text-decoration: underline;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
	gap: 36px;
	padding-bottom: 48px;
}

.site-footer .brand {
	color: #ffffff;
}

.site-footer .brand__word b {
	color: #8fe0c4;
}

.site-footer .mark-ticket {
	fill: #17806a;
}

.site-footer__about {
	max-width: 30em;
	margin: 16px 0 14px;
	color: #b8cfc6;
}

.footer-col__title {
	margin: 4px 0 14px;
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.footer-col ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 24px;
	padding-block: 22px 28px;
	border-top: 1px solid rgb(255 255 255 / 12%);
	color: #9fbab0;
	font-size: 0.86rem;
}

.site-footer__legal p {
	max-width: 62em;
	margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
	.plans {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.hero__grid {
		grid-template-columns: 1fr;
	}

	.hero__visual {
		max-width: 560px;
	}

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

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

@media (max-width: 620px) {
	body {
		font-size: 1rem;
	}

	.plans,
	.features,
	.devices,
	.cards,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.hero__actions .btn {
		width: 100%;
	}

	.guide {
		padding: 16px 16px 132px;
	}

	.guide__head,
	.guide__row {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 8px;
	}

	.slot {
		padding: 0 9px;
		font-size: 0.76rem;
	}

	.hero__pass {
		width: 92%;
		margin-top: -112px;
	}

	.faq summary {
		padding-right: 48px;
		font-size: 1.05rem;
	}

	.faq__answer {
		padding-right: 0;
	}

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