/*
Theme Name: Iceland Live TV
Theme URI: https://icelandlivetv.com
Author: Iceland Live TV
Author URI: https://icelandlivetv.com
Description: A premium, SEO-focused, conversion-oriented WordPress theme for Iceland Live TV IPTV services in Iceland.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: icelandlivetv
*/

:root {
	--blue: #0057a8;
	--blue-deep: #06285a;
	--blue-soft: #eaf4ff;
	--red: #d7193f;
	--red-soft: #fff0f3;
	--ice: #f6f9fc;
	--white: #ffffff;
	--ink: #0f1f36;
	--muted: #5f6d80;
	--line: #dce7f3;
	--gold: #c99a2e;
	--shadow: 0 24px 70px rgba(6, 40, 90, 0.16);
	--shadow-soft: 0 14px 34px rgba(15, 31, 54, 0.08);
	--radius: 8px;
	--container: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--blue);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--red);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 16px;
	color: var(--ink);
	line-height: 1.12;
	letter-spacing: 0;
}

h1 {
	font-size: 3.45rem;
	max-width: 980px;
}

h2 {
	font-size: 2.25rem;
}

h3 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 18px;
	color: var(--muted);
}

ul,
ol {
	padding-left: 20px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

address {
	font-style: normal;
	color: var(--muted);
}

input,
textarea,
select,
button {
	font: inherit;
	letter-spacing: 0;
}

input,
textarea,
select {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--white);
	color: var(--ink);
	padding: 12px 14px;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
	outline: 3px solid rgba(2, 82, 156, 0.22);
	outline-offset: 3px;
}

.container {
	width: min(var(--container), calc(100% - 40px));
	margin: 0 auto;
}

.screen-reader-text,
.skip-link {
	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:focus {
	top: 10px;
	left: 10px;
	z-index: 99999;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 14px;
	clip: auto;
	background: var(--white);
	border: 1px solid var(--blue);
	border-radius: 6px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 8px 28px rgba(18, 32, 51, 0.05);
}

.site-header::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--blue) 0 42%, var(--white) 42% 48%, var(--red) 48% 58%, var(--white) 58% 64%, var(--blue) 64% 100%);
}

.header-inner {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.site-brand,
.footer-logo {
	display: inline-flex;
	align-items: center;
}

.site-brand img {
	width: auto;
	max-width: 190px;
	max-height: 58px;
	object-fit: contain;
}

.primary-navigation {
	display: flex;
	align-items: center;
	gap: 18px;
}

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

.menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 11px;
	border-radius: 6px;
	color: var(--ink);
	font-weight: 700;
	font-size: 0.94rem;
}

.menu a:hover,
.menu .current-menu-item > a {
	background: var(--blue-soft);
	color: var(--blue-deep);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--white);
	padding: 9px;
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--blue-deep);
}

.button,
.header-cta,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid var(--blue);
	border-radius: 6px;
	background: var(--blue);
	color: var(--white);
	font-weight: 800;
	line-height: 1.1;
	box-shadow: var(--shadow-soft);
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus,
.header-cta:hover,
.header-cta:focus {
	transform: translateY(-1px);
	background: var(--blue-deep);
	color: var(--white);
	box-shadow: var(--shadow);
}

.button-red {
	background: var(--red);
	border-color: var(--red);
	color: var(--white);
}

.button,
.header-cta {
	white-space: nowrap;
}

.button-red:hover,
.button-red:focus {
	background: #b81528;
	border-color: #b81528;
	color: var(--white);
}

.button-secondary {
	background: var(--white);
	color: var(--blue-deep);
	border-color: var(--line);
	box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus {
	background: var(--blue-soft);
	color: var(--blue-deep);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	color: var(--blue-deep);
}

.text-link::after {
	content: "→";
	color: var(--red);
}

.section {
	padding: 82px 0;
}

.home-premium-hero {
	position: relative;
	overflow: hidden;
	padding: 108px 0 92px;
	border-bottom: 1px solid rgba(6, 40, 90, 0.10);
	background:
		linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(246,249,252,0.94) 48%, rgba(234,244,255,0.84) 100%),
		radial-gradient(circle at 18% 12%, rgba(0, 87, 168, 0.16), transparent 34%),
		radial-gradient(circle at 86% 18%, rgba(215, 25, 63, 0.13), transparent 30%);
}

.home-premium-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0,87,168,.35), rgba(215,25,63,.25), transparent);
}

.home-premium-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
	gap: 56px;
	align-items: center;
}

