/* ============================================================
   PushAnything IPTV — style.css
   Design: Deep space dark, electric cyan accent, cinematic feel
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg-0: #080b10;
  --bg-1: #0d1117;
  --bg-2: #141922;
  --bg-3: #1c2430;
  --bg-card: #111722;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.13);

  --accent: #00d4ff;
  --accent-dim: rgba(0,212,255,0.15);
  --accent-dark: #0099bb;
  --wa-green: #25d366;
  --wa-dark: #128c3e;
  --wa-glow: rgba(37,211,102,0.25);

  --text-primary: #f0f4f8;
  --text-secondary: #8b98a8;
  --text-muted: #556070;
  --text-accent: #00d4ff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --shadow-wa: 0 8px 32px rgba(37,211,102,0.3);
  --shadow-accent: 0 0 40px rgba(0,212,255,0.2);

  --font-display: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --header-h: 70px;
  --container-max: 1200px;
  --section-gap: 80px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
[dir="rtl"] body { direction: rtl; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-gap) 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: var(--shadow-wa);
}
.btn-wa:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}
.btn-wa-sm {
  background: rgba(37,211,102,0.15);
  color: var(--wa-green);
  padding: 7px 14px;
  font-size: 13px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37,211,102,0.3);
  transition: all .2s;
}
.btn-wa-sm:hover { background: var(--wa-green); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn-lg { padding: 15px 32px; font-size: 17px; }
.btn-xl { padding: 18px 40px; font-size: 18px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.pulse-wa { animation: pulseWA 2.5s infinite; }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4), var(--shadow-wa); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0), var(--shadow-wa); }
}

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,11,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { color: #fff; }
.logo-icon {
  color: var(--accent);
  font-size: 20px;
}
.logo-accent { color: var(--accent); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: var(--bg-3);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--bg-2);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}
.lang-btn {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
  letter-spacing: 0.5px;
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active {
  background: var(--accent);
  color: var(--bg-0);
}
.header-wa { display: flex; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-1);
  padding: 16px;
  border-top: 1px solid var(--border);
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all .2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: #fff;
  background: var(--bg-3);
}
.mobile-wa { margin-top: 8px; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: -200px;
  right: -100px;
  opacity: 0.12;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #25d366 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  opacity: 0.1;
}
.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 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -1.5px;
}
.hero-accent {
  color: var(--accent);
  display: block;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
}

/* TV Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
}
.tv-mockup {
  position: relative;
  z-index: 1;
}
.tv-screen {
  width: 280px;
  height: 175px;
  background: linear-gradient(135deg, #0d1f2d 0%, #0a1628 100%);
  border: 3px solid var(--border-strong);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 0 60px rgba(0,212,255,0.15), var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.tv-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, transparent 60%);
}
.tv-play-icon {
  font-size: 42px;
  color: var(--accent);
  opacity: 0.9;
  filter: drop-shadow(0 0 16px var(--accent));
  animation: tvPulse 3s ease-in-out infinite;
}
@keyframes tvPulse { 0%,100%{opacity:0.7;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }
.tv-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 24px;
}
.tv-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
  animation: barAnim 1.2s ease-in-out infinite;
}
.tv-bar:nth-child(1){ height: 12px; animation-delay: 0s; }
.tv-bar:nth-child(2){ height: 20px; animation-delay: .2s; }
.tv-bar:nth-child(3){ height: 16px; animation-delay: .4s; }
@keyframes barAnim { 0%,100%{transform:scaleY(1)}50%{transform:scaleY(1.6)} }
.tv-stand {
  width: 40px;
  height: 10px;
  background: var(--border-strong);
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
}
.device-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px dashed rgba(0,212,255,0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: orbitSpin 20s linear infinite;
}
@keyframes orbitSpin { from{transform:translate(-50%,-50%)rotate(0)} to{transform:translate(-50%,-50%)rotate(360deg)} }
.orbit-device {
  position: absolute;
  font-size: 22px;
  width: 42px;
  height: 42px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  animation: orbitSpin 20s linear infinite reverse;
}
.od-1 { top: -21px; left: 50%; transform: translateX(-50%); }
.od-2 { right: -21px; top: 50%; transform: translateY(-50%); }
.od-3 { bottom: -21px; left: 50%; transform: translateX(-50%); }
.od-4 { left: -21px; top: 50%; transform: translateY(-50%); }

/* ── SECTION HEADER ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h1,
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

/* ── BENEFITS ────────────────────────────────────────────────── */
.benefits { background: var(--bg-1); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s ease;
}
.benefit-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.benefit-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}
.benefit-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.65; }

