/*
Theme Name: IPTV Gold
Theme URI: https://iptv-provider.net/
Author: IPTV Gold
Description: A dark, gold-accented one-page WordPress theme built for IPTV subscription businesses. Includes a device-based pricing matrix, sports and feature sections, comparison table, reviews, FAQ and a floating WhatsApp button — all editable from the Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iptv-gold
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options
*/

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
	--bg:            #08080b;
	--bg-2:          #0d0d12;
	--surface:       #121218;
	--surface-2:     #17171f;
	--line:          rgba(255, 255, 255, .09);
	--line-strong:   rgba(212, 175, 55, .35);

	--gold:          #d4af37;
	--gold-light:    #f2d888;
	--gold-deep:     #a8842a;
	--gold-grad:     linear-gradient(135deg, #f6e27a 0%, #d4af37 45%, #b8912c 100%);

	--text:          #eceaf2;
	--muted:         #a7a4b4;
	--muted-2:       #77748a;

	--ok:            #3ddc97;
	--warn:          #ff6b6b;

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

	--shadow:        0 24px 60px -20px rgba(0, 0, 0, .8);
	--shadow-gold:   0 20px 60px -22px rgba(212, 175, 55, .55);

	--container:     1200px;
	--gutter:        24px;

	--font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--font-display:  'Sora', var(--font);
}

/* ==========================================================================
   2. Base
   ========================================================================== */

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

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

a { color: var(--gold-light); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.02em;
	margin: 0 0 .6em;
	color: #fff;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1em; color: var(--muted); }

ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: var(--gold); color: #12100a; }

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

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

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--gold); color: #12100a;
	padding: 10px 18px; z-index: 999;
	font-weight: 700; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   3. Layout helpers
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 5vw, 76px) 0; }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }

.section-head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 64px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head p { font-size: 1.05rem; }

.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display);
	font-size: .74rem; font-weight: 700;
	letter-spacing: .22em; text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}
.eyebrow::before {
	content: ''; width: 26px; height: 1px;
	background: var(--gold-grad);
}
.section-head:not(.section-head--left) .eyebrow::after {
	content: ''; width: 26px; height: 1px;
	background: var(--gold-grad);
}

.grid { display: grid; gap: 22px; }
/* Two-up sections are always exactly two columns. auto-fit would fit a third
   320px column on a wide screen and squeeze both children into a third of
   the row, leaving an empty column on the right. */
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 860px) { .grid--2 { grid-template-columns: minmax(0, 1fr); } }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Copy on the left, device shot on the right. The image gets the larger
   share so it reads at roughly the height of the text beside it. */
.grid--split {
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(28px, 3.4vw, 56px);
}
@media (max-width: 900px) {
	.grid--split { grid-template-columns: minmax(0, 1fr); }
}

/* Transparent-background device mockup. The glow sits behind it so the
   cut-out edges do not read as a floating rectangle on the dark page. */
.split-media { position: relative; }
.split-media::before {
	content: '';
	/* Stays inside the column horizontally. A glow wider than its parent
	   pushes the document sideways — body overflow-x cannot help, because
	   the parent itself is not the thing overflowing. */
	position: absolute; inset: -10% 0;
	background: radial-gradient(ellipse 72% 62% at 50% 50%,
		rgba(212, 175, 55, .2) 0%,
		rgba(212, 175, 55, .06) 42%,
		transparent 72%);
	pointer-events: none;
}
/* The source PNG carries ~41% transparent padding around the devices.
   Rather than re-encode the file (the crop came out three times heavier),
   the frame below shows only the content box: 904x864 starting at 339,122
   inside a 1536x1024 canvas. Same bytes, 70% bigger on screen. */