.home-hero-copy h1 {
	font-size: clamp(2.8rem, 4.7vw, 5.35rem);
	letter-spacing: 0;
	max-width: 980px;
}

.home-hero-copy p {
	max-width: 690px;
	font-size: 1.16rem;
}

.home-trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.home-trust-strip span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(0,87,168,.18);
	border-radius: 999px;
	background: rgba(255,255,255,.82);
	padding: 9px 13px;
	color: var(--blue-deep);
	font-weight: 850;
	box-shadow: 0 10px 24px rgba(6,40,90,.06);
}

.home-trust-strip span::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--red);
}

.home-hero-visual {
	position: relative;
	border-radius: 22px;
	padding: 14px;
	background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(234,244,255,.72));
	box-shadow: 0 34px 90px rgba(6,40,90,.18);
	border: 1px solid rgba(0,87,168,.18);
}

.home-hero-visual::before {
	content: "";
	position: absolute;
	inset: -14px;
	z-index: -1;
	border-radius: 30px;
	background: linear-gradient(135deg, rgba(0,87,168,.18), rgba(215,25,63,.12));
}

.home-hero-visual img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 16px;
}

.home-hero-panel {
	position: absolute;
	left: 34px;
	right: 34px;
	bottom: 34px;
	border: 1px solid rgba(255,255,255,.75);
	border-radius: 12px;
	background: rgba(255,255,255,.94);
	padding: 17px 18px;
	box-shadow: var(--shadow);
}

.home-hero-panel strong,
.home-hero-panel span {
	display: block;
}

.home-hero-panel strong {
	color: var(--blue-deep);
	font-size: 1.08rem;
}

.home-hero-panel span {
	color: var(--muted);
	font-weight: 750;
}

.premium-trust-section {
	background: var(--white);
}

.premium-trust-grid,
.showcase-premium-grid,
.devices-premium-grid,
.home-faq-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: center;
}

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

.trust-card-grid article {
	border: 1px solid rgba(0,87,168,.14);
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff, #f8fbff);
	padding: 24px;
	box-shadow: var(--shadow-soft);
}

.trust-card-grid span {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--red);
	font-weight: 950;
	font-size: .88rem;
}

.home-showcase-section {
	background:
		linear-gradient(180deg, var(--ice), #ffffff);
}

.showcase-media-stack {
	position: relative;
	min-height: 420px;
}

.showcase-media-stack img {
	position: absolute;
	width: 72%;
	border-radius: 16px;
	object-fit: cover;
	box-shadow: var(--shadow);
	border: 8px solid var(--white);
}

.showcase-media-stack img:first-child {
	top: 0;
	left: 0;
	aspect-ratio: 4 / 3;
}

.showcase-media-stack img:last-child {
	right: 0;
	bottom: 0;
	aspect-ratio: 16 / 10;
}

.devices-premium-section {
	background: linear-gradient(135deg, #ffffff, var(--blue-soft));
}

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

.device-chip-grid span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	border: 1px solid rgba(0,87,168,.16);
	border-radius: 12px;
	background: rgba(255,255,255,.9);
	color: var(--blue-deep);
	font-weight: 900;
	text-align: center;
	box-shadow: var(--shadow-soft);
}

.proof-section {
	padding: 46px 0;
	background: var(--blue-deep);
}

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

.proof-stat {
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 14px;
	background: rgba(255,255,255,.08);
	padding: 24px;
	text-align: center;
}

.proof-stat strong {
	display: block;
	color: var(--white);
	font-size: 2.35rem;
	line-height: 1;
}

.proof-stat span {
	display: block;
	margin-top: 8px;
	color: rgba(255,255,255,.78);
	font-weight: 800;
}

.home-faq-section {
	background: var(--white);
}

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

.section-heading-centered {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.eyebrow {
	margin-bottom: 10px;
	color: var(--red);
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero,
.page-hero {
	min-height: 620px;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 18% 18%, rgba(2, 82, 156, 0.12), transparent 28%),
		radial-gradient(circle at 82% 8%, rgba(220, 30, 53, 0.10), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
	border-bottom: 1px solid var(--line);
}

.home-hero {
	min-height: 740px;
}

.compact-hero {
	min-height: 430px;
	background: linear-gradient(135deg, var(--ice), var(--blue-soft));
}

.hero-content,
.page-hero .container {
	padding: 80px 0;
}

.hero-premium-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
	gap: 52px;
	align-items: center;
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.hero-media-card {
	position: relative;
	border: 1px solid rgba(2, 82, 156, 0.18);
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 241, 251, 0.76));
	padding: 14px;
	box-shadow: 0 30px 70px rgba(1, 58, 112, 0.18);
}

.hero-media-card::before {
	content: "";
	position: absolute;
	inset: -12px;
	z-index: -1;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(2, 82, 156, 0.17), rgba(220, 30, 53, 0.13));
}