/* ── DEVICES STRIP ───────────────────────────────────────────── */
.devices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.device-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all .2s;
}
.device-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.device-chip-icon { font-size: 18px; }
.devices-cta { text-align: center; }

/* ── PLANS ───────────────────────────────────────────────────── */
.plans-section { background: var(--bg-1); }
.plans-preview { background: var(--bg-0); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.plans-preview-grid { grid-template-columns: repeat(4, 1fr); }
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plan-highlight {
  border-color: var(--accent) !important;
  background: linear-gradient(180deg, rgba(0,212,255,0.07) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(0,212,255,0.12);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-0);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.plan-savings {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(37,211,102,0.15);
  color: var(--wa-green);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(37,211,102,0.2);
}
.plan-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.price-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.plan-features {
  flex: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.feature-yes .feature-icon { color: var(--wa-green); flex-shrink: 0; }
.feature-no { opacity: 0.4; }
.feature-no .feature-icon { color: var(--text-muted); flex-shrink: 0; }
.plans-wa-note { margin-top: 48px; }
.wa-note-inner {
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.wa-note-icon { font-size: 36px; flex-shrink: 0; }
.wa-note-inner h3 { font-size: 18px; margin-bottom: 4px; }
.wa-note-inner p { color: var(--text-secondary); font-size: 14px; }
.wa-note-inner .btn { flex-shrink: 0; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner { background: var(--bg-1); }
.cta-inner {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-accent);
}
.cta-content h2 { font-size: clamp(24px,3vw,36px); margin-bottom: 8px; }
.cta-content p { color: var(--text-secondary); font-size: 16px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  padding: 56px 0 40px;
}
.page-hero .section-header { margin-bottom: 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  transition: color .2s;
}
.back-link:hover { color: var(--accent); }

/* ── DEVICE GUIDES ───────────────────────────────────────────── */
.device-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.device-guide-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all .3s;
}
.device-guide-card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
  color: inherit;
}
.dgc-icon { font-size: 36px; flex-shrink: 0; }
.dgc-content h3 { font-size: 17px; margin-bottom: 4px; color: #fff; }
.dgc-content p { font-size: 13px; color: var(--text-secondary); }
.dgc-arrow { margin-left: auto; color: var(--text-muted); font-size: 20px; flex-shrink: 0; }

/* Device Guide Content */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.guide-icon-large { font-size: 56px; margin-bottom: 12px; }
.guide-steps h2 { font-size: 24px; margin-bottom: 28px; }
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all .2s;
}
.step-item:hover { border-color: rgba(0,212,255,0.2); }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.step-text { font-size: 15px; color: var(--text-secondary); line-height: 1.6; padding-top: 4px; }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar-wa-card {
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-bottom: 20px;
}
.swa-icon { font-size: 40px; margin-bottom: 12px; }
.sidebar-wa-card h3 { font-size: 17px; margin-bottom: 8px; }
.sidebar-wa-card p { color: var(--text-secondary); font-size: 13px; margin-bottom: 20px; line-height: 1.6; }
.sidebar-plans-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.sidebar-plans-card h3 { font-size: 16px; margin-bottom: 8px; }
.sidebar-plans-card p { color: var(--text-secondary); font-size: 13px; margin-bottom: 16px; }

/* ── BLOG ────────────────────────────────────────────────────── */
.blog-section { background: var(--bg-0); }
.blog-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.cat-pill {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.cat-pill:hover { border-color: var(--accent); color: var(--accent); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .3s;
}
.blog-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-3px);
}
.blog-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}
.blog-card-title { font-size: 16px; line-height: 1.4; }
.blog-card-title a { color: #fff; text-decoration: none; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.blog-card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.blog-card-footer {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}
.blog-load-more {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.blog-load-more p { color: var(--text-muted); font-size: 14px; }

/* ── ARTICLE ─────────────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article-cat-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(0,212,255,0.2);
}
.article-title { font-size: clamp(24px, 3vw, 38px); margin-bottom: 16px; letter-spacing: -0.5px; }
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article-body { color: var(--text-secondary); line-height: 1.8; }
.article-body .article-lead { font-size: 18px; color: var(--text-primary); margin-bottom: 28px; line-height: 1.7; }
.article-body h2 { font-size: 22px; color: #fff; margin: 36px 0 16px; }
.article-body p { margin-bottom: 18px; }
.article-body ul { margin: 16px 0 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.article-body ul li { list-style: disc; }
.article-body strong { color: var(--text-primary); }
.article-wa-cta {
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}
.article-wa-cta h3 { font-size: 22px; margin-bottom: 10px; }
.article-wa-cta p { color: var(--text-secondary); margin-bottom: 24px; }
.sidebar-related h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.related-article-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
.related-article-link:hover .related-title { color: var(--accent); }
.related-title { font-size: 13px; color: var(--text-primary); line-height: 1.4; }
.related-meta { font-size: 11px; color: var(--text-muted); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: rgba(0,212,255,0.25); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
  background: none;
  border: none;
  font-family: inherit;
}
[dir="rtl"] .faq-question { text-align: right; }
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
}
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all .3s;
}
.wa-big-card {
  background: rgba(37,211,102,0.06);
  border-color: rgba(37,211,102,0.2);
}
.wa-big-card:hover {
  background: rgba(37,211,102,0.1);
  border-color: var(--wa-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-wa);
  color: inherit;
}
.email-big-card { background: var(--bg-card); }
.email-big-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: inherit;
}
.ccard-icon { font-size: 32px; flex-shrink: 0; }
.ccard-content h3 { font-size: 17px; margin-bottom: 4px; }
.ccard-content p { font-size: 14px; color: var(--text-secondary); }
.ccard-badge {
  display: inline-block;
  margin-top: 6px;
  background: rgba(37,211,102,0.15);
  color: var(--wa-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.ccard-arrow { margin-left: auto; color: var(--text-muted); font-size: 20px; flex-shrink: 0; }
.contact-form-wrapper h2 { font-size: 24px; margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-success {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: var(--wa-green);
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  text-align: center;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .footer-logo { margin-bottom: 12px; }
.footer-tagline {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.footer-contact-cards { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
}
.footer-contact-card:hover { border-color: var(--border-strong); }
.wa-card:hover { border-color: rgba(37,211,102,0.3); }
.fc-icon { font-size: 18px; flex-shrink: 0; }
.fc-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.fc-value { font-size: 13px; color: var(--text-secondary); }
.footer-contact-card { flex-direction: row; }
.footer-contact-card > div { display: flex; flex-direction: column; gap: 2px; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.footer-links-col a { font-size: 14px; color: var(--text-secondary); transition: color .2s; }
.footer-links-col a:hover { color: var(--accent); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legal-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 900px;
}
.footer-copyright { font-size: 13px; color: var(--text-muted); }

/* ── FLOATING WA ─────────────────────────────────────────────── */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 14px 20px 14px 16px;
  box-shadow: var(--shadow-wa);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s;
  animation: floatIn .5s ease 1s both;
}
[dir="rtl"] .floating-wa { right: auto; left: 28px; }
.floating-wa:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
}
.floating-wa-label { white-space: nowrap; }
@keyframes floatIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

