/* =====================================================================
   Vita TV — modern luxury streaming theme (image-free, pure CSS)
   ===================================================================== */

:root {
	--rd-bg: #050208;
	--rd-bg-2: #0a0610;
	--rd-card: rgba(255, 255, 255, 0.035);
	--rd-card-2: rgba(255, 255, 255, 0.06);
	--rd-line: rgba(255, 255, 255, 0.08);
	--rd-line-2: rgba(255, 255, 255, 0.14);
	--rd-text: #f6f3f8;
	--rd-muted: #a49db1;
	--rd-faint: #6f6880;
	--rd-red: #10b981;
	--rd-orange: #06b6d4;
	--rd-gold: #fbbf24;
	--rd-grad: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
	--rd-grad-soft: linear-gradient(135deg, rgba(16,185,129,0.16), rgba(6,182,212,0.10));
	--rd-radius: 22px;
	--rd-radius-sm: 14px;
	--rd-shadow: 0 30px 70px -28px rgba(0,0,0,0.85);
	--rd-glow: 0 14px 44px -10px rgba(6,182,212, 0.55);
	--rd-maxw: 1200px;
	--rd-ease: cubic-bezier(.22,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--rd-bg);
	color: var(--rd-text);
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; line-height: 1.08; margin: 0 0 .5em; letter-spacing: -0.025em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.rd-container { width: 100%; max-width: var(--rd-maxw); margin: 0 auto; padding: 0 24px; }

/* Ambient luxury background — animated gradient mesh */
body::before {
	content: "";
	position: fixed; inset: 0; z-index: -2;
	background:
		radial-gradient(48vw 48vw at 82% -8%, rgba(16,185,129,0.22), transparent 60%),
		radial-gradient(42vw 42vw at 8% 6%, rgba(6,182,212,0.12), transparent 58%),
		radial-gradient(60vw 50vw at 50% 116%, rgba(251,191,36,0.06), transparent 60%),
		var(--rd-bg);
	animation: rd-drift 22s ease-in-out infinite alternate;
}
body::after {
	content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
	background-image: linear-gradient(var(--rd-line) 1px, transparent 1px), linear-gradient(90deg, var(--rd-line) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask: radial-gradient(70vw 70vw at 70% 0%, #000, transparent 70%);
	mask: radial-gradient(70vw 70vw at 70% 0%, #000, transparent 70%);
	opacity: .35;
}
@keyframes rd-drift { from { transform: translate3d(0,0,0); } to { transform: translate3d(-2%, 1.5%, 0); } }

/* ---------- Glass ---------- */
.rd-glass {
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
	border: 1px solid var(--rd-line);
	backdrop-filter: blur(22px) saturate(120%);
	-webkit-backdrop-filter: blur(22px) saturate(120%);
	box-shadow: var(--rd-shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ---------- Buttons ---------- */
.rd-btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
	padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
	cursor: pointer; transition: transform .25s var(--rd-ease), box-shadow .3s, opacity .2s;
	text-align: center; line-height: 1; white-space: nowrap; overflow: hidden;
}
.rd-btn-primary { background: var(--rd-grad); color: #fff; box-shadow: var(--rd-glow); }
.rd-btn-primary::after {
	content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
	transform: skewX(-18deg); transition: left .6s var(--rd-ease);
}
.rd-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 54px -8px rgba(6,182,212,.65); }
.rd-btn-primary:hover::after { left: 130%; }
.rd-btn-ghost { background: rgba(255,255,255,0.02); border-color: var(--rd-line-2); color: var(--rd-text); }
.rd-btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.24); }
.rd-btn-block { width: 100%; }
.rd-btn-lg { padding: 18px 36px; font-size: 1.08rem; }
.rd-btn.is-loading { opacity: .7; pointer-events: none; }
.rd-btn.is-loading::before {
	content: ""; width: 16px; height: 16px; margin-right: 6px;
	border: 2px solid rgba(255,255,255,.45); border-top-color: #fff;
	border-radius: 50%; animation: rd-spin .7s linear infinite;
}
@keyframes rd-spin { to { transform: rotate(360deg); } }

/* ---------- Kicker (luxury section label) ---------- */
.rd-kicker {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: .76rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
	color: var(--rd-gold); margin-bottom: 16px;
}
.rd-kicker::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--rd-gold)); }