.hero-media-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 12px;
}

.hero-proof-card {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 30px;
	display: grid;
	gap: 4px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.92);
	padding: 16px 18px;
	box-shadow: var(--shadow);
}

.hero-proof-card strong {
	color: var(--blue-deep);
	font-size: 1.05rem;
}

.hero-proof-card span {
	color: var(--muted);
	font-weight: 700;
}

.hero p,
.page-hero p {
	max-width: 720px;
	font-size: 1.08rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 26px 0 24px;
}

.hero-trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 900px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-trust li {
	border: 1px solid rgba(2, 82, 156, 0.18);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.92);
	padding: 12px 14px;
	color: var(--blue-deep);
	font-weight: 700;
	box-shadow: 0 8px 22px rgba(1, 58, 112, 0.06);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 18px;
	font-size: 0.92rem;
	color: var(--muted);
}

.breadcrumbs a {
	color: var(--blue-deep);
	font-weight: 700;
}

.pricing-section {
	background: linear-gradient(180deg, var(--white), var(--ice));
}

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

.price-card,
.feature-card,
.showcase-card,
.post-card,
.contact-panel,
.contact-cards article,
.testimonial-grid article,
.blog-sidebar,
.article-aside,
.legal-aside,
.empty-state {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 26px;
}

.price-card.is-featured {
	border: 2px solid var(--red);
	box-shadow: var(--shadow);
	transform: translateY(-8px);
}

.plan-badge {
	align-self: flex-start;
	margin-bottom: 16px;
	padding: 6px 9px;
	border-radius: 6px;
	background: var(--red-soft);
	color: var(--red);
	font-size: 0.8rem;
	font-weight: 900;
}

.plan-duration {
	margin-bottom: 10px;
	color: var(--blue-deep);
	font-weight: 800;
	text-transform: uppercase;
}

.plan-price {
	margin-bottom: 16px;
	color: var(--ink);
	font-size: 2.35rem;
	font-weight: 900;
	line-height: 1;
}

.price-card .button {
	margin-top: auto;
	width: 100%;
}

.check-list {
	display: grid;
	gap: 10px;
	margin: 18px 0 24px;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	color: var(--muted);
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--red);
	font-weight: 900;
}

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

.feature-grid {
	display: grid;
	gap: 18px;
}

.feature-grid.four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card {
	padding: 24px;
}

.icon-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	margin-bottom: 16px;
	border-radius: 6px;
	background: var(--blue-soft);
	color: var(--blue-deep);
	font-weight: 900;
}

.split-section {
	background: var(--white);
}

.split-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.split-grid.reverse > :first-child {
	order: 2;
}

.rounded-media,
.media-collage img,
.showcase-card img,
.single-featured-image,
.post-card-image img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.media-collage {
	position: relative;
}

.media-collage img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.floating-stat {
	position: absolute;
	right: 18px;
	bottom: 18px;
	max-width: 210px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.94);
	padding: 16px;
	box-shadow: var(--shadow-soft);
}

.floating-stat strong,
.stats-grid strong {
	display: block;
	color: var(--blue-deep);
	font-size: 2rem;
	line-height: 1;
}

.floating-stat span,
.stats-grid span {
	color: var(--muted);
	font-weight: 700;
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0;
}

.tag-cloud span {
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--ice);
	padding: 7px 10px;
	color: var(--blue-deep);
	font-weight: 700;
}

.steps-section {
	background: linear-gradient(180deg, var(--ice), var(--white));
}

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

.steps-grid article {
	position: relative;
	border-left: 4px solid var(--blue);
	border-radius: var(--radius);
	background: var(--white);
	padding: 26px;
	box-shadow: var(--shadow-soft);
}

.steps-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: var(--red);
	color: var(--white);
	font-weight: 900;
}

.device-row,
.logo-cloud {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 14px;
	align-items: center;
}

.device-row img,
.logo-cloud img {
	width: 100%;
	height: 86px;
	object-fit: contain;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	padding: 14px;
	box-shadow: var(--shadow-soft);
}