.devices-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 904 / 864;
	overflow: hidden;
}
.devices-shot {
	position: absolute;
	width: 169.91%;
	max-width: none;
	left: -37.5%;
	top: -14.12%;
	height: auto;
	filter: drop-shadow(0 26px 46px rgba(0, 0, 0, .75));
}
@media (max-width: 900px) {
	/* width:100% is load-bearing. margin-inline:auto stops a grid item
	   stretching, so it falls back to shrink-to-fit — and the only child
	   here is an absolutely positioned image, which contributes no
	   intrinsic width. Without an explicit width the column collapses to
	   zero and the mockup disappears. */
	.split-media {
		width: 100%;
		max-width: 620px;
		margin-inline: auto;
	}
}
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.gold-text {
	background: var(--gold-grad);
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 15px 30px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: .95rem; font-weight: 700; letter-spacing: -.01em;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .18s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
	background: var(--gold-grad);
	color: #14110a;
	box-shadow: var(--shadow-gold);
}
.btn--gold:hover { color: #14110a; box-shadow: 0 26px 70px -20px rgba(212, 175, 55, .75); }

.btn--ghost {
	background: rgba(255, 255, 255, .04);
	border-color: var(--line);
	color: var(--text);
	backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--line-strong); color: #fff; background: rgba(212, 175, 55, .1); }

.btn--wa { background: #25d366; color: #06240f; }
.btn--wa:hover { color: #06240f; background: #2ee473; }

.btn--sm { padding: 11px 22px; font-size: .85rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   5. Header
   ========================================================================== */

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(8, 8, 11, .72);
	backdrop-filter: blur(18px) saturate(160%);
	border-bottom: 1px solid transparent;
	transition: border-color .25s ease, background .25s ease;
}
.site-header.is-stuck {
	border-bottom-color: var(--line);
	background: rgba(8, 8, 11, .92);
}

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

.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand:hover { color: #fff; }
.brand__mark {
	width: 40px; height: 40px; flex: none;
	border-radius: 12px;
	background: var(--gold-grad);
	display: grid; place-items: center;
	font-family: var(--font-display);
	font-weight: 800; font-size: 1.15rem; color: #14110a;
	box-shadow: 0 8px 24px -8px rgba(212, 175, 55, .7);
}
.brand__name {
	font-family: var(--font-display);
	font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em;
	line-height: 1.1;
}
.brand__name span { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; }
.brand img { max-height: 46px; width: auto; }

.nav-main ul {
	display: flex; align-items: center; gap: 4px;
	list-style: none; margin: 0; padding: 0;
}
.nav-main a {
	display: block; padding: 9px 15px;
	color: var(--muted); font-size: .92rem; font-weight: 500;
	border-radius: 999px;
	transition: color .18s ease, background .18s ease;
}
.nav-main a:hover,
.nav-main .current-menu-item > a { color: #fff; background: rgba(255, 255, 255, .06); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	border: 1px solid var(--line); border-radius: 12px;
	background: rgba(255, 255, 255, .04);
	cursor: pointer; padding: 0;
	place-items: center;
}
.nav-toggle span {
	display: block; width: 18px; height: 2px; border-radius: 2px;
	background: var(--text);
	position: relative; transition: background .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
	content: ''; position: absolute; left: 0;
	width: 18px; height: 2px; border-radius: 2px; background: var(--text);
	transition: transform .25s ease, top .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* ==========================================================================
   6. Hero
   ========================================================================== */

.hero {
	position: relative;
	padding: clamp(60px, 8vw, 110px) 0 clamp(56px, 7vw, 96px);
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute; inset: -30% 0 auto 50%;
	width: 900px; height: 900px; transform: translateX(-50%);
	background: radial-gradient(circle, rgba(212, 175, 55, .16) 0%, transparent 62%);
	pointer-events: none;
}
.hero::after {
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 75%);
	pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .82fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.pill {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 7px 16px 7px 9px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: rgba(212, 175, 55, .07);
	font-size: .8rem; font-weight: 600; color: var(--gold-light);
	margin-bottom: 22px;
}
.pill b {
	background: var(--gold-grad); color: #14110a;
	padding: 3px 10px; border-radius: 999px;
	font-family: var(--font-display); font-size: .7rem; letter-spacing: .06em;
}

.hero h1 { margin-bottom: .35em; }
.hero h1 small {
	display: block;
	font-family: var(--font);
	font-size: clamp(.85rem, 1.6vw, 1rem);
	font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
	color: var(--gold); margin-bottom: 14px;
}

.hero-lead { font-size: clamp(1rem, 1.7vw, 1.15rem); max-width: 56ch; }

.hero-actions { margin: 30px 0 26px; }

.hero-badges {
	display: flex; flex-wrap: wrap; gap: 10px 20px;
	list-style: none; margin: 0; padding: 0;
	font-size: .87rem; color: var(--muted);
}
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges svg { flex: none; color: var(--gold); }

.rating {
	display: inline-flex; align-items: center; gap: 12px;
	margin-bottom: 26px;
	padding: 10px 18px;
	border: 1px solid var(--line); border-radius: 999px;
	background: rgba(255, 255, 255, .03);
}
.rating__stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.rating__score { font-family: var(--font-display); font-weight: 800; color: #fff; }
.rating__count { font-size: .82rem; color: var(--muted-2); }

/* Hero visual */
.hero-card {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
	padding: 26px;
	box-shadow: var(--shadow);
}
.hero-card::before {
	content: '';
	position: absolute; inset: -1px;
	border-radius: inherit; padding: 1px;
	background: linear-gradient(160deg, rgba(212, 175, 55, .55), transparent 45%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude;
	pointer-events: none;
}
.hero-screen {
	aspect-ratio: 16 / 10;
	border-radius: var(--radius);
	background:
		radial-gradient(circle at 30% 25%, rgba(212, 175, 55, .22), transparent 55%),
		linear-gradient(150deg, #1b1b24, #0b0b10);
	border: 1px solid var(--line);
	display: grid; place-items: center;
	position: relative; overflow: hidden;
}
.hero-screen__play {
	width: 74px; height: 74px; border-radius: 50%;
	background: var(--gold-grad);
	display: grid; place-items: center;
	color: #14110a;
	box-shadow: 0 0 0 12px rgba(212, 175, 55, .1), 0 0 0 26px rgba(212, 175, 55, .05);
	animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 12px rgba(212, 175, 55, .1), 0 0 0 26px rgba(212, 175, 55, .05); }
	50%      { box-shadow: 0 0 0 18px rgba(212, 175, 55, .06), 0 0 0 36px rgba(212, 175, 55, .02); }
}
.hero-chips {
	position: absolute; left: 14px; bottom: 14px;
	display: flex; gap: 8px; flex-wrap: wrap;
}
.hero-chips span {
	font-size: .66rem; font-weight: 700; letter-spacing: .1em;
	padding: 5px 11px; border-radius: 999px;
	background: rgba(0, 0, 0, .55); border: 1px solid var(--line);
	color: var(--gold-light); backdrop-filter: blur(6px);
}

.hero-stats {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 1px; margin-top: 22px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm); overflow: hidden;
}
.hero-stats div { background: var(--surface); padding: 16px 12px; text-align: center; }
.hero-stats b {
	display: block; font-family: var(--font-display);
	font-size: 1.3rem; font-weight: 800; color: #fff;
}
.hero-stats span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }

/* ==========================================================================
   7. Marquee
   ========================================================================== */

.marquee {
	border-block: 1px solid var(--line);
	background: var(--bg-2);
	padding: 18px 0;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
	display: flex; width: max-content;
	animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
	display: flex; align-items: center; gap: 42px; padding-right: 42px;
	font-family: var(--font-display); font-weight: 700;
	font-size: clamp(.95rem, 1.5vw, 1.2rem);
	letter-spacing: .04em; text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	white-space: nowrap;
}
.marquee__group span:nth-child(odd) { color: var(--gold); opacity: .65; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   8. Cards
   ========================================================================== */

.card {
	position: relative;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(165deg, var(--surface-2), var(--surface));
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
	transform: translateY(-4px);
	border-color: var(--line-strong);
	box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }

.card__icon {
	width: 48px; height: 48px; border-radius: 14px;
	display: grid; place-items: center;
	background: rgba(212, 175, 55, .1);
	border: 1px solid var(--line-strong);
	color: var(--gold);
	margin-bottom: 18px;
	font-family: var(--font-display); font-weight: 800; font-size: .95rem;
}

/* Check list */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.check-list li {
	display: grid; grid-template-columns: 22px 1fr; gap: 12px;
	align-items: start; color: var(--muted); font-size: .95rem;
}
.check-list li::before {
	content: '';
	width: 20px; height: 20px; margin-top: 2px; border-radius: 50%;
	background: rgba(212, 175, 55, .14);
	border: 1px solid var(--line-strong);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ==========================================================================
   9. Pricing
   ========================================================================== */

.device-switch {
	display: inline-flex; gap: 4px; padding: 5px;
	border: 1px solid var(--line); border-radius: 999px;
	background: var(--surface);
	margin: 0 auto 44px;
}
.device-switch__wrap { text-align: center; }
.device-switch button {
	appearance: none; border: 0; cursor: pointer;
	padding: 11px 24px; border-radius: 999px;
	background: transparent; color: var(--muted);
	font-family: var(--font-display); font-size: .88rem; font-weight: 700;
	transition: background .22s ease, color .22s ease;
}
.device-switch button:hover { color: #fff; }
.device-switch button.is-active {
	background: var(--gold-grad); color: #14110a;
	box-shadow: 0 8px 22px -10px rgba(212, 175, 55, .8);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 22px;
	align-items: stretch;
}

.plan {
	position: relative;
	display: flex; flex-direction: column;
	padding: 32px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: linear-gradient(170deg, var(--surface-2), var(--surface));
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }

.plan--featured {
	border-color: var(--line-strong);
	background: linear-gradient(170deg, rgba(212, 175, 55, .1), var(--surface) 55%);
	box-shadow: var(--shadow-gold);
}
.plan--featured::before {
	content: '';
	position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
	background: var(--gold-grad);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude;
	pointer-events: none; opacity: .55;
}

.plan__ribbon {
	position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
	padding: 6px 18px; border-radius: 999px;
	background: var(--gold-grad); color: #14110a;
	font-family: var(--font-display); font-size: .68rem; font-weight: 800;
	letter-spacing: .14em; white-space: nowrap;
	box-shadow: 0 10px 26px -10px rgba(212, 175, 55, .9);
}

.plan__badge {
	font-family: var(--font-display); font-size: .68rem; font-weight: 800;
	letter-spacing: .18em; color: var(--gold); margin-bottom: 12px;
}
.plan__name { font-size: 1.4rem; margin-bottom: .4em; }
.plan__blurb { font-size: .9rem; min-height: 3.2em; }

.plan__price {
	display: flex; align-items: flex-start; gap: 4px;
	margin: 18px 0 4px;
}
.plan__amount {
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5vw, 3.4rem); font-weight: 800;
	line-height: 1; color: #fff; letter-spacing: -.04em;
}
.plan__currency { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-top: 6px; }
.plan__term { align-self: flex-end; font-size: .9rem; color: var(--muted-2); margin-bottom: 6px; }

.plan__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 22px; }
.plan__monthly { font-size: .87rem; color: var(--muted); }
.plan__save {
	font-size: .72rem; font-weight: 800; letter-spacing: .06em;
	padding: 4px 11px; border-radius: 999px;
	background: rgba(61, 220, 151, .12); color: var(--ok);
	border: 1px solid rgba(61, 220, 151, .28);
}
.plan__devices {
	font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
	color: var(--gold); font-weight: 700;
}

.plan .check-list { margin-bottom: 26px; }
.plan .check-list li { font-size: .89rem; }
.plan__cta { margin-top: auto; }
.plan__note {
	text-align: center; font-size: .76rem; color: var(--muted-2);
	margin: 12px 0 0;
}

.pricing-foot {
	margin-top: 44px; padding: 28px;
	border: 1px solid var(--line); border-radius: var(--radius);
	background: var(--surface);
	display: flex; flex-wrap: wrap; gap: 20px;
	align-items: center; justify-content: space-between;
}
.pricing-foot p { margin: 0; }
.pricing-foot strong { color: #fff; display: block; font-family: var(--font-display); margin-bottom: 4px; }

/* ==========================================================================
   10. Sports & feature tiles
   ========================================================================== */

.sport-card { overflow: hidden; }
.sport-card__tag {
	display: inline-block; margin-top: 14px;
	font-size: .68rem; font-weight: 700; letter-spacing: .14em;
	color: var(--gold); text-transform: uppercase;
	padding-top: 14px; border-top: 1px solid var(--line);
	width: 100%;
}

.trust-row {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1px; background: var(--line);
	border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; margin-bottom: 44px;
}
.trust-row div { background: var(--surface); padding: 22px 18px; text-align: center; }
.trust-row b { display: block; font-family: var(--font-display); color: var(--gold); font-size: 1rem; letter-spacing: .04em; }
.trust-row span { font-size: .8rem; color: var(--muted-2); }

/* ==========================================================================
   11. Steps
   ========================================================================== */

.steps { counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
	width: 52px; height: 52px; border-radius: 16px;
	background: var(--gold-grad); color: #14110a;
	display: grid; place-items: center;
	font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
	margin-bottom: 20px;
	box-shadow: 0 14px 30px -14px rgba(212, 175, 55, .9);
}

/* ==========================================================================
   12. Comparison table
   ========================================================================== */

.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	-webkit-overflow-scrolling: touch;
}
.compare {
	width: 100%; min-width: 720px;
	border-collapse: collapse;
	font-size: .93rem;
}
.compare th, .compare td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid var(--line);
	vertical-align: middle;
}
.compare thead th {
	font-family: var(--font-display); font-size: .8rem;
	letter-spacing: .1em; text-transform: uppercase;
	color: var(--muted-2); font-weight: 700;
	background: var(--surface-2);
	position: sticky; top: 0;
}
.compare thead th.is-us { color: var(--gold); }
.compare tbody th { font-weight: 600; color: var(--text); }
.compare td { color: var(--muted); }
.compare td.is-us { color: #fff; font-weight: 700; background: rgba(212, 175, 55, .05); }
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }
.yes { color: var(--ok); font-weight: 800; }
.no  { color: var(--warn); font-weight: 800; }

/* ==========================================================================
   13. Reviews
   ========================================================================== */

.review { display: flex; flex-direction: column; }
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.review__text { color: var(--text); font-size: .97rem; }
.review__who {
	display: flex; align-items: center; gap: 12px;
	margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
}
.review__avatar {
	width: 42px; height: 42px; border-radius: 50%; flex: none;
	background: var(--gold-grad); color: #14110a;
	display: grid; place-items: center;
	font-family: var(--font-display); font-weight: 800;
}
.review__who b { display: block; color: #fff; font-size: .92rem; }
.review__who span { font-size: .8rem; color: var(--muted-2); }

/* ==========================================================================
   14. FAQ
   ========================================================================== */

.faq { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
.faq details {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--surface);
	transition: border-color .2s ease, background .2s ease;
}
.faq details[open] { border-color: var(--line-strong); background: var(--surface-2); }
.faq summary {
	list-style: none; cursor: pointer;
	padding: 20px 56px 20px 22px;
	position: relative;
	font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
	color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: ''; position: absolute; right: 22px; top: 50%;
	width: 12px; height: 12px; margin-top: -8px;
	border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
	transform: rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq__body { padding: 0 22px 22px; }
.faq__body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   15. CTA band
   ========================================================================== */

.cta-band {
	position: relative;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 15% 10%, rgba(212, 175, 55, .18), transparent 55%),
		linear-gradient(160deg, var(--surface-2), var(--surface));
	padding: clamp(36px, 6vw, 66px);
	text-align: center;
	overflow: hidden;
}
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 60ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }
.cta-band .hero-badges { justify-content: center; margin-top: 26px; }

/* ==========================================================================
   16. Footer
   ========================================================================== */

.site-footer {
	border-top: 1px solid var(--line);
	background: var(--bg-2);
	padding: clamp(48px, 6vw, 76px) 0 0;
	margin-top: clamp(48px, 6vw, 90px);
}
.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(auto-fit, minmax(160px, 1fr));
	gap: 40px;
	padding-bottom: 44px;
}
.footer-about p { font-size: .92rem; max-width: 44ch; }
.footer-col h4 {
	font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
	color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: .92rem; }
.footer-col a:hover { color: var(--gold-light); }

.footer-contact { display: grid; gap: 12px; font-size: .92rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact svg { flex: none; color: var(--gold); }

.footer-badge {
	display: inline-flex; align-items: center; gap: 8px;
	margin-top: 18px; padding: 7px 14px;
	border: 1px solid var(--line); border-radius: 999px;
	font-size: .72rem; font-weight: 700; letter-spacing: .1em;
	color: var(--muted-2);
}

.footer-bottom {
	border-top: 1px solid var(--line);
	padding: 22px 0;
	display: flex; flex-wrap: wrap; gap: 14px;
	align-items: center; justify-content: space-between;
	font-size: .85rem; color: var(--muted-2);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ==========================================================================
   17. Floating WhatsApp
   ========================================================================== */

.wa-float {
	position: fixed; right: 20px; bottom: 20px; z-index: 90;
	display: inline-flex; align-items: center; gap: 10px;
	padding: 13px 20px 13px 15px;
	border-radius: 999px;
	background: #25d366; color: #06240f;
	font-weight: 700; font-size: .9rem;
	box-shadow: 0 18px 44px -14px rgba(37, 211, 102, .8);
	transition: transform .2s ease, box-shadow .22s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); color: #06240f; box-shadow: 0 24px 56px -14px rgba(37, 211, 102, .95); }
.wa-float svg { flex: none; }
.wa-float::after {
	content: ''; position: absolute; inset: 0; border-radius: inherit;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
	animation: waPing 2.6s ease-out infinite;
}
@keyframes waPing {
	0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
	70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   18. Blog / inner pages
   ========================================================================== */

.page-hero {
	padding: clamp(56px, 7vw, 90px) 0 clamp(28px, 4vw, 44px);
	border-bottom: 1px solid var(--line);
	background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(212, 175, 55, .1), transparent 70%);
	text-align: center;
}
.page-hero h1 { margin-bottom: .3em; }

.entry { max-width: 780px; margin-inline: auto; }
.entry img { border-radius: var(--radius); margin-block: 1.6em; }
.entry h2, .entry h3 { margin-top: 1.6em; }
.entry blockquote {
	margin: 1.8em 0; padding: 20px 26px;
	border-left: 3px solid var(--gold);
	background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.entry blockquote p:last-child { margin-bottom: 0; }
.entry code {
	background: var(--surface-2); padding: 2px 7px;
	border-radius: 6px; font-size: .9em; color: var(--gold-light);
}
.entry table { width: 100%; border-collapse: collapse; margin-block: 1.6em; }
.entry th, .entry td { padding: 12px 16px; border: 1px solid var(--line); text-align: left; }

.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.post-card h3 { font-size: 1.12rem; }
.post-card .more { margin-top: auto; padding-top: 14px; font-weight: 700; font-size: .88rem; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.pagination .page-numbers {
	display: grid; place-items: center;
	min-width: 42px; height: 42px; padding-inline: 12px;
	border: 1px solid var(--line); border-radius: 12px;
	color: var(--muted); font-weight: 600;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--gold-grad); color: #14110a; border-color: transparent; }

.error-404 { text-align: center; padding: clamp(70px, 10vw, 140px) 0; }
.error-404 .code {
	font-family: var(--font-display); font-size: clamp(5rem, 18vw, 11rem);
	font-weight: 800; line-height: 1;
	background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ==========================================================================
   19. Cookie bar
   ========================================================================== */

.cookie-bar {
	position: fixed; left: 20px; bottom: 20px; z-index: 95;
	max-width: 400px;
	padding: 22px;
	border: 1px solid var(--line-strong); border-radius: var(--radius);
	background: rgba(13, 13, 18, .96);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow);
	transform: translateY(140%);
	transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar h4 { font-size: 1rem; margin-bottom: .5em; }
.cookie-bar p { font-size: .85rem; margin-bottom: 16px; }
.cookie-bar .btn-row { gap: 10px; }

/* ==========================================================================
   20. Reveal animation
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.16, 1, .3, 1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
	.reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   21. Responsive
   ========================================================================== */

@media (max-width: 1080px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-card { max-width: 560px; }
}

@media (max-width: 900px) {
	.nav-toggle { display: grid; }
	.header-cta .btn { display: none; }
	.header-cta .btn--wa { display: inline-flex; }

	/* Fades in place rather than sliding in from the right. A fixed panel
	   parked at translateX(100%) sits outside the viewport and makes the
	   whole document scroll sideways — body overflow-x cannot clip it,
	   because fixed elements are laid out against the viewport. */
	.nav-main {
		position: fixed; inset: 74px 0 0;
		background: rgba(8, 8, 11, .98);
		backdrop-filter: blur(16px);
		padding: 28px var(--gutter);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		/* visibility flips only after the fade-out finishes */
		transition: opacity .25s ease, transform .3s cubic-bezier(.16, 1, .3, 1), visibility 0s linear .3s;
		overflow-y: auto;
	}
	body.nav-open .nav-main {
		opacity: 1;
		visibility: visible;
		transform: none;
		/* …and immediately on the way in */
		transition: opacity .25s ease, transform .3s cubic-bezier(.16, 1, .3, 1), visibility 0s;
	}
	.nav-main ul { flex-direction: column; align-items: stretch; gap: 6px; }
	.nav-main a {
		padding: 15px 18px; font-size: 1.05rem;
		border: 1px solid var(--line); border-radius: 14px;
	}

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

@media (max-width: 620px) {
	.section { padding: 56px 0; }
	.device-switch { width: 100%; justify-content: center; }
	.device-switch button { flex: 1; padding: 11px 8px; font-size: .8rem; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.btn-row .btn { width: 100%; }
	.cookie-bar { left: 12px; right: 12px; bottom: 90px; max-width: none; }
	.wa-float { right: 12px; bottom: 12px; padding: 12px; }
	.wa-float span { display: none; }
	.pricing-foot { flex-direction: column; align-items: flex-start; }
}
