/* ============================================
   ZenoraIPTV — Premium IPTV Service CSS
   Theme: Deep Navy + Electric Cyan + Gold
   ============================================ */

:root {
  --primary: #00D4FF;
  --primary-dark: #00A8CC;
  --accent: #FFB800;
  --accent2: #7B5FFF;
  --bg: #050810;
  --bg2: #080D1A;
  --bg3: #0C1225;
  --card: #0E1530;
  --card2: #121A38;
  --border: rgba(0,212,255,0.12);
  --border2: rgba(0,212,255,0.25);
  --text: #EEF4FF;
  --text2: #7A90B8;
  --text3: #3D527A;
  --gradient: linear-gradient(135deg, #00D4FF 0%, #7B5FFF 100%);
  --gradient2: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
  --glow: 0 0 40px rgba(0,212,255,0.15);
  --glow2: 0 0 60px rgba(0,212,255,0.08);
  --shadow: 0 24px 64px rgba(0,0,0,0.6);
  --shadow-card: 0 8px 32px rgba(0,212,255,0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --nav-h: 72px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gold-text { background: var(--gradient2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,212,255,0.08); color: var(--primary); border: 1px solid var(--border2); border-radius: 100px; padding: 5px 16px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.section-header p { color: var(--text2); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }
.inline-link { color: var(--primary); font-weight: 600; border-bottom: 1px solid rgba(0,212,255,0.3); transition: border-color .2s; }
.inline-link:hover { border-color: var(--primary); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 6px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; white-space: nowrap; letter-spacing: 0.02em; }
.btn-primary { background: var(--gradient); color: #000; box-shadow: 0 8px 24px rgba(0,212,255,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,212,255,0.4); }
.btn-gold { background: var(--gradient2); color: #000; box-shadow: 0 8px 24px rgba(255,184,0,0.25); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,184,0,0.4); }
.btn-outline { border-color: var(--border2); color: var(--primary); background: transparent; }
.btn-outline:hover { background: rgba(0,212,255,0.08); border-color: var(--primary); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text); border-color: rgba(255,255,255,0.08); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-nav { padding: 10px 22px; font-size: 0.85rem; background: var(--gradient); color: #000; border-radius: 6px; }
.btn-outline-card { border: 1px solid var(--border2); color: var(--text2); background: transparent; width: 100%; border-radius: 6px; padding: 13px; font-weight: 600; cursor: pointer; transition: all .25s; font-family: var(--font-body); font-size: 0.92rem; }
.btn-outline-card:hover { border-color: var(--primary); color: var(--primary); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); transition: all 0.3s; }
.navbar.scrolled { background: rgba(5,8,16,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.logo-icon { width: 32px; height: 32px; background: var(--gradient); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #000; font-weight: 900; }
.logo-accent { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text2); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: calc(var(--nav-h) + 60px) 0 80px; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-grad { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 60% 30%, rgba(0,212,255,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(123,95,255,0.06) 0%, transparent 50%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,212,255,0.08); border: 1px solid var(--border2); border-radius: 100px; padding: 6px 16px; font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; animation: fadeUp 0.6s ease both; }
.badge-pulse { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 1.5s infinite; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { font-size: 1.05rem; color: var(--text2); max-width: 520px; margin-bottom: 36px; line-height: 1.75; animation: fadeUp 0.6s 0.2s ease both; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeUp 0.6s 0.3s ease both; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; animation: fadeUp 0.6s 0.4s ease both; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text2); font-weight: 500; }
.trust-icon { color: var(--primary); font-size: 1rem; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; animation: fadeUp 0.8s 0.2s ease both; }
.z-screen { background: var(--card); border: 1px solid var(--border2); border-radius: 20px; padding: 20px; box-shadow: var(--shadow), var(--glow); width: 100%; max-width: 420px; position: relative; overflow: hidden; }
.z-screen::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient); }
.z-screen-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.z-live { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; color: #22c55e; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); border-radius: 50px; padding: 3px 10px; }
.z-live-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse 1.5s infinite; }
.z-quality { font-size: 0.7rem; font-weight: 700; color: var(--primary); background: rgba(0,212,255,0.1); border: 1px solid var(--border2); border-radius: 4px; padding: 2px 8px; }
.z-display { background: #000; border-radius: 10px; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: linear-gradient(135deg, #020818, #0A1840); position: relative; overflow: hidden; }
.z-display-content { text-align: center; }
.z-logo-big { font-size: 2.5rem; font-family: var(--font-head); font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.z-display-sub { font-size: 0.7rem; color: var(--text2); margin-top: 4px; }
.z-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.z-ch { background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 8px; text-align: center; font-size: 0.7rem; color: var(--text2); transition: all .2s; }
.z-ch.active { background: rgba(0,212,255,0.1); border-color: var(--border2); color: var(--primary); }
.z-ch span { display: block; font-size: 1rem; margin-bottom: 2px; }
.z-stats { position: absolute; right: -12px; top: 20%; display: flex; flex-direction: column; gap: 10px; }
.z-stat-pill { background: var(--card2); border: 1px solid var(--border2); border-radius: 10px; padding: 10px 14px; text-align: center; box-shadow: var(--shadow); white-space: nowrap; }
.z-stat-pill strong { display: block; font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.z-stat-pill span { font-size: 0.65rem; color: var(--text3); }

/* ===== STATS ===== */
.stats { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--text2); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; background: var(--border); margin: auto; }

/* ===== FEATURES ===== */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.3s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient); opacity: 0; transition: opacity .3s; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow-card); }
.feature-card:hover::before { opacity: 1; }
.feature-card.featured { background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(123,95,255,0.05)); border-color: var(--border2); }
.feature-card.featured::before { opacity: 1; }
.feature-icon { width: 52px; height: 52px; background: rgba(0,212,255,0.1); border: 1px solid var(--border2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.feature-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing { background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; position: relative; transition: all 0.3s; overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient); }
.price-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.price-card.popular { background: linear-gradient(160deg, rgba(0,212,255,0.12), rgba(123,95,255,0.06)); border-color: var(--primary); transform: scale(1.03); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #000; padding: 4px 18px; border-radius: 100px; font-size: 0.75rem; font-weight: 800; white-space: nowrap; }
.price-label { font-size: 0.78rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.price-amount { font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: 1.4rem; vertical-align: super; color: var(--primary); }
.price-amount span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-amount sub { font-size: 0.9rem; color: var(--text2); font-family: var(--font-body); font-weight: 400; -webkit-text-fill-color: var(--text2); }
.price-period { color: var(--text3); font-size: 0.8rem; margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { font-size: 0.87rem; color: var(--text2); display: flex; align-items: center; gap: 8px; }
.price-features li::before { content: '✓'; color: var(--primary); font-weight: 900; flex-shrink: 0; }

/* ===== CHANNELS ===== */
.channels { background: var(--bg); }
.channels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.channel-cat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 18px; display: flex; flex-direction: column; gap: 6px; transition: all 0.3s; cursor: pointer; text-decoration: none; }
.channel-cat:hover { border-color: var(--border2); transform: translateY(-2px); background: var(--card2); box-shadow: var(--shadow-card); }
.channel-cat span { font-size: 1.6rem; }
.channel-cat strong { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.channel-cat small { font-size: 0.75rem; color: var(--text3); }
.channel-cat .ch-count { font-size: 0.7rem; color: var(--primary); font-weight: 700; background: rgba(0,212,255,0.08); border-radius: 4px; padding: 2px 6px; display: inline-block; margin-top: 4px; }

/* ===== DEVICES ===== */
.devices { background: var(--bg2); }
.devices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.device-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all 0.3s; text-decoration: none; }
.device-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.device-icon { font-size: 2.4rem; margin-bottom: 12px; }
.device-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.device-card p { font-size: 0.8rem; color: var(--text3); }

/* ===== SETUP STEPS ===== */
.setup { background: var(--bg); }
.steps-grid { display: flex; align-items: center; gap: 0; }
.step-card { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all .3s; }
.step-card:hover { border-color: var(--border2); }
.step-arrow { font-size: 1.5rem; color: var(--primary); padding: 0 12px; flex-shrink: 0; opacity: 0.5; }
.step-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.step-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--text2); font-size: 0.85rem; line-height: 1.6; }

/* ===== WHY US ===== */
.why-us { background: var(--bg2); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-text h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.why-text > p { color: var(--text2); margin-bottom: 32px; line-height: 1.75; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; }
.why-icon { width: 44px; height: 44px; background: rgba(0,212,255,0.08); border: 1px solid var(--border2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-item strong { display: block; font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.why-item p { font-size: 0.85rem; color: var(--text2); line-height: 1.65; }
.trust-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.badge { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; font-size: 0.85rem; font-weight: 600; text-align: center; color: var(--text2); transition: all 0.3s; }
.badge:hover { border-color: var(--border2); color: var(--primary); background: rgba(0,212,255,0.04); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.testi-card::before { content: '"'; position: absolute; top: 10px; right: 20px; font-size: 5rem; font-family: Georgia; color: rgba(0,212,255,0.06); line-height: 1; }
.testi-card.featured { background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(123,95,255,0.05)); border-color: var(--border2); }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testi-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 0.9rem; color: var(--text2); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; color: #000; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 700; }
.testi-author small { font-size: 0.75rem; color: var(--text3); }

/* ===== FAQ ===== */
.faq { background: var(--bg2); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: var(--border2); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); font-size: 0.93rem; font-weight: 600; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: var(--font-body); transition: color .2s; }
.faq-q:hover { color: var(--primary); }
.faq-q .faq-icon { font-size: 1.2rem; color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 0.88rem; color: var(--text2); line-height: 1.75; padding: 0 22px; }
.faq-a.open { max-height: 300px; padding: 0 22px 18px; }

/* ===== ABOUT ===== */
.about { background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; margin-bottom: 20px; }
.about-text p { color: var(--text2); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; transition: all .3s; }
.about-stat:hover { border-color: var(--border2); }
.about-stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stat span { font-size: 0.8rem; color: var(--text3); font-weight: 500; }

/* ===== CONTACT ===== */
.contact { background: var(--bg2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.contact-info > p { color: var(--text2); margin-bottom: 32px; font-size: 0.95rem; line-height: 1.75; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; gap: 14px; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; }
.contact-method .cm-icon { width: 38px; height: 38px; background: rgba(0,212,255,0.08); border: 1px solid var(--border2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-method strong { display: block; font-size: 0.85rem; font-weight: 700; }
.contact-method small { font-size: 0.8rem; color: var(--text3); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--text); font-size: 0.9rem; transition: border-color .2s; width: 100%; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text3); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,212,255,0.08); }
.contact-form select option { background: var(--bg2); }
.form-note { font-size: 0.75rem; color: var(--text3); text-align: center; }

/* ===== BLOG ===== */
.blog { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow-card); }
.blog-img { background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(123,95,255,0.08)); padding: 44px; text-align: center; font-size: 3rem; }
.blog-body { padding: 22px; }
.blog-tag { background: rgba(0,212,255,0.1); color: var(--primary); font-size: 0.7rem; font-weight: 700; padding: 2px 10px; border-radius: 100px; text-transform: uppercase; display: inline-block; }
.blog-body h3 { font-family: var(--font-head); font-size: 0.97rem; font-weight: 700; margin: 10px 0 8px; line-height: 1.45; }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { font-size: 0.83rem; color: var(--text2); line-height: 1.65; margin-bottom: 14px; }
.read-more { font-size: 0.83rem; color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 48px; }
.footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 0.83rem; color: var(--text3); line-height: 1.7; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; color: var(--text2); transition: all .2s; }
.social-links a:hover { border-color: var(--primary); color: var(--primary); background: rgba(0,212,255,0.06); }
.footer-links h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 18px; }
.footer-links a { display: block; font-size: 0.83rem; color: var(--text3); padding: 4px 0; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom p { font-size: 0.77rem; color: var(--text3); text-align: center; }

/* ===== BACK TO TOP ===== */
.back-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--gradient); color: #000; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; z-index: 999; }
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { padding: calc(var(--nav-h) + 60px) 0 50px; background: var(--bg2); border-bottom: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,212,255,0.07) 0%, transparent 70%); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text2); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .z-stats { display: none; }
  .z-screen { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; gap: 12px; }
  .step-arrow { transform: rotate(90deg); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 40px; }
}
@media (max-width: 600px) {
  .section-pad { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
}