.stats-section {
	background: var(--blue-soft);
}

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

.stats-grid > div {
	border: 1px solid rgba(2, 82, 156, 0.18);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.78);
	padding: 24px;
	text-align: center;
}

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

.testimonial-grid article {
	padding: 26px;
}

.testimonial-grid p {
	color: var(--ink);
	font-size: 1.05rem;
}

.testimonial-grid strong {
	color: var(--blue-deep);
}

.accordion-list {
	display: grid;
	gap: 12px;
}

.accordion-list details {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.accordion-list summary {
	cursor: pointer;
	padding: 18px 20px;
	color: var(--ink);
	font-weight: 900;
}

.accordion-list details p {
	padding: 0 20px 20px;
}

.cta-band {
	background: linear-gradient(135deg, var(--blue-soft), var(--red-soft));
}

.cta-band-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.82);
	padding: 34px;
	box-shadow: var(--shadow-soft);
}

.cta-band-inner p {
	max-width: 720px;
}

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

.showcase-card {
	overflow: hidden;
}

.showcase-card img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
}

.showcase-card h3,
.showcase-card p {
	padding-left: 22px;
	padding-right: 22px;
}

.showcase-card h3 {
	padding-top: 20px;
}

.showcase-card.large {
	grid-column: span 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.showcase-card.large img {
	height: 100%;
	min-height: 300px;
}

.comparison-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

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

.comparison-table th {
	background: var(--blue-soft);
	color: var(--blue-deep);
	font-size: 0.94rem;
	text-transform: uppercase;
}

.comparison-table tr:last-child td {
	border-bottom: 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 28px;
	align-items: start;
}

.contact-cards {
	display: grid;
	gap: 16px;
}

.contact-cards article,
.contact-panel {
	padding: 24px;
}

.contact-cards a {
	font-weight: 900;
}

.contact-form {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.contact-form label span {
	display: block;
	margin-bottom: 6px;
	color: var(--ink);
	font-weight: 800;
}

.values-section,
.logo-cloud-section,
.faq-page-section {
	background: var(--ice);
}

.timeline {
	display: grid;
	gap: 16px;
	position: relative;
}

.timeline div {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	padding: 22px 22px 22px 28px;
	border-left: 4px solid var(--red);
	box-shadow: var(--shadow-soft);
}

.timeline strong {
	display: block;
	margin-bottom: 8px;
	color: var(--blue-deep);
	font-size: 1.12rem;
}

.faq-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
}

.faq-index {
	position: sticky;
	top: 112px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	padding: 22px;
	box-shadow: var(--shadow-soft);
}

.faq-index a {
	display: block;
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
	font-weight: 800;
}

.faq-index a:last-child {
	border-bottom: 0;
}

.faq-group {
	margin-bottom: 34px;
}

.blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: 30px;
	align-items: start;
}

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

.post-card {
	overflow: hidden;
}

.post-card-image img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
}

.post-card-body {
	padding: 22px;
}

.post-card h2 {
	font-size: 1.25rem;
}