/* ---------- Nav ---------- */
.rd-nav {
	position: sticky; top: 0; z-index: 50;
	background: rgba(5,2,8,0.6);
	backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
	border-bottom: 1px solid var(--rd-line);
}
.rd-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.rd-logo { display: flex; align-items: center; gap: 11px; font-family: 'Sora'; font-weight: 800; font-size: 1.28rem; letter-spacing: -0.02em; }
.rd-logo-mark { font-size: 1.5rem; filter: drop-shadow(0 2px 8px rgba(6,182,212,.5)); }
.rd-logo-text { background: var(--rd-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rd-nav-links { display: flex; gap: 32px; }
.rd-nav-links a { color: var(--rd-muted); font-weight: 500; font-size: .96rem; transition: color .2s; position: relative; }
.rd-nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--rd-grad); transition: width .25s var(--rd-ease); }
.rd-nav-links a:hover { color: var(--rd-text); }
.rd-nav-links a:hover::after { width: 100%; }
.rd-nav-cta { padding: 11px 24px; font-size: .94rem; }

/* ---------- Hero ---------- */
.rd-hero { position: relative; padding: 78px 0 92px; }
.rd-hero-bg { display: none; }
.rd-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }

.rd-eyebrow {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
	color: var(--rd-muted); padding: 8px 16px; border-radius: 999px;
	border: 1px solid var(--rd-line-2); background: var(--rd-card); margin-bottom: 26px;
}
.rd-live-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d36b; box-shadow: 0 0 0 0 rgba(52,211,107,.6); animation: rd-pulse 1.9s infinite; }
.rd-live-dot-sm { width: 7px; height: 7px; }
@keyframes rd-pulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,107,.5); } 70% { box-shadow: 0 0 0 10px rgba(52,211,107,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,107,0); } }

.rd-h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); font-weight: 800; }
.rd-h1 .rd-grad { display: block; background: var(--rd-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rd-sub { font-size: clamp(1.08rem, 1.9vw, 1.34rem); color: var(--rd-muted); max-width: 34ch; margin: 22px 0 30px; }

.rd-trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.rd-trust { font-size: .9rem; color: var(--rd-muted); padding: 10px 16px; border: 1px solid var(--rd-line); border-radius: 14px; background: var(--rd-card); }
.rd-trust strong { color: var(--rd-text); font-family: 'Sora'; font-size: 1.02rem; margin-right: 2px; }
.rd-stars { color: var(--rd-gold); letter-spacing: 2px; }

.rd-scarcity { display: flex; flex-wrap: wrap; gap: 12px 22px; align-items: center; margin-bottom: 26px; }
.rd-spots { font-size: .94rem; color: var(--rd-muted); }
.rd-spots-num { font-family: 'Sora'; font-weight: 800; color: var(--rd-orange); font-size: 1.3rem; margin-right: 4px; }
.rd-visitors { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--rd-muted); }

.rd-countdown { display: inline-flex; flex-direction: column; gap: 9px; }
.rd-countdown-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--rd-faint); }
.rd-countdown-clock { display: flex; gap: 10px; }
.rd-countdown-clock span { display: inline-flex; align-items: baseline; gap: 2px; font-size: .78rem; color: var(--rd-faint); }
.rd-countdown-clock b {
	font-family: 'Sora'; font-size: 1.55rem; font-weight: 800; color: var(--rd-text);
	background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
	border: 1px solid var(--rd-line); border-radius: 12px;
	padding: 7px 11px; min-width: 46px; text-align: center;
}

