/* Iron TV Pro — Shared CSS */
/* Palette derived from Iron TV Pro logo:
   Crystal colors: purple, pink/magenta, orange/yellow, green, cyan/blue
   Brand gradient: purple → pink → orange
   Background: deep space dark
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--primary: #0ea5e9;
--primary-dark: #0284c7;
--primary-light: #38bdf8;
--accent: #86efac;
--accent2: #4ade80;
--green: #86efac;
--cyan: #22d3ee;
--blue: #0ea5e9;
--bg: #070712;
--card: #0d0b1e;
--card2: #120f28;
--border: rgba(255,255,255,0.07);
--text: #ffffff;
--muted: rgba(255,255,255,0.5);
--muted2: rgba(255,255,255,0.7);
--emerald: #10b981;
--gradient-main: linear-gradient(135deg, #0ea5e9 0%, #86efac 55%, #4ade80 100%);
--gradient-hero: linear-gradient(135deg, #0284c7 0%, #0ea5e9 35%, #86efac 65%, #4ade80 100%);
--gradient-alt: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 40%, #86efac 100%);
--gradient-purple: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
}
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height, 84px); }
:root { --header-height: 84px; }
body {
font-family: 'Plus Jakarta Sans', sans-serif;
background:
radial-gradient(circle at 15% 15%, rgba(14,165,233,0.18), transparent 28%),
radial-gradient(circle at 85% 18%, rgba(52,211,153,0.14), transparent 26%),
radial-gradient(circle at 20% 88%, rgba(6,182,212,0.14), transparent 26%),
radial-gradient(circle at 78% 80%, rgba(52,211,153,0.08), transparent 24%),
linear-gradient(135deg, #070712 0%, #0f0d22 28%, #13102e 55%, #1a0e2e 78%, #200f25 100%);
color: var(--text);
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.text-muted2 { color: var(--muted2); }
.gradient-text {
background: var(--gradient-main);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.badge {
display: inline-flex; align-items: center;
border-radius: 9999px; font-size: 0.7rem; font-weight: 600;
padding: 0.3rem 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
border: 1px solid rgba(14,165,233,0.3);
background: rgba(14,165,233,0.12); color: #bae6fd;
}
.btn-primary {
display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
background: var(--gradient-main);
color: #fff; font-weight: 700; font-size: 0.95rem;
padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.14);
cursor: pointer; text-decoration: none;
box-shadow: 0 0 22px rgba(14,165,233,0.28);
transition: all 0.3s; font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { box-shadow: 0 0 38px rgba(14,165,233,0.45); transform: scale(1.02); }
.btn-ghost {
display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
background: rgba(255,255,255,0.04); color: #fff; font-weight: 600; font-size: 0.95rem;
padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.18);
cursor: pointer; text-decoration: none;
box-shadow: 0 0 10px rgba(255,255,255,0.04);
transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.btn-cyan {
display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
background: rgba(34,211,238,0.07); color: #22d3ee; font-weight: 600;
padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid rgba(34,211,238,0.3);
cursor: pointer; text-decoration: none; font-size: 0.95rem; transition: all 0.3s;
}
.btn-cyan:hover { background: rgba(34,211,238,0.15); border-color: rgba(34,211,238,0.5); }
.card {
background: rgba(13,11,30,0.7); border: 1px solid var(--border);
border-radius: 1.25rem; backdrop-filter: blur(10px);
transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover { border-color: rgba(14,165,233,0.2); box-shadow: 0 0 30px rgba(14,165,233,0.06); }
/* HEADER */
header {
transform: translateZ(0); -webkit-transform: translateZ(0); will-change: transform;
}
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0; }
.logo-icon {
width: 44px; height: 44px; border-radius: 0;
display: flex; align-items: center; justify-content: center;
overflow: visible; background: transparent; flex-shrink: 0;
}
.logo-icon img { width: 44px; height: 44px; object-fit: contain; display: block; }
.header-actions { display: none; }
.btn-sm {
display: inline-flex; align-items: center; gap: 0.3rem;
background: var(--gradient-main);
color: #fff; font-weight: 700; font-size: 0.8rem;
padding: 0.55rem 1.2rem; border-radius: 0.6rem; border: 1px solid rgba(255,255,255,0.14);
cursor: pointer; text-decoration: none; transition: all 0.3s;
box-shadow: 0 0 14px rgba(14,165,233,0.25);
font-family: 'Outfit', sans-serif;
}
.btn-sm:hover { box-shadow: 0 0 24px rgba(14,165,233,0.4); transform: scale(1.03); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
display: none;
position: fixed;
top: 68px;
left: 0; right: 0; bottom: 0;
background: rgba(5,5,15,0.98);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
flex-direction: column;
z-index: 9998;
overflow-y: auto;
transform: translateX(-100%);
transition: transform 0.3s ease;
}
.mobile-nav.open {
display: flex;
transform: translateX(0);
}
.mobile-nav-links {
display: flex;
flex-direction: column;
padding: 1.5rem 1.5rem 1rem;
flex: 1;
}
.mobile-nav a {
display: flex;
align-items: center;
gap: 1rem;
color: rgba(255,255,255,0.85);
font-size: 1.1rem;
font-weight: 600;
font-family: 'Outfit', sans-serif;
text-decoration: none;
padding: 1rem 0;
border-bottom: 1px solid rgba(255,255,255,0.06);
transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #bae6fd; padding-left: 6px; }
.mobile-nav-icon {
width: 38px; height: 38px;
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
font-size: 1rem;
flex-shrink: 0;
}
.mobile-nav-footer {
padding: 1.25rem 1.5rem 2rem;
border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-wa {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
background: linear-gradient(135deg, #25D366, #128C7E);
color: #fff;
font-weight: 700;
font-size: 1rem;
font-family: 'Outfit', sans-serif;
text-decoration: none;
padding: 1rem;
border-radius: 1rem;
box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
/* HERO */
.hero {
min-height: 100vh; display: flex; align-items: center;
position: relative; overflow: hidden; padding-top: 5rem;
}
.hero-bg {
position: absolute; inset: 0; z-index: 0;
background:
radial-gradient(ellipse 900px 500px at 20% 0%, rgba(14,165,233,0.12) 0%, transparent 70%),
radial-gradient(ellipse 650px 420px at 85% 5%, rgba(134,239,172,0.10) 0%, transparent 72%),
radial-gradient(ellipse 600px 380px at 80% 100%, rgba(249,115,22,0.07) 0%, transparent 70%),
radial-gradient(ellipse 420px 300px at 50% 50%, rgba(99,102,241,0.07) 0%, transparent 60%);
}
.hero-grid {
position: absolute; inset: 0; z-index: 0; opacity: 0.025;
background-image: linear-gradient(var(--border) 1px, transparent 1px),
linear-gradient(90deg, var(--border) 1px, transparent 1px);
background-size: 60px 60px;
}
.hero .container { position: relative; z-index: 1; text-align: center; padding: 4rem 1.5rem; }
.hero h1 {
font-size: clamp(2.2rem, 6vw, 4.5rem);
font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
margin: 1rem 0 1.5rem;
}
.hero p { font-size: 1.05rem; color: var(--muted2); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.75; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.countdown-bar {
display: inline-flex; align-items: center; gap: 0.75rem;
background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(34,211,238,0.07));
border: 1px solid rgba(14,165,233,0.25); border-radius: 9999px;
padding: 0.6rem 1.25rem; margin-bottom: 2rem;
}
.countdown-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #bae6fd; }
.countdown-digits { display: flex; gap: 0.25rem; }
.cd { background: rgba(14,165,233,0.2); border: 1px solid rgba(14,165,233,0.25); color: #ffffff; font-weight: 700; font-size: 0.875rem; padding: 0.2rem 0.5rem; border-radius: 0.4rem; font-variant-numeric: tabular-nums; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.hero-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600; }
.hero-badge.green { color: #86efac; }
.hero-badge.blue { color: #93c5fd; }
.hero-badge.gold { color: #bae6fd; }
.hero-badge.purple { color: #f0abfc; }
.hero-badge.cyan { color: #67e8f9; }
.hero-badge svg { width: 14px; height: 14px; }
/* STATS */
.stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; margin-top: 3rem; }
.stat-box { text-align: center; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 0.75rem; padding: 1rem 0.5rem; }
.stat-box .val { font-size: 1.15rem; font-weight: 800; color: var(--primary-light); font-family: 'Outfit', sans-serif; }
.stat-box .lbl { font-size: 0.65rem; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; margin-top: 0.2rem; }
/* SECTIONS */
section { padding: 5rem 0; position: relative; }
section.alt { background: rgba(255,255,255,0.008); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; margin: 0.5rem 0 1rem; }
.section-head p { color: var(--muted2); max-width: 560px; margin: 0 auto; line-height: 1.75; }
/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card { padding: 1.75rem; }
.feature-icon { width: 44px; height: 44px; border-radius: 0.75rem; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.22); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feature-icon svg { width: 20px; height: 20px; color: var(--primary-light); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
.feature-card p { font-size: 0.85rem; color: var(--muted2); line-height: 1.75; }
/* MOVIES */
.movies-track-wrap { overflow: hidden; }
.movies-track { display: flex; gap: 1rem; animation: scrollTrack 35s linear infinite; width: max-content; }
@keyframes scrollTrack { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.movie-card { flex-shrink: 0; width: 150px; height: 220px; border-radius: 0.85rem; overflow: hidden; background: var(--card2); border: 1px solid var(--border); position: relative; }
.movie-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.movie-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(134,239,172,0.1)); }
/* SERVERS */
.servers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.server-card { display: flex; flex-direction: column; overflow: hidden; }
.server-body { padding: 1.5rem; flex: 1; }
.server-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.server-logo { width: 56px; height: 56px; border-radius: 0.75rem; overflow: hidden; flex-shrink: 0; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.server-info { flex: 1; min-width: 0; }
.server-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; font-family: 'Outfit', sans-serif; }
.server-desc { font-size: 0.78rem; color: var(--muted); }
.server-features { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.server-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.83rem; color: var(--muted2); }
.server-features li svg { width: 14px; height: 14px; color: var(--primary-light); flex-shrink: 0; }
.server-footer { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); display: flex; align-items: center; justify-content: space-between; }
.server-footer .from { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
.server-footer .price { font-size: 1.2rem; font-weight: 800; font-family: 'Outfit', sans-serif; }
.server-footer .per { font-size: 0.75rem; color: var(--muted); }
.server-footer .view-btn { display: inline-flex; align-items: center; background: rgba(255,255,255,0.08); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 0.45rem 1rem; border-radius: 0.5rem; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer; }
.server-footer .view-btn:hover { background: var(--primary); color: #fff; }
.server-badge { display: inline-flex; align-items: center; font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 9999px; border: 1px solid rgba(14,165,233,0.3); background: rgba(14,165,233,0.1); color: #67e8f9; }
/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.step-card { padding: 1.5rem; position: relative; }
.step-num { font-size: 2.5rem; font-weight: 900; color: rgba(14,165,233,0.1); font-family: 'Outfit', sans-serif; line-height: 1; }
.step-icon { width: 40px; height: 40px; border-radius: 0.7rem; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.22); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.step-icon svg { width: 18px; height: 18px; color: var(--primary-light); }
.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
.step-card p { font-size: 0.83rem; color: var(--muted2); line-height: 1.7; }
/* PRICING */
.tivi-plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.tivi-plan-card { background: rgba(13,11,30,0.8); border: 1px solid rgba(255,255,255,0.07); border-radius: 1.25rem; padding: 1.75rem; display: flex; flex-direction: column; transition: all 0.3s; }
.tivi-plan-card:hover { border-color: rgba(14,165,233,0.25); box-shadow: 0 0 30px rgba(14,165,233,0.1); }
.tivi-plan-card.tivi-plan-popular { border-color: rgba(14,165,233,0.4); box-shadow: 0 0 40px rgba(14,165,233,0.12); }
.tivi-plan-badge { display: inline-flex; align-items: center; font-size: 0.68rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); letter-spacing: 0.04em; margin-bottom: 1rem; width: fit-content; text-transform: uppercase; }
.tivi-badge-hot { background: rgba(14,165,233,0.18) !important; border-color: rgba(14,165,233,0.4) !important; color: #bae6fd !important; }
.tivi-badge-value { background: rgba(99,102,241,0.15) !important; border-color: rgba(99,102,241,0.3) !important; color: #a5b4fc !important; }
.tivi-plan-header { margin-bottom: 1.25rem; }
.tivi-plan-name { font-size: 1.2rem; font-weight: 800; font-family: 'Outfit', sans-serif; margin-bottom: 0.5rem; }
.tivi-plan-price-wrap { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.75rem; }
.tivi-plan-price { font-size: 2rem; font-weight: 900; font-family: 'Outfit', sans-serif; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tivi-plan-period { font-size: 0.8rem; color: var(--muted); }
.tivi-plan-gift { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; color: #bae6fd; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2); border-radius: 0.5rem; padding: 0.35rem 0.7rem; width: fit-content; }
.tivi-gift-icon { color: #bae6fd; }
.tivi-plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; margin-bottom: 1.25rem; }
.tivi-plan-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--muted2); }
.tivi-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tivi-check svg { width: 10px; height: 10px; color: #bae6fd; }
.tivi-adult-row { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1.25rem; font-size: 0.78rem; color: var(--muted); }
.tivi-adult-row input { margin-top: 2px; accent-color: var(--primary); }
.tivi-adult-row label { cursor: pointer; line-height: 1.4; }
.tivi-adult-row label span { font-size: 0.7rem; color: var(--muted); display: block; }
.tivi-plan-btn { display: flex; align-items: center; justify-content: center; width: 100%; padding: 0.85rem; border-radius: 0.75rem; font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; font-family: 'Outfit', sans-serif; transition: all 0.3s; text-decoration: none; }
.tivi-btn-primary { background: var(--gradient-main); color: #fff; box-shadow: 0 0 20px rgba(14,165,233,0.28); }
.tivi-btn-primary:hover { box-shadow: 0 0 38px rgba(14,165,233,0.45); transform: scale(1.02); }
.pricing-secure { text-align: center; margin-top: 0; }
.secure-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 0.75rem; padding: 0.75rem 1.25rem; }
.secure-badge svg { width: 16px; height: 16px; color: var(--primary-light); }
.secure-badge span { font-size: 0.8rem; color: var(--muted2); }
/* DEVICES */
.devices-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
.device-card { text-align: center; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 1rem; padding: 1rem 0.5rem; transition: all 0.3s; }
.device-card:hover { border-color: rgba(14,165,233,0.2); background: rgba(14,165,233,0.04); }
.device-icon { width: 40px; height: 40px; border-radius: 0.6rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; transition: all 0.3s; }
.device-card:hover .device-icon { border-color: rgba(14,165,233,0.25); }
.device-icon svg { width: 18px; height: 18px; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.device-card:hover .device-icon svg { color: var(--primary-light); }
.device-name { font-size: 0.75rem; font-weight: 700; margin-bottom: 0.2rem; }
.device-sub { font-size: 0.65rem; color: var(--muted); }
/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.trust-card { padding: 2rem; display: flex; flex-direction: column; }
.trust-icon { width: 48px; height: 48px; border-radius: 0.85rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.trust-icon svg { width: 22px; height: 22px; }
.trust-card.blue-card { background: linear-gradient(135deg, rgba(99,102,241,0.08), transparent); border-color: rgba(99,102,241,0.15) !important; }
.trust-card.blue-card .trust-icon { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.2); }
.trust-card.blue-card .trust-icon svg { color: #a5b4fc; }
.trust-card.gold-card { background: linear-gradient(135deg, rgba(14,165,233,0.08), transparent); border-color: rgba(14,165,233,0.15) !important; }
.trust-card.gold-card .trust-icon { background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.2); }
.trust-card.gold-card .trust-icon svg { color: #bae6fd; }
.trust-card.green-card { background: linear-gradient(135deg, rgba(132,204,22,0.08), transparent); border-color: rgba(132,204,22,0.15) !important; }
.trust-card.green-card .trust-icon { background: rgba(132,204,22,0.15); border: 1px solid rgba(132,204,22,0.2); }
.trust-card.green-card .trust-icon svg { color: #bef264; }
.trust-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
.trust-card p { font-size: 0.85rem; color: var(--muted2); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
.trust-btn { display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; padding: 0.65rem 1.25rem; border-radius: 0.65rem; text-decoration: none; transition: all 0.3s; cursor: pointer; }
.trust-btn.blue { border: 1px solid rgba(99,102,241,0.2); color: #a5b4fc; background: transparent; }
.trust-btn.blue:hover { background: rgba(99,102,241,0.1); }
.trust-btn.gold { border: 1px solid rgba(14,165,233,0.2); color: #bae6fd; background: transparent; }
.trust-btn.gold:hover { background: rgba(14,165,233,0.1); }
.trust-btn.green { border: 1px solid rgba(132,204,22,0.3); color: #bef264; background: rgba(132,204,22,0.06); }
.trust-btn.green:hover { background: rgba(132,204,22,0.15); }
.trust-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 2.5rem; }
.trust-stat { text-align: center; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 0.75rem; padding: 0.75rem 0.5rem; }
.trust-stat svg { width: 16px; height: 16px; color: var(--primary-light); margin: 0 auto 0.4rem; display: block; }
.trust-stat span { font-size: 0.7rem; color: var(--muted2); font-weight: 600; }
/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card { padding: 1.5rem; display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 15px; height: 15px; fill: #bae6fd; color: #bae6fd; }
.stars svg.empty { fill: rgba(255,255,255,0.08); color: rgba(255,255,255,0.08); }
.testimonial-card blockquote { font-size: 0.875rem; color: var(--muted2); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; }
.author-avatar { width: 36px; height: 36px; border-radius: 9999px; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: #bae6fd; }
.author-name { font-size: 0.875rem; font-weight: 700; }
.author-region { font-size: 0.7rem; color: var(--muted); }
/* GUIDE */
.guide-list { display: flex; flex-direction: column; gap: 3rem; max-width: 800px; margin: 0 auto; }
.guide-item { display: flex; gap: 1.5rem; }
.guide-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 0.6rem; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.22); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; color: #bae6fd; font-family: 'Outfit', sans-serif; }
.guide-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; font-family: 'Outfit', sans-serif; }
.guide-item p { font-size: 0.875rem; color: var(--muted2); line-height: 1.85; }
/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: rgba(14,165,233,0.25); background: linear-gradient(90deg, rgba(14,165,233,0.04), transparent); }
.faq-btn { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: none; border: none; cursor: pointer; text-align: left; }
.faq-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 0.6rem; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; font-family: 'Outfit', sans-serif; transition: all 0.3s; }
.faq-item.open .faq-num { background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.22); color: #bae6fd; }
.faq-item:not(.open) .faq-num { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.faq-q { flex: 1; font-size: 0.95rem; font-weight: 600; color: #fff; }
.faq-chevron { flex-shrink: 0; width: 32px; height: 32px; border-radius: 0.6rem; border: 1px solid; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.faq-chevron svg { width: 15px; height: 15px; transition: transform 0.3s; }
.faq-item.open .faq-chevron { background: rgba(14,165,233,0.1); border-color: rgba(14,165,233,0.22); }
.faq-item.open .faq-chevron svg { transform: rotate(180deg); color: #bae6fd; }
.faq-item:not(.open) .faq-chevron { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.faq-item:not(.open) .faq-chevron svg { color: rgba(255,255,255,0.6); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.25rem 1.25rem 4.5rem; font-size: 0.875rem; color: var(--muted2); line-height: 1.75; }
.faq-footer { text-align: center; margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* CTA */
.cta-section {
padding: 5rem 0;
background: linear-gradient(135deg, rgba(14,165,233,0.05) 0%, rgba(34,211,238,0.02) 50%, rgba(7,7,18,0) 100%);
border-top: 1px solid var(--border); position: relative; overflow: hidden;
}
.cta-section .container { text-align: center; position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin: 0.75rem 0 1rem; }
.cta-section p { color: var(--muted2); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.75; }
/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.83rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.social-btn { width: 36px; height: 36px; border-radius: 0.6rem; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s; }
.social-btn:hover { transform: scale(1.1); }
.footer-col h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; font-family: 'Outfit', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.83rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-bottom-right { display: flex; gap: 1rem; }
.footer-payment-logos { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.pay-logo { width: 38px; height: 24px; display: flex; align-items: center; justify-content: center; }
/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: #0f0d20; border: 1px solid rgba(14,165,233,0.2); border-radius: 1.25rem; padding: 2rem; max-width: 440px; width: 100%; position: relative; box-shadow: 0 0 60px rgba(14,165,233,0.15); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.06); border: none; color: #fff; border-radius: 0.5rem; padding: 0.35rem 0.6rem; cursor: pointer; font-size: 1rem; transition: background 0.2s; }
.modal-close:hover { background: rgba(255,255,255,0.12); }
.modal-badge { display: inline-flex; background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.25); border-radius: 9999px; padding: 0.3rem 0.9rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #bae6fd; margin-bottom: 0.75rem; }
.modal-title { font-size: 1.35rem; font-weight: 800; font-family: 'Outfit', sans-serif; margin-bottom: 0.5rem; }
.modal-sub { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.5rem; }
.modal-form { display: flex; flex-direction: column; gap: 0.85rem; }
.modal-input { width: 100%; padding: 0.85rem 1rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; color: #fff; font-size: 0.9rem; outline: none; transition: border-color 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.modal-input:focus { border-color: rgba(14,165,233,0.4); }
.modal-input::placeholder { color: var(--muted); }
.modal-select { appearance: none; -webkit-appearance: none; }
/* LANGUAGE SELECTOR */
.lang-float { position: fixed; bottom: 6rem; right: 1.5rem; z-index: 200; }
.ls-widget { position: relative; }
.ls-toggle { background: rgba(13,11,30,0.92); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.65rem; padding: 0.45rem 0.85rem; color: #fff; font-size: 0.78rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 0.4rem; transition: all 0.2s; backdrop-filter: blur(10px); font-family: 'Plus Jakarta Sans', sans-serif; }
.ls-toggle:hover { border-color: rgba(14,165,233,0.35); }
.ls-menu { position: absolute; bottom: 110%; right: 0; background: rgba(13,11,30,0.98); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.85rem; padding: 0.5rem; min-width: 160px; display: none; backdrop-filter: blur(20px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.ls-menu.open { display: block; }
.ls-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.75rem; border-radius: 0.6rem; color: var(--muted2); font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none; border: none; background: none; width: 100%; text-align: left; }
.ls-option:hover { background: rgba(14,165,233,0.1); color: #fff; }
.ls-option.active { background: rgba(14,165,233,0.15); color: #bae6fd; }
/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.animate-fadeup { opacity: 0; animation: fadeUp 0.65s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── HEADER ──────────────────────────────────────────────────────────── */
#siteHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: 68px;
  background: rgba(7,7,18,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hdr-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.hdr-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; justify-self: start;
}
.hdr-logo img { display: block; width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.hdr-brand {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.05rem;
  color: #ffffff; background: none; -webkit-text-fill-color: #ffffff;
  letter-spacing: -0.02em; white-space: nowrap;
}
.hdr-8k {
  font-size: 0.55rem; font-weight: 700;
  color: #22c55e; -webkit-text-fill-color: #22c55e;
  background: none; margin-left: 1px;
}
.hdr-nav {
  display: flex; align-items: center; gap: 1.75rem;
  justify-self: center;
}
.nav-link {
  color: #9ca3af; font-size: 0.875rem; font-weight: 500;
  text-decoration: none; white-space: nowrap; transition: color 0.2s;
}
.nav-link:hover { color: #bae6fd; }
.hdr-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  justify-self: end;
}
.hdr-burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s ease; transform-origin: center;
}
.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ───────────────────────────────────────────────── */
.mnav-overlay {
  display: none; position: fixed; inset: 0; z-index: 9001;
  background: rgba(0,0,0,0.5);
}
.mnav-overlay.open { display: block; }

/* ── MOBILE NAV DRAWER ────────────────────────────────────────────────── */
.mnav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 85%; max-width: 320px; z-index: 9002;
  background: #0a0815;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 32px rgba(0,0,0,0.6);
}
.mnav.open { transform: translateX(0); }
.mnav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 68px;
}
.mnav-close {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; border-radius: 8px; padding: 6px 10px;
  cursor: pointer; font-size: 0.9rem; transition: background 0.2s;
}
.mnav-close:hover { background: rgba(255,255,255,0.15); }
.mnav-links {
  flex: 1; overflow-y: auto;
  padding: 0.75rem 1rem;
}
.mnav-link {
  display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.88); font-size: 1rem; font-weight: 600;
  font-family: 'Outfit', sans-serif; text-decoration: none;
  padding: 0.875rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.mnav-link:last-child { border-bottom: none; }
.mnav-link:hover { color: #bae6fd; padding-left: 1rem; }
.mnav-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.mnav-foot { display: none; }
.mnav-wa { display: none; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
  }
  .hdr-nav { display: none; }
  .hdr-burger { display: flex; }
}

/* OLD RESPONSIVE */
@media (max-width: 1024px) {
.tivi-plans-grid { grid-template-columns: repeat(2, 1fr); }
.features-grid, .servers-grid, .trust-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
.steps-grid { grid-template-columns: repeat(2, 1fr); }
.devices-grid { grid-template-columns: repeat(4, 1fr); }
.stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
.tivi-plans-grid { grid-template-columns: 1fr; }
.features-grid, .servers-grid, .trust-grid, .testimonials-grid { grid-template-columns: 1fr; }
.steps-grid { grid-template-columns: 1fr; }
.devices-grid { grid-template-columns: repeat(3, 1fr); }
.stats { grid-template-columns: repeat(3, 1fr); }
.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
.footer-bottom { flex-direction: column; text-align: center; }
.trust-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
.devices-grid { grid-template-columns: repeat(2, 1fr); }
.stats { grid-template-columns: repeat(2, 1fr); }
.trust-stats { grid-template-columns: repeat(2, 1fr); }
}
/* TIVI-GIFT ANIM */
@keyframes giftPulse { 0%,100%{opacity:1;} 50%{opacity:0.7;} }
.tivi-gift-anim { animation: giftPulse 2.5s ease-in-out infinite; }
/* CHANNELS PAGE */
.channels-hero-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.ch-cat-card { background: rgba(13,11,30,0.7); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; text-align: center; transition: all 0.3s; }
.ch-cat-card:hover { border-color: rgba(14,165,233,0.25); box-shadow: 0 0 20px rgba(14,165,233,0.08); }
.ch-cat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.ch-cat-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.ch-cat-count { font-size: 0.75rem; color: var(--muted); }
/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-card { background: rgba(13,11,30,0.7); border: 1px solid var(--border); border-radius: 1.25rem; padding: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; border-radius: 0.7rem; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; color: #bae6fd; }
.contact-info h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-info p, .contact-info a { font-size: 0.83rem; color: var(--muted2); text-decoration: none; }
.contact-info a:hover { color: #bae6fd; }
/* SITE LOGO BG */
.site-logo-bg { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