.post-card h2 a {
	color: var(--ink);
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.blog-sidebar,
.article-aside {
	position: sticky;
	top: 112px;
	padding: 22px;
}

.blog-sidebar a {
	display: block;
	padding: 11px 0;
	border-bottom: 1px solid var(--line);
	font-weight: 800;
}

.blog-sidebar a:last-child {
	border-bottom: 0;
}

.pagination-wrap {
	margin-top: 32px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.page-numbers {
	display: inline-flex;
	min-width: 38px;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--white);
	color: var(--blue-deep);
	font-weight: 800;
}

.page-numbers.current {
	background: var(--blue);
	color: var(--white);
}

.empty-state {
	padding: 34px;
	text-align: center;
}

.single-hero {
	padding: 62px 0 0;
	background: linear-gradient(180deg, var(--ice), var(--white));
}

.article-header {
	max-width: 920px;
}

.single-featured-image {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.article-section {
	padding-top: 54px;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) 310px;
	gap: 46px;
	align-items: start;
}

.article-content,
.prose {
	font-size: 1.05rem;
}

.article-content > *:first-child,
.prose > *:first-child {
	margin-top: 0;
}

.article-content h2,
.prose h2 {
	margin-top: 34px;
	font-size: 1.75rem;
}

.article-content h3,
.prose h3 {
	margin-top: 26px;
}

.article-content a,
.prose a {
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.article-content blockquote,
.prose blockquote {
	margin: 28px 0;
	border-left: 4px solid var(--red);
	background: var(--ice);
	padding: 20px;
	color: var(--ink);
}

.legal-section {
	background: var(--white);
}

.legal-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 38px;
	align-items: start;
}

.legal-aside {
	position: sticky;
	top: 112px;
	padding: 22px;
}

.legal-content {
	max-width: 850px;
}

.site-footer {
	border-top: 1px solid var(--line);
	background: var(--ice);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 0.8fr 1fr;
	gap: 34px;
	padding: 54px 0 32px;
}

.footer-grid h2 {
	font-size: 1rem;
	text-transform: uppercase;
	color: var(--blue-deep);
}

.footer-brand p {
	max-width: 480px;
}

.footer-badges,
.footer-menu,
.footer-contact {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-badges {
	display: flex;
	flex-wrap: wrap;
}

.footer-badges span {
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--white);
	padding: 7px 10px;
	color: var(--blue-deep);
	font-weight: 800;
}

.footer-menu a,
.footer-contact a {
	font-weight: 800;
	color: var(--ink);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0 28px;
	border-top: 1px solid var(--line);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.92rem;
}

@media (max-width: 1100px) {
	.pricing-grid,
	.feature-grid.four,
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-premium-grid,
	.premium-trust-grid,
	.showcase-premium-grid,
	.devices-premium-grid,
	.home-faq-grid {
		grid-template-columns: 1fr;
	}

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

	.price-card.is-featured {
		transform: none;
	}

	.device-row,
	.logo-cloud {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.header-cta {
		display: none;
	}
}

@media (max-width: 900px) {
	h1 {
		font-size: 2.55rem;
	}

	h2 {
		font-size: 1.9rem;
	}

	.header-inner {
		min-height: 72px;
	}

	.menu-toggle {
		display: inline-block;
	}

	.menu {
		position: absolute;
		left: 20px;
		right: 20px;
		top: calc(100% + 8px);
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: var(--white);
		padding: 10px;
		box-shadow: var(--shadow);
	}

	.menu-open .menu {
		display: flex;
	}

	.menu a {
		width: 100%;
	}

	.hero,
	.page-hero,
	.home-hero {
		min-height: auto;
	}

	.hero-content,
	.page-hero .container {
		padding: 64px 0;
	}

	.hero-trust,
	.hero-premium-grid,
	.split-grid,
	.steps-grid,
	.stats-grid,
	.testimonial-grid,
	.content-showcase-grid,
	.showcase-card.large,
	.contact-grid,
	.faq-layout,
	.blog-layout,
	.article-layout,
	.legal-layout,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-media-card {
		max-width: 720px;
		margin: 0 auto;
	}

	.home-premium-hero {
		padding: 74px 0 64px;
	}

	.home-hero-visual {
		max-width: 760px;
		margin: 0 auto;
	}

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

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

	.showcase-media-stack {
		min-height: 360px;
	}

	.split-grid.reverse > :first-child {
		order: 0;
	}

	.faq-index,
	.blog-sidebar,
	.article-aside,
	.legal-aside {
		position: static;
	}

	.cta-band-inner,
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 2.1rem;
	}

	h2 {
		font-size: 1.58rem;
	}

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

	.section {
		padding: 58px 0;
	}

	.hero-actions,
	.cta-band-inner .button {
		width: 100%;
	}

	.site-brand img {
		max-width: 150px;
	}

	.home-hero-copy h1 {
		font-size: 2.35rem;
	}

	.home-hero-panel {
		position: static;
		margin-top: 12px;
	}

	.home-trust-strip {
		display: grid;
	}

	.trust-card-grid,
	.proof-grid,
	.device-chip-grid {
		grid-template-columns: 1fr;
	}

	.showcase-media-stack {
		display: grid;
		gap: 14px;
		min-height: auto;
	}

	.showcase-media-stack img {
		position: static;
		width: 100%;
		border-width: 5px;
	}

	.hero-proof-card {
		position: static;
		margin-top: 12px;
	}

	.hero-actions .button,
	.cta-band-inner .button {
		width: 100%;
	}

	.pricing-grid,
	.feature-grid.four,
	.feature-grid.three,
	.post-grid,
	.two-columns {
		grid-template-columns: 1fr;
	}

	.device-row,
	.logo-cloud {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cta-band-inner,
	.empty-state {
		padding: 24px;
	}

	.floating-stat {
		position: static;
		margin-top: 14px;
		max-width: none;
	}

	.plan-price {
		font-size: 2rem;
	}
}