/* ---------- Lead form card ---------- */
.rd-form-card { border-radius: 26px; padding: 34px; position: relative; }
.rd-form-card::before {
	content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
	background: linear-gradient(160deg, rgba(6,182,212,.7), rgba(16,185,129,.2) 40%, transparent 70%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.rd-form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 14px; }
.rd-form-head h2 { font-size: 1.42rem; margin: 0; }
.rd-steps { display: flex; gap: 8px; }
.rd-step {
	width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
	font-size: .82rem; font-weight: 700; color: var(--rd-faint);
	border: 1px solid var(--rd-line-2); transition: all .3s var(--rd-ease);
}
.rd-step.is-active { background: var(--rd-grad); color: #fff; border-color: transparent; box-shadow: 0 6px 18px -6px rgba(6,182,212,.6); }

.rd-step-panel { display: none; animation: rd-fade .4s var(--rd-ease); }
.rd-step-panel.is-active { display: block; }
@keyframes rd-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.rd-field { display: block; margin-bottom: 16px; }
.rd-field > span, .rd-field-label { display: block; font-size: .82rem; font-weight: 600; color: var(--rd-muted); margin-bottom: 8px; letter-spacing: .01em; }
.rd-field input, .rd-field select {
	width: 100%; padding: 15px 16px; border-radius: var(--rd-radius-sm);
	background: rgba(0,0,0,0.4); border: 1px solid var(--rd-line-2); color: var(--rd-text);
	font-size: 1rem; font-family: inherit; transition: border-color .2s, box-shadow .2s, background .2s;
}
.rd-field input::placeholder { color: var(--rd-faint); }
.rd-field input:focus, .rd-field select:focus { outline: none; border-color: var(--rd-orange); background: rgba(0,0,0,0.55); box-shadow: 0 0 0 3px rgba(6,182,212,.16); }
.rd-field select option { background: #140a18; color: var(--rd-text); }

.rd-wa-banner {
	display: flex; align-items: center; gap: 13px; margin-bottom: 20px;
	padding: 15px 17px; border-radius: var(--rd-radius-sm);
	background: rgba(37,211,102,0.09); border: 1px solid rgba(37,211,102,0.32);
}
.rd-optional { color: var(--rd-faint); font-style: normal; font-weight: 400; font-size: .82em; }
.rd-field-hint { display: block; margin-top: 6px; color: var(--rd-faint); font-size: .78rem; }
.rd-phone { display: flex; gap: 8px; }
.rd-phone .rd-dial { flex: 0 0 auto; width: auto; min-width: 104px; max-width: 132px; padding-right: 6px; }
.rd-phone .rd-dial option { background: #140a18; color: var(--rd-text); }
.rd-phone input { flex: 1 1 auto; }

.rd-wa-banner .rd-wa-ic { font-size: 1.6rem; line-height: 1; }
.rd-wa-banner strong { display: block; font-family: 'Sora'; font-size: .98rem; }
.rd-wa-banner span { display: block; color: var(--rd-muted); font-size: .85rem; }

/* legacy method grid (kept for safety, unused) */
.rd-method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.rd-method { position: relative; cursor: pointer; }
.rd-method input { position: absolute; opacity: 0; inset: 0; }
.rd-method-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 6px; border-radius: var(--rd-radius-sm); border: 1px solid var(--rd-line-2); background: rgba(0,0,0,0.3); font-size: .85rem; font-weight: 600; }
.rd-method.is-selected .rd-method-inner { border-color: var(--rd-orange); background: var(--rd-grad-soft); }

.rd-form-nav { display: flex; gap: 12px; margin-top: 6px; }
.rd-form-nav .rd-btn { flex: 1; }
.rd-form-nav-center { justify-content: center; margin-top: 14px; }
.rd-form-nav-center .rd-btn { flex: 0 0 auto; }

.rd-review-box { margin-bottom: 20px; border-radius: var(--rd-radius-sm); overflow: hidden; border: 1px solid var(--rd-line); }
.rd-review-row { display: flex; justify-content: space-between; gap: 12px; padding: 13px 16px; font-size: .92rem; }
.rd-review-row:nth-child(odd) { background: rgba(255,255,255,0.025); }
.rd-review-row span { color: var(--rd-muted); }
.rd-review-row strong { text-align: right; word-break: break-word; }

.rd-secure { text-align: center; font-size: .8rem; color: var(--rd-faint); margin: 16px 0 0; }
.rd-form-error { margin-top: 14px; padding: 12px 15px; border-radius: var(--rd-radius-sm); background: rgba(16,185,129,.13); border: 1px solid rgba(16,185,129,.4); color: #ffb4ad; font-size: .9rem; }

/* ---------- Premium content ticker ---------- */
.rd-ticker-section { padding: 30px 0; border-top: 1px solid var(--rd-line); border-bottom: 1px solid var(--rd-line); background: rgba(255,255,255,0.012); }
.rd-ticker { width: 100%; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.rd-ticker-track { display: flex; align-items: center; gap: 26px; width: max-content; animation: rd-scroll 40s linear infinite; }
.rd-ticker:hover .rd-ticker-track { animation-play-state: paused; }
@keyframes rd-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rd-ticker-item { font-family: 'Sora'; font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.7rem); letter-spacing: -0.01em; color: rgba(255,255,255,.82); white-space: nowrap; }
.rd-ticker-sep { color: var(--rd-gold); font-size: .7rem; opacity: .8; }

/* ---------- Stats band ---------- */
.rd-stats-band { padding: 48px 0; }
.rd-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.rd-statbox { display: flex; flex-direction: column; text-align: center; padding: 26px 18px; border-radius: var(--rd-radius); border: 1px solid var(--rd-line); background: var(--rd-card); transition: transform .3s var(--rd-ease), border-color .3s; }
.rd-statbox:hover { transform: translateY(-4px); border-color: var(--rd-line-2); }
.rd-statbox .rd-count, .rd-statbox .rd-plus { font-family: 'Sora'; font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.9rem); background: var(--rd-grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline; }
.rd-statbox p { margin: 8px 0 0; color: var(--rd-muted); font-size: .88rem; letter-spacing: .02em; }

/* ---------- Trust badges ---------- */
.rd-badges { padding: 30px 0; }
.rd-badges-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; color: var(--rd-muted); font-size: .92rem; font-weight: 500; }
.rd-badges-row span { white-space: nowrap; }

/* ---------- Sections ---------- */
.rd-section { padding: 96px 0; position: relative; }
.rd-section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.rd-section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; }
.rd-section-head p { color: var(--rd-muted); font-size: 1.1rem; margin: 0; }

/* Features */
.rd-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rd-feature { padding: 32px; border-radius: var(--rd-radius); position: relative; transition: transform .3s var(--rd-ease), border-color .3s; }
.rd-feature:hover { transform: translateY(-6px); border-color: rgba(6,182,212,.35); }
.rd-feature-ic { font-size: 1.9rem; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 16px; background: var(--rd-grad-soft); border: 1px solid var(--rd-line); margin-bottom: 18px; }
.rd-feature h3 { font-size: 1.2rem; }
.rd-feature p { color: var(--rd-muted); margin: 0; font-size: .96rem; }

/* Sports */
.rd-sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rd-sport { padding: 28px 18px; border-radius: var(--rd-radius); text-align: center; font-weight: 600; font-size: 1.02rem; border: 1px solid var(--rd-line); background: var(--rd-card); transition: transform .25s var(--rd-ease), border-color .25s, background .25s; }
.rd-sport:hover { transform: translateY(-4px); border-color: rgba(6,182,212,.4); background: var(--rd-grad-soft); }

/* Devices */
.rd-device-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.rd-device-chip { padding: 14px 24px; border-radius: 999px; background: var(--rd-card); border: 1px solid var(--rd-line-2); font-weight: 600; font-size: .95rem; transition: transform .2s var(--rd-ease), border-color .2s; }
.rd-device-chip:hover { transform: translateY(-3px); border-color: var(--rd-gold); }

/* Reviews */
.rd-reviews-track { display: flex; gap: 20px; overflow-x: auto; padding: 6px 2px 18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.rd-reviews-track::-webkit-scrollbar { display: none; }
.rd-review { flex: 0 0 330px; max-width: 330px; padding: 28px; border-radius: var(--rd-radius); scroll-snap-align: start; }
.rd-review-top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.rd-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: 'Sora'; font-weight: 700; background: var(--rd-grad); color: #fff; }
.rd-review-top strong { display: block; }
.rd-verified { font-size: .76rem; color: #34d36b; }
.rd-review p { color: var(--rd-muted); margin: 12px 0 0; font-size: .95rem; }

/* FAQ */
.rd-faq-inner { max-width: 780px; }
.rd-faq-item { border: 1px solid var(--rd-line); border-radius: var(--rd-radius-sm); margin-bottom: 12px; background: var(--rd-card); overflow: hidden; transition: border-color .25s; }
.rd-faq-item.is-open { border-color: rgba(6,182,212,.4); }
.rd-faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 19px 22px; background: none; border: 0; color: var(--rd-text); font-family: 'Sora'; font-weight: 600; font-size: 1.04rem; cursor: pointer; text-align: left; }
.rd-faq-icon { font-size: 1.6rem; color: var(--rd-orange); transition: transform .3s var(--rd-ease); flex: 0 0 auto; }
.rd-faq-item.is-open .rd-faq-icon { transform: rotate(45deg); }
.rd-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--rd-ease); }
.rd-faq-item.is-open .rd-faq-a { max-height: 280px; }
.rd-faq-a p { margin: 0; padding: 0 22px 20px; color: var(--rd-muted); }

/* Final CTA */
.rd-final-cta { padding: 70px 0 100px; }
.rd-final-inner { text-align: center; padding: 64px 30px; border-radius: 30px; position: relative; overflow: hidden; }
.rd-final-inner::before { content: ""; position: absolute; inset: 0; background: var(--rd-grad-soft); z-index: -1; }
.rd-final-inner h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
.rd-final-inner p { color: var(--rd-muted); font-size: 1.12rem; margin: 0 0 28px; }
.rd-final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Logo image ---------- */
.rd-logo-img { display: block; height: 44px; width: auto; }

/* ---------- Pricing ---------- */
.rd-pricing { position: relative; }
.rd-price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rd-price-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 880px; margin: 0 auto; }
.rd-section-head-sub { margin-top: 72px; }
.rd-price-card {
	position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
	padding: 32px 22px; border-radius: var(--rd-radius); transition: transform .3s var(--rd-ease), border-color .3s;
}
.rd-price-card:hover { transform: translateY(-6px); border-color: rgba(6,182,212,.4); }
.rd-price-hot { border-color: rgba(251,191,36,.55) !important; background: linear-gradient(180deg, rgba(251,191,36,0.08), rgba(255,255,255,0.02)) !important; box-shadow: 0 30px 70px -28px rgba(251,191,36,.3), inset 0 1px 0 rgba(255,255,255,.08); }
.rd-price-badge {
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--rd-gold); color: #20160a; font-size: .68rem; font-weight: 800;
	padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
}
.rd-price-name { font-size: 1.16rem; margin: 6px 0 4px; }
.rd-price-amount { font-family: 'Sora'; font-weight: 800; font-size: 2.5rem; line-height: 1; background: var(--rd-grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 6px 0; }
.rd-price-note { font-size: .82rem; font-weight: 700; color: var(--rd-gold); margin-bottom: 14px; }
.rd-price-feats { list-style: none; margin: 8px 0 22px; padding: 0; width: 100%; }
.rd-price-feats li { font-size: .88rem; color: var(--rd-muted); padding: 7px 0; border-top: 1px solid var(--rd-line); }
.rd-price-feats li::before { content: "✓ "; color: #34d36b; font-weight: 700; }
.rd-price-card .rd-btn { margin-top: auto; }
.rd-guarantee { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 34px; margin-top: 50px; color: var(--rd-muted); font-weight: 600; font-size: .98rem; }
.rd-modal-allplans { display: inline-block; margin-top: 18px; color: var(--rd-gold); font-weight: 600; font-size: .92rem; }
.rd-modal-allplans:hover { text-decoration: underline; }

/* Standalone pricing page */
.rd-pricing-page .rd-pricing { padding-top: 40px; }
.rd-pricing-page-top { padding: 26px 0 0; }
.rd-back-home { display: inline-flex; align-items: center; gap: 6px; color: var(--rd-muted); font-weight: 600; font-size: .92rem; transition: color .2s; }
.rd-back-home:hover { color: var(--rd-text); }
.rd-trial-used {
	display: flex; align-items: center; gap: 14px; max-width: 760px; margin: 0 auto 44px;
	padding: 18px 22px; border-radius: var(--rd-radius);
	background: linear-gradient(135deg, rgba(251,191,36,0.12), rgba(16,185,129,0.10));
	border: 1px solid rgba(251,191,36,.4);
}
.rd-trial-used-ic { font-size: 1.8rem; line-height: 1; }
.rd-trial-used strong { display: block; font-family: 'Sora'; font-size: 1.02rem; }
.rd-trial-used span { display: block; color: var(--rd-muted); font-size: .9rem; margin-top: 2px; }

/* Generic page (privacy, terms, etc.) */
.rd-page-inner { padding: 80px 0 90px; max-width: 820px; }
.rd-page-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 24px; }
.rd-page-content { color: var(--rd-muted); }
.rd-page-content h2 { color: var(--rd-text); margin-top: 1.4em; }
.rd-page-content a { color: var(--rd-orange); }

/* ---------- Footer ---------- */
.rd-footer { border-top: 1px solid var(--rd-line); padding: 64px 0 32px; background: var(--rd-bg-2); }
.rd-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; }
.rd-footer-brand p { color: var(--rd-muted); margin-top: 14px; max-width: 40ch; font-size: .95rem; }
.rd-footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--rd-faint); }
.rd-footer-col a { display: block; color: var(--rd-text); margin-bottom: 9px; font-size: .95rem; opacity: .82; transition: opacity .2s, color .2s; }
.rd-footer-col a:hover { opacity: 1; color: var(--rd-orange); }
.rd-footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--rd-line); color: var(--rd-faint); font-size: .82rem; }