/* ── LEGAL PAGE ──────────────────────────────────────────────── */
.legal-content { max-width: 760px; }
.legal-content h1 { font-size: 36px; margin-bottom: 32px; }
.legal-body h2 { font-size: 20px; margin: 28px 0 12px; color: #fff; }
.legal-body p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-stats { gap: 16px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .guide-layout,
  .article-layout,
  .faq-layout { grid-template-columns: 1fr; }
  .article-sidebar,
  .faq-sidebar { order: -1; }
  .device-cards-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .wa-note-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root { --section-gap: 56px; }
  .main-nav { display: none; }
  .header-wa { display: none; }
  .menu-toggle { display: flex; }
  .plans-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-title { letter-spacing: -0.5px; }
  .floating-wa-label { display: none; }
  .floating-wa { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .stat-divider { display: none; }
  .cta-inner { padding: 32px 24px; }
}

/* ── ACCESSIBILITY ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── RTL ADJUSTMENTS ─────────────────────────────────────────── */
[dir="rtl"] .nav-link,
[dir="rtl"] .hero-content,
[dir="rtl"] .section-header { text-align: right; }
[dir="rtl"] .hero-accent { text-align: right; }
[dir="rtl"] .back-link { flex-direction: row-reverse; }
[dir="rtl"] .device-guide-card:hover { transform: translateX(-4px); }
[dir="rtl"] .step-item { flex-direction: row-reverse; }
[dir="rtl"] .ccard-arrow { margin-left: 0; margin-right: auto; }