/* ---------- Floating WhatsApp ---------- */
.rd-float-wa {
	position: fixed; right: 22px; bottom: 22px; z-index: 60;
	width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
	background: #25d366; color: #fff; box-shadow: 0 12px 32px -6px rgba(37,211,102,.6);
	transition: transform .2s var(--rd-ease);
}
.rd-float-wa:hover { transform: scale(1.08); }

/* ---------- Sticky mobile CTA ---------- */
.rd-sticky-cta {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	background: rgba(5,2,8,0.94); backdrop-filter: blur(14px);
	border-top: 1px solid var(--rd-line-2);
	transform: translateY(120%); transition: transform .35s var(--rd-ease); display: none;
}
.rd-sticky-cta.is-visible { transform: translateY(0); }

/* ---------- Modal ---------- */
.rd-modal, .rd-exit { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.rd-modal[hidden], .rd-exit[hidden] { display: none; }
.rd-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.74); backdrop-filter: blur(6px); }
.rd-modal-box, .rd-exit-box { position: relative; width: 100%; max-width: 470px; border-radius: var(--rd-radius); padding: 40px 32px; text-align: center; animation: rd-pop .35s var(--rd-ease); }
@keyframes rd-pop { from { opacity: 0; transform: scale(.94) translateY(10px); } to { opacity: 1; transform: none; } }
.rd-modal-close { position: absolute; top: 14px; right: 18px; background: none; border: 0; color: var(--rd-muted); font-size: 1.9rem; cursor: pointer; line-height: 1; }
.rd-modal-close:hover { color: var(--rd-text); }
.rd-modal-ic { width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; font-size: 2rem; margin: 0 auto 18px; font-weight: 800; }
.rd-modal-ic-ok { background: rgba(52,211,107,.14); color: #34d36b; border: 2px solid rgba(52,211,107,.5); }
.rd-modal-ic-warn { background: rgba(6,182,212,.14); color: var(--rd-orange); border: 2px solid rgba(6,182,212,.5); }
.rd-modal-box h3 { font-size: 1.45rem; }
.rd-modal-box p { color: var(--rd-muted); margin: 0 0 24px; }
.rd-modal-actions { display: flex; flex-direction: column; gap: 10px; }

/* Package selector */
.rd-package-grid { display: grid; gap: 12px; }
.rd-package {
	position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px;
	padding: 22px; border-radius: var(--rd-radius-sm); cursor: pointer; text-align: center;
	background: rgba(0,0,0,.32); border: 1px solid var(--rd-line-2); color: var(--rd-text);
	font-family: inherit; transition: transform .25s var(--rd-ease), border-color .25s, background .25s;
}
.rd-package:hover { transform: translateY(-4px); border-color: var(--rd-orange); background: var(--rd-grad-soft); }
.rd-package-hot { border-color: rgba(251,191,36,.5); background: var(--rd-grad-soft); }
.rd-package-tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--rd-gold); color: #1a0f00; font-size: .68rem; font-weight: 800; padding: 4px 13px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }
.rd-package-name { font-family: 'Sora'; font-weight: 700; font-size: 1.18rem; }
.rd-package-price { color: var(--rd-orange); font-weight: 700; }
.rd-package-cta { margin-top: 6px; font-size: .85rem; color: var(--rd-muted); }

/* Exit popup */
.rd-exit-box { max-width: 490px; }
.rd-exit-badge { display: inline-block; background: var(--rd-grad); color: #fff; font-weight: 700; padding: 6px 18px; border-radius: 999px; margin-bottom: 16px; }
.rd-exit-box h3 { font-size: 1.6rem; }
.rd-exit-box p { color: var(--rd-muted); margin: 0 0 24px; }

/* ---------- Scroll reveal ---------- */
.rd-anim { opacity: 0; transform: translateY(22px); }
.rd-anim.rd-in { opacity: 1; transform: none; transition: opacity .7s var(--rd-ease), transform .7s var(--rd-ease); }

/* =====================================================================
   Responsive — mobile-first
   ===================================================================== */
@media (max-width: 980px) {
	.rd-hero-grid { grid-template-columns: 1fr; gap: 40px; }
	.rd-form-card { order: -1; }
	.rd-feature-grid { grid-template-columns: repeat(2, 1fr); }
	.rd-sports-grid { grid-template-columns: repeat(2, 1fr); }
	.rd-footer-grid { grid-template-columns: 1fr 1fr; }
	.rd-sub { max-width: none; }
	.rd-section { padding: 76px 0; }
	.rd-price-grid { grid-template-columns: repeat(2, 1fr); }
	.rd-price-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
	.rd-container { padding: 0 18px; }
	.rd-nav-links { display: none; }
	.rd-nav-inner { height: 64px; }
	.rd-nav-cta { padding: 10px 18px; font-size: .9rem; }

	.rd-hero { padding: 34px 0 54px; }
	.rd-h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
	.rd-countdown-clock b { font-size: 1.3rem; min-width: 40px; padding: 6px 9px; }

	.rd-form-card { padding: 24px 18px; }
	.rd-form-head h2 { font-size: 1.26rem; }

	.rd-stats-band { padding: 36px 0; }
	.rd-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.rd-feature-grid { grid-template-columns: 1fr; }
	.rd-footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.rd-section { padding: 60px 0; }
	.rd-section-head { margin-bottom: 40px; }
	.rd-final-inner { padding: 44px 22px; }
	.rd-footer-bottom { flex-direction: column; }

	.rd-sticky-cta { display: block; }
	.rd-float-wa { bottom: 88px; right: 16px; }
	body { padding-bottom: 78px; }

	.rd-btn { padding: 16px 26px; }
	.rd-field input, .rd-field select { padding: 15px; font-size: 16px; }
	.rd-faq-q { padding: 17px 18px; }
	.rd-price-grid, .rd-price-grid-3 { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
	.rd-section-head-sub { margin-top: 54px; }
	.rd-method-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 460px) {
	.rd-sports-grid { grid-template-columns: 1fr; }
	.rd-steps { gap: 6px; }
	.rd-step { width: 27px; height: 27px; }
	.rd-modal-box, .rd-exit-box { padding: 32px 20px; max-height: 88vh; overflow-y: auto; }
	.rd-trust { padding: 8px 13px; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
	.rd-anim { opacity: 1; transform: none; }
	.rd-ticker { -webkit-mask: none; mask: none; }
}
