/* ============================================================
   MOVIESFLIX0 — DARK THEME
============================================================ */

:root {
  --primary: #0066FF;
  --primary-dark: #0052CC;
  --secondary: #00AEEF;
  --gradient: linear-gradient(135deg, #0066FF, #00AEEF);
  --wa-green: #0F7A3B;
  --wa-dark: #0B6E33;
  --wa-official: #25D366;
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --bg-dark: #000000;
  --text: #ffffff;
  --text-muted: rgba(255,255,255,.55);
  --border: rgba(255,255,255,.1);
  --shadow: 0 2px 16px rgba(0,0,0,.6);
  --shadow-lg: 0 8px 40px rgba(0,102,255,.25);
  --radius: 14px;
  --radius-sm: 8px;

  --ink: #111827;
  --line: #E5E7EB;
  --cta-1: #1DA1F2;
  --cta-2: #0A84FF;
  --cta-2-text: #0B63CE;
  --header-h: 80px;

  /* ---- Motion + focus system: one easing curve, one duration, used everywhere ---- */
  --ease: cubic-bezier(.2,.8,.2,1);
  --dur: .26s;
  --dur-fast: .18s;
  --focus-ring: 0 0 0 3px rgba(0,174,239,.45);

  /* ---- Contrast-safe muted text tiers (WCAG AA on --bg / --bg-card / --bg-alt) ---- */
  --text-muted-2: rgba(255,255,255,.62);
  --text-muted-3: rgba(255,255,255,.68);

  /* ---- Icon system: mask-based glyphs (Lucide-style, stroke 2, round caps) ---- */
  --icon-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  --icon-check-circle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='M22 4L12 14.01l-3-3'/%3E%3C/svg%3E");
  --icon-x-circle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M15 9l-6 6M9 9l6 6'/%3E%3C/svg%3E");
  --icon-lightbulb: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6M10 22h4M15.09 14c.35-.6 1-1 1.35-1.6A6 6 0 1 0 8 12.4c.4.6.99 1 1.35 1.6.31.5.65 1.34.65 2h4c0-.66.34-1.5.09-2z'/%3E%3C/svg%3E");
  --icon-arrow-up: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7'/%3E%3C/svg%3E");
  --icon-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

[data-anim] { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
[data-anim="right"] { transform: translateX(32px); }
[data-anim].visible { opacity: 1; transform: none; }

img { max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Global focus-visible fallback — every link/button gets a visible ring unless a component overrides it. */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none; box-shadow: var(--focus-ring); border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: #0066FF; color: #fff; padding: 12px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 12px; outline: none; box-shadow: var(--focus-ring);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.header .container { max-width: 1400px; }

section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: 80px 0; }

.sec-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.sec-tag {
  display: inline-block; padding: 5px 14px;
  background: rgba(0,102,255,.15); color: #60a5fa;
  border-radius: 50px; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
  border: 1px solid rgba(0,102,255,.25);
}
.sec-head h2 { font-size: clamp(26px,4vw,38px); font-weight: 800; line-height: 1.22; letter-spacing: -.015em; margin-bottom: 14px; color: var(--text); }
.sec-head p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }

/* ============================================================
   ICON SYSTEM — premium glassmorphic icon badges + micro-interactions
============================================================ */
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,102,255,.20), rgba(0,174,239,.10));
  border: 1px solid rgba(0,174,239,.25);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0,102,255,.15), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.icon-badge svg { width: 24px; height: 24px; stroke: #7cc9ff; transition: stroke var(--dur) ease; }
.icon-badge:hover,
.feat-card:hover .icon-badge,
.dev-card:hover .icon-badge,
.about-value-card:hover .icon-badge,
.contact-method:hover .icon-badge,
.step-item:hover .icon-badge {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 30px rgba(0,174,239,.35), inset 0 1px 0 rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(0,102,255,.32), rgba(0,174,239,.20));
}
.icon-badge:hover svg,
.feat-card:hover .icon-badge svg,
.dev-card:hover .icon-badge svg,
.about-value-card:hover .icon-badge svg,
.contact-method:hover .icon-badge svg,
.step-item:hover .icon-badge svg { stroke: #fff; }

.icon-badge-sm { width: 40px; height: 40px; border-radius: 11px; }
.icon-badge-sm svg { width: 19px; height: 19px; }
.icon-badge-lg { width: 76px; height: 76px; border-radius: 20px; }
.icon-badge-lg svg { width: 34px; height: 34px; }

.icon-inline { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-inline svg { display: block; }

@media (prefers-reduced-motion: reduce) {
  .icon-badge, .icon-badge svg { transition: none !important; }
}

/* ============================================================
   BUTTONS — one shared shape, motion and focus language
============================================================ */
.btn-primary, .btn-outline, .btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-primary:focus-visible, .btn-outline:focus-visible, .btn-wa:focus-visible {
  outline: none; box-shadow: var(--focus-ring);
}

.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 20px rgba(0,102,255,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,102,255,.5); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.3); color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: #fff; transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }

.btn-wa {
  background: var(--wa-green); color: #fff;
  box-shadow: 0 4px 16px rgba(15,122,59,.35);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(15,122,59,.45); }
.btn-wa:active { transform: translateY(0); }

.btn-wa.btn-full, .btn-primary.btn-full { width: 100%; }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 17px; }

@media (prefers-reduced-motion: reduce) {
  .btn-primary, .btn-outline, .btn-wa { transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast) !important; }
  .btn-primary:hover, .btn-outline:hover, .btn-wa:hover { transform: none !important; }
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.stuck { box-shadow: 0 4px 20px rgba(17,24,39,.08); }

.header-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px; height: var(--header-h);
}

.logo { display: flex; align-items: center; }
.logo-img { display: block; height: 44px; width: auto; max-width: 100%; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 42px; justify-self: center; }
.nav-link {
  position: relative;
  padding: 4px 0; font-size: 18px; font-weight: 600; letter-spacing: normal;
  color: var(--ink); transition: color .3s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--cta-2); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-link:hover, .nav-link.active { color: var(--cta-2-text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:focus-visible { outline: none; border-radius: 4px; box-shadow: var(--focus-ring); }
.nav .nav-cta-mobile { display: none; }

.header-end { display: flex; align-items: center; gap: 14px; }

.btn-cta-gradient {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 40px; border-radius: 9999px;
  background: linear-gradient(180deg, var(--cta-1), var(--cta-2));
  color: #fff; font-size: 14px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(10,132,255,.35);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-cta-gradient:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(10,132,255,.55);
}
.btn-cta-gradient:active { transform: translateY(0) scale(1); }
.btn-cta-gradient:focus-visible {
  outline: none; box-shadow: 0 4px 16px rgba(10,132,255,.35), var(--focus-ring);
}

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger:focus-visible { outline: none; box-shadow: var(--focus-ring); }

/* language switcher — mobile drawer only */
.nav .lang-sw { display: none; position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px; border-radius: 8px; border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink);
  background: #F9FAFB; cursor: pointer;
  transition: border-color .2s;
}
.lang-btn:hover { border-color: var(--cta-2); }
.lang-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.lang-menu {
  position: absolute; left: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 16px 48px rgba(17,24,39,.18); min-width: 160px; overflow: hidden; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(.98); pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast);
}
.lang-menu.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.lang-menu button {
  width: 100%; text-align: left; padding: 10px 16px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  transition: background .15s; cursor: pointer;
}
.lang-menu button:hover, .lang-menu button.active { background: rgba(10,132,255,.08); color: var(--cta-2-text); }
.lang-menu button:focus-visible { outline: none; background: rgba(10,132,255,.1); }
@media (prefers-reduced-motion: reduce) {
  .lang-menu { transition: opacity var(--dur-fast) !important; transform: none !important; }
}

.nav-backdrop {
  display: none; position: fixed; inset: 0; z-index: 90;
  background: rgba(17,24,39,.4); opacity: 0; transition: opacity .3s;
}
.nav-backdrop.open { display: block; opacity: 1; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 94vh;
  display: grid; align-items: center;
  padding: 128px 0 64px;
  background: linear-gradient(150deg, #070d24 0%, #101d4a 28%, #123166 52%, #0b4a8f 80%, #0ea5e9 132%);
  overflow: hidden; position: relative;
}
.hero-shape {
  position: absolute; top: -180px; right: -220px; width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,255,255,.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-a {
  position: absolute; top: 8%; left: -12%; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.22) 0%, transparent 70%);
  pointer-events: none; animation: heroDrift 15s ease-in-out infinite;
}
.hero-glow-b {
  position: absolute; bottom: -18%; left: 32%; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.16) 0%, transparent 70%);
  pointer-events: none; animation: heroDrift 19s ease-in-out infinite reverse;
}
@keyframes heroDrift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(3%,-3%); } }

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particles span { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.55); animation: particleDrift linear infinite; }
.hero-particles span:nth-child(1) { top: 78%; left: 6%; animation-duration: 13s; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 62%; left: 18%; width: 2px; height: 2px; animation-duration: 17s; animation-delay: 1.4s; }
.hero-particles span:nth-child(3) { top: 88%; left: 30%; animation-duration: 11s; animation-delay: 2.8s; }
.hero-particles span:nth-child(4) { top: 70%; left: 44%; width: 2px; height: 2px; animation-duration: 19s; animation-delay: .6s; }
.hero-particles span:nth-child(5) { top: 92%; left: 58%; animation-duration: 14s; animation-delay: 3.6s; }
.hero-particles span:nth-child(6) { top: 66%; left: 68%; width: 2px; height: 2px; animation-duration: 16s; animation-delay: 2s; }
.hero-particles span:nth-child(7) { top: 84%; left: 78%; animation-duration: 12s; animation-delay: 4.4s; }
.hero-particles span:nth-child(8) { top: 58%; left: 88%; width: 2px; height: 2px; animation-duration: 18s; animation-delay: 1s; }
.hero-particles span:nth-child(9) { top: 40%; left: 12%; animation-duration: 15s; animation-delay: 3.2s; }
.hero-particles span:nth-child(10) { top: 30%; left: 50%; width: 2px; height: 2px; animation-duration: 20s; animation-delay: .2s; }
.hero-particles span:nth-child(11) { top: 20%; left: 82%; animation-duration: 13.5s; animation-delay: 2.4s; }
.hero-particles span:nth-child(12) { top: 48%; left: 94%; width: 2px; height: 2px; animation-duration: 17.5s; animation-delay: 4s; }
@keyframes particleDrift { 0% { transform: translateY(0); opacity: 0; } 12% { opacity: .55; } 88% { opacity: .55; } 100% { transform: translateY(-110px); opacity: 0; } }

.hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
}
.hero-text-accent {
  background: linear-gradient(90deg, #A5F3FC, #7DD3FC);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-btns .btn-wa {
  background: #fff; color: var(--cta-2-text);
  box-shadow: 0 12px 34px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.08) inset, 0 0 36px rgba(56,189,248,.22);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur-fast) ease;
}
.hero-btns .btn-wa:hover {
  background: #f5faff; transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.12) inset, 0 0 56px rgba(56,189,248,.4);
}
.hero-btns .btn-outline {
  border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px);
  transition: transform var(--dur) var(--ease), background var(--dur-fast) ease, border-color var(--dur-fast) ease, box-shadow var(--dur) var(--ease);
}
.hero-btns .btn-outline:hover {
  transform: translateY(-3px) scale(1.03); border-color: #fff; background: rgba(255,255,255,.1);
  box-shadow: 0 0 36px rgba(255,255,255,.14);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 50px;
  background: rgba(0,102,255,.12); border: 1px solid rgba(0,102,255,.3);
  font-size: 13px; font-weight: 600; color: #60a5fa;
  margin-bottom: 28px;
  animation: heroRise .7s ease both;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #00C851; box-shadow: 0 0 8px rgba(0,200,81,.7); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

.hero-h1 {
  font-size: clamp(34px, 4.4vw, 58px); font-weight: 800; line-height: 1.24;
  letter-spacing: -.015em; color: #fff; margin-bottom: 30px;
}
.hero-h1 span { display: block; animation: heroRise .7s ease both; animation-delay: .08s; }
.hero-h1 span.hero-text-accent { animation-delay: .18s; }

.hero-p {
  font-size: 18px; color: rgba(255,255,255,.68); margin-bottom: 40px; line-height: 1.75;
  max-width: 540px;
  animation: heroRise .7s ease both; animation-delay: .28s;
}

.hero-btns { display: flex; align-items: center; gap: 18px; margin-bottom: 38px; flex-wrap: wrap; animation: heroRise .7s ease both; animation-delay: .38s; }

.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 14px; animation: heroRise .7s ease both; animation-delay: .48s; }
.hero-trust li {
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  padding: 7px 14px 7px 8px; border-radius: 50px;
  transition: background .2s ease, border-color .2s ease;
}
.hero-trust li:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.trust-ic {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(74,222,128,.2); color: #4ADE80;
  font-size: 0;
  display: flex; align-items: center; justify-content: center;
}
.trust-ic::before {
  content: ''; display: block; width: 10px; height: 10px; background-color: #4ADE80;
  -webkit-mask-image: var(--icon-check); mask-image: var(--icon-check);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}

@keyframes heroRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Streaming dashboard mockup */
.hero-mockup {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 460px; perspective: 1200px;
  animation: heroRiseRight .8s ease both; animation-delay: .2s;
}
@keyframes heroRiseRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }

.hero-mock-glow {
  position: absolute; width: 520px; height: 520px; max-width: 140%; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.4) 0%, rgba(99,102,241,.2) 40%, rgba(29,78,216,.12) 62%, transparent 74%);
  z-index: 0; pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }

.hero-dash {
  position: relative; z-index: 2; width: 400px; max-width: 100%;
  border-radius: 24px; overflow: hidden;
  background: rgba(13,18,38,.6);
  backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 44px 100px rgba(0,0,0,.6),
    0 12px 40px rgba(4,60,140,.35),
    0 1px 0 rgba(255,255,255,.18) inset,
    0 0 0 1px rgba(255,255,255,.04);
  transition: transform .4s ease;
}
.hero-dash::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.1) 0%, transparent 32%, transparent 68%, rgba(255,255,255,.05) 100%);
}
.hero-dash-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 17px; background: rgba(255,255,255,.045);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.hero-dash-dots { display: flex; gap: 5px; }
.hero-dash-dots i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.hero-dash-dots i:nth-child(1){background:#FF5F57} .hero-dash-dots i:nth-child(2){background:#FEBC2E} .hero-dash-dots i:nth-child(3){background:#28C840}
.hero-dash-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.55); }
.hero-dash-live { font-size: 10px; font-weight: 800; color: #FF5F57; }

.hero-dash-screen {
  position: relative; height: 178px; padding: 17px;
  background: linear-gradient(140deg, #0a1128 0%, #122152 32%, #123a72 64%, #0e6ba8 130%);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-dash-badge { position: absolute; top: 15px; left: 17px; display: inline-flex; align-items: center; gap: 5px; background: #FF3B30; color: #fff; font-size: 10px; font-weight: 800; padding: 4px 9px; border-radius: 5px; animation: pulse 1.5s infinite; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; flex-shrink: 0; }
.hero-dash-ch { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 11px; }
.hero-dash-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.32);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.hero-dash-prog { height: 3px; border-radius: 2px; background: rgba(255,255,255,.2); }
.hero-dash-prog-fill { width: 42%; height: 100%; border-radius: 2px; background: linear-gradient(90deg,#38bdf8,#818cf8); }

.hero-dash-row { display: grid; grid-template-columns: repeat(6,1fr); }
.hdc { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 13px 4px; color: #7cc9ff; background: rgba(255,255,255,.03); border-top: 1px solid rgba(255,255,255,.06); transition: background .2s; }
.hdc svg { width: 19px; height: 19px; }
.hdc:nth-child(even) { background: rgba(255,255,255,.01); }
.hdc small { font-size: 8px; color: rgba(255,255,255,.5); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.hdc:hover { background: rgba(56,189,248,.14); }

.glass-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 16px; padding: 10px 16px; font-size: 12.5px; font-weight: 700; color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.2) inset;
  white-space: nowrap; animation: floatBadge 5.5s ease-in-out infinite;
}
.gc-1 { top: 6%; left: -9%; animation-delay: 0s; }
.gc-2 { bottom: 24%; right: -11%; animation-delay: 1.4s; }
.gc-3 { bottom: 3%; left: -5%; animation-delay: 2.8s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.float-ic {
  position: absolute; z-index: 1;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  animation: floatIcon 6.5s ease-in-out infinite;
}
.float-ic svg { width: 20px; height: 20px; }
.float-ic span { font-size: 12px; }
.fi-1 { top: -5%; left: 22%; animation-delay: .2s; }
.fi-2 { top: 12%; right: -9%; animation-delay: 1s; }
.fi-3 { bottom: 36%; left: -11%; animation-delay: 1.8s; }
.fi-4 { bottom: -5%; left: 32%; animation-delay: .6s; }
.fi-5 { bottom: 12%; right: 5%; animation-delay: 2.4s; }
.fi-6 { top: 38%; right: 12%; animation-delay: 3s; }
@keyframes floatIcon { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-7px) rotate(2deg)} }

@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero-h1 span, .hero-p, .hero-btns, .hero-trust, .hero-mockup { animation: none; }
  .badge-dot, .hero-dash-badge, .hero-mock-glow, .glass-card, .float-ic, .hero-glow-a, .hero-glow-b, .hero-particles span { animation: none; }
}

/* ============================================================
   SHOWCASE — NETFLIX-STYLE CAROUSEL
============================================================ */
.showcase-section { background: #000; padding: 80px 0; position: relative; }
.showcase-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,102,255,.35), transparent);
}

.sc-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.sc-head h2 { font-size: clamp(28px,4vw,48px); font-weight: 900; line-height: 1.12; margin-bottom: 14px; }
.sc-head p { color: var(--text-muted); font-size: 16px; }

.cat-tabs {
  display: flex; align-items: center; gap: 8px; margin-bottom: 36px;
  overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; justify-content: center;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 50px; white-space: nowrap;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.6); font-size: 13px; font-weight: 600;
  transition: all .2s; cursor: pointer;
}
.cat-tab:hover { border-color: rgba(0,102,255,.5); color: #fff; background: rgba(0,102,255,.08); }
.cat-tab:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.cat-tab.active { background: var(--gradient); border-color: transparent; color: #fff; box-shadow: 0 4px 20px rgba(0,102,255,.4); }

.sc-wrap { position: relative; padding: 0 4px; }
.sc-viewport { overflow: hidden; border-radius: 12px; }
.sc-track {
  display: flex; gap: 14px;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94), opacity .2s ease;
  will-change: transform; cursor: grab; user-select: none;
}
.sc-track:active { cursor: grabbing; }

.pcard { flex: 0 0 182px; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; transition: transform .3s ease, box-shadow .3s ease; background: #0d0d0d; }
.pcard:hover {
  transform: scale(1.07) translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,.85), 0 0 0 1px rgba(0,102,255,.35), 0 0 40px rgba(0,102,255,.12);
  z-index: 10; position: relative;
}
.pcard-img { position: relative; height: 273px; overflow: hidden; }
.pcard-emoji { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-58%); font-size: 68px; opacity: .5; transition: opacity .3s, transform .3s; filter: drop-shadow(0 8px 24px rgba(0,0,0,.6)); pointer-events: none; z-index: 1; }
.pcard:hover .pcard-emoji { opacity: .2; transform: translate(-50%,-63%) scale(1.1); }
.pcard-poster-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.pcard-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.pbadge { font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 4px; letter-spacing: .07em; width: fit-content; }
.bq-4k  { background: var(--gradient); color: #fff; }
.bq-fhd { background: rgba(0,200,81,.18); border: 1px solid rgba(0,200,81,.3); color: #4ade80; }
.bq-hd  { background: rgba(255,255,255,.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.18); color: #fff; }
.bs-new     { background: #ef4444; color: #fff; }
.bs-trending{ background: #f59e0b; color: #000; font-weight: 900; }
.bs-top     { background: #8b5cf6; color: #fff; }
.bs-live    { background: #ef4444; color: #fff; animation: pulse 1.5s infinite; }
.pcard-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,.96) 0%, rgba(0,0,0,.4) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px 13px; opacity: 0; transition: opacity .3s ease;
}
.pcard:hover .pcard-overlay { opacity: 1; }
.po-genre { font-size: 9px; font-weight: 800; color: rgba(255,255,255,.68); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.po-title { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 5px; }
.po-meta { font-size: 11px; color: rgba(255,255,255,.68); margin-bottom: 10px; }
.po-play {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; width: fit-content;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 50px;
  color: #fff; font-size: 11px; font-weight: 700; cursor: pointer;
  transition: background .2s, border-color .2s; font-family: inherit;
}
.po-play:hover { background: var(--primary); border-color: var(--primary); }
.pcard-foot { padding: 10px 12px 11px; background: rgba(255,255,255,.025); border-top: 1px solid rgba(255,255,255,.05); }
.pcard-foot strong { display: block; font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.pcard-foot small { font-size: 10px; color: rgba(255,255,255,.6); }
.sc-arrow {
  position: absolute; top: calc(136px); transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(8,8,8,.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); color: #fff;
  display: flex; align-items: center; justify-content: center; z-index: 20;
  transition: background .2s, border-color .2s, box-shadow .2s, opacity .2s;
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.6);
}
.sc-arrow:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 24px rgba(0,102,255,.55); }
.sc-arrow:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.sc-arrow:disabled { opacity: .2; cursor: default; pointer-events: none; }
.sc-prev { left: -23px; }
.sc-next { right: -23px; }
.sc-dots { display: flex; justify-content: center; gap: 0; margin-top: 26px; }
.sc-dot {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border: none; background: transparent; cursor: pointer; padding: 0; flex-shrink: 0;
}
.sc-dot::after { content: ''; display: block; width: 6px; height: 6px; border-radius: 3px; background: rgba(255,255,255,.18); transition: all .3s; }
.sc-dot.active::after { width: 26px; background: var(--primary); }
.gallery-more { text-align: center; margin-top: 28px; color: rgba(255,255,255,.55); font-weight: 600; font-size: 13px; letter-spacing: .04em; }

/* ============================================================
   DOCUMENTARY
============================================================ */
.docu-section { background: var(--bg); }
.docu-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.docu-text .sec-tag { margin-bottom: 14px; }
.docu-text h2 { font-size: clamp(24px,3.5vw,36px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: #fff; }
.docu-text p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.docu-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.docu-list li { position: relative; padding-left: 30px; font-size: 15px; font-weight: 500; line-height: 1.6; color: rgba(255,255,255,.8); }
.docu-list li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; background-color: #5ec4ff;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}
.docu-list li:nth-child(1)::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 4 13c0-4 3-8 9-9 6 1 9 5 9 9a7 7 0 0 1-7 7'/%3E%3Cpath d='M4 13c0 6 5 9 7 9M17 8a5 5 0 0 0-5 5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 4 13c0-4 3-8 9-9 6 1 9 5 9 9a7 7 0 0 1-7 7'/%3E%3Cpath d='M4 13c0 6 5 9 7 9M17 8a5 5 0 0 0-5 5'/%3E%3C/svg%3E"); }
.docu-list li:nth-child(2)::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 19 2c0 2.52-.87 7.03-4 10a22.35 22.35 0 0 1-4 3z'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15l-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 19 2c0 2.52-.87 7.03-4 10a22.35 22.35 0 0 1-4 3z'/%3E%3Cpath d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'/%3E%3C/svg%3E"); }
.docu-list li:nth-child(3)::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20M4 19.5A2.5 2.5 0 0 0 6.5 22H20V2H6.5A2.5 2.5 0 0 0 4 4.5v15z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20M4 19.5A2.5 2.5 0 0 0 6.5 22H20V2H6.5A2.5 2.5 0 0 0 4 4.5v15z'/%3E%3C/svg%3E"); }
.docu-list li:nth-child(4)::before { -webkit-mask-image: var(--icon-lightbulb); mask-image: var(--icon-lightbulb); }

.docu-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.docu-card {
  border-radius: var(--radius-sm); overflow: hidden;
  background: linear-gradient(135deg, var(--dc), color-mix(in srgb, var(--dc) 60%, #000));
  padding: 18px 16px; display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur-fast) ease;
}
.docu-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12); border-color: rgba(255,255,255,.14); }
.docu-card-ico { width: 30px; height: 30px; color: #fff; }
.docu-card-ico svg { width: 30px; height: 30px; }
.docu-card div span { display: block; color: #fff; font-size: 13px; font-weight: 700; }
.docu-card div small { color: rgba(255,255,255,.55); font-size: 11px; }

/* ============================================================
   FEATURES
============================================================ */
.features-section { background: var(--bg-alt); }
.feats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur-fast) ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,102,255,.18), inset 0 1px 0 rgba(255,255,255,.05); border-color: rgba(0,102,255,.4); }
.feat-ico { margin-bottom: 14px; }
.f-blue svg{stroke:#5ec4ff} .f-green svg{stroke:#4ADE80} .f-cyan svg{stroke:#22d3ee}
.f-purple svg{stroke:#b794f6} .f-orange svg{stroke:#ffab5c} .f-pink svg{stroke:#ff88b2}
.f-yellow svg{stroke:#ffd166} .f-teal svg{stroke:#5eead4}
.feat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PRICING
============================================================ */
.pricing-section { background: var(--bg); }

.device-tabs {
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 36px;
}
.dev-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px; border-radius: 50px;
  border: 2px solid var(--border); background: var(--bg-card);
  font-size: 15px; font-weight: 700; color: var(--text-muted);
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
  cursor: pointer;
}
.dev-tab:hover { border-color: var(--primary); color: #fff; }
.dev-tab:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.dev-tab.active {
  border-color: var(--primary); background: var(--gradient);
  color: #fff; box-shadow: 0 4px 20px rgba(0,102,255,.4);
}
.dev-tab-ico { display: inline-flex; align-items: center; }
.dev-tab-ico svg { width: 17px; height: 17px; }

.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: start; }

.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  position: relative; box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform var(--dur) var(--ease), border-color var(--dur-fast) ease, box-shadow var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(0,102,255,.4); box-shadow: 0 14px 40px rgba(0,102,255,.18), inset 0 1px 0 rgba(255,255,255,.05); }
.price-card.price-featured { border-color: var(--primary); box-shadow: 0 4px 32px rgba(0,102,255,.25); }
.price-card.price-featured:hover { box-shadow: 0 16px 44px rgba(0,102,255,.32); }
.price-card.price-best { border-color: #d97706; box-shadow: 0 4px 32px rgba(217,119,6,.15); }
.price-card.price-best:hover { box-shadow: 0 16px 44px rgba(217,119,6,.28); border-color: #d97706; }

.price-pop-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  font-size: 10px; font-weight: 800; padding: 4px 16px;
  border-radius: 0 0 10px 10px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.price-best-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #d97706, #f59e0b); color: #fff;
  font-size: 10px; font-weight: 800; padding: 4px 16px;
  border-radius: 0 0 10px 10px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}

.price-dur { font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; margin-top: 12px; }
.price-amt { font-size: 44px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.price-amt .price-cur { font-size: 22px; font-weight: 700; vertical-align: top; padding-top: 8px; display: inline-block; color: var(--text-muted); }
.price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.price-save { display: inline-block; padding: 3px 10px; border-radius: 50px; background: rgba(0,200,81,.12); color: #4ade80; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.price-save-gold { background: rgba(217,119,6,.12); color: #fbbf24; }
.price-sep { height: 1px; background: var(--border); margin: 14px 0; }
.price-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.price-feats li { position: relative; padding-left: 23px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.8); }
.price-feats li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 15px; height: 15px; background-color: var(--secondary);
  -webkit-mask-image: var(--icon-check-circle); mask-image: var(--icon-check-circle);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}
.price-ready { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.price-footnote { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-muted); }

/* ============================================================
   SERVER RELIABILITY
============================================================ */
.server-section { background: #050505; padding: 80px 0; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.server-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.server-text .sec-tag { background: rgba(0,102,255,.15); color: #60a5fa; border-color: rgba(0,102,255,.25); }
.server-text h2 { font-size: clamp(24px,3.5vw,36px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: #fff; }
.server-text p { color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 32px; }
.server-stats { display: flex; gap: 32px; }
.sstat strong { display: block; font-size: 36px; font-weight: 900; color: var(--secondary); line-height: 1; margin-bottom: 4px; }
.sstat strong.pct::after { content: '%'; font-size: 24px; }
.sstat span { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }

.server-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.scard {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius-sm); padding: 22px 20px;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease, transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.scard:hover { background: rgba(255,255,255,.07); border-color: rgba(0,102,255,.35); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,102,255,.12); }
.sc-ico { margin-bottom: 10px; }
.scard strong { display: block; color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.scard p { color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.5; }

/* ============================================================
   DEVICES
============================================================ */
.devices-section { background: var(--bg); }
.devices-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 32px; }
.dev-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 22px 16px; text-align: center; box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: border-color var(--dur-fast) ease, transform var(--dur) var(--ease), background var(--dur-fast) ease, box-shadow var(--dur) var(--ease);
}
.dev-card:hover { border-color: rgba(0,102,255,.4); transform: translateY(-4px); background: #1c1c1c; box-shadow: 0 12px 30px rgba(0,102,255,.15); }
.dev-ico { display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.dev-card strong { display: block; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.dev-card small { font-size: 11px; color: var(--text-muted); }
.section-link-row { text-align: center; margin-top: 28px; font-size: 14px; color: var(--text-muted); }
.section-link-row .icon-inline { color: #60a5fa; vertical-align: -3px; margin-right: 2px; }
.section-link-row a { color: #60a5fa; text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.section-link-row a:hover { color: #93c5fd; }
.apps-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.apps-row p { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.app-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.app-pills span { padding: 5px 12px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75); }

/* ============================================================
   SETUP
============================================================ */
.setup-section { background: var(--bg-alt); }
.steps-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.step-item { padding: 28px 20px; text-align: center; }
.step-num { font-size: 11px; font-weight: 800; color: #60a5fa; letter-spacing: .1em; display: inline-block; padding: 3px 12px; border: 1px solid rgba(0,102,255,.3); border-radius: 50px; margin-bottom: 12px; }
.step-icon { margin: 0 auto 12px; }
.step-item h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.step-arrow { display: flex; align-items: center; justify-content: center; padding-top: 70px; font-size: 22px; color: rgba(0,102,255,.4); }

/* ============================================================
   FAQ
============================================================ */
.faq-section { background: var(--bg); }
.faq-wrap { max-width: 760px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-card); margin-bottom: 10px; overflow: hidden; transition: border-color var(--dur-fast) ease; }
.faq-item:hover { border-color: rgba(0,102,255,.3); }
.faq-item.open { border-color: rgba(0,102,255,.4); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,.85);
  background: none; border: none; cursor: pointer; gap: 12px; text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: #fff; }
.faq-q:focus-visible { outline: none; box-shadow: inset var(--focus-ring); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: rgba(0,102,255,.15); color: #60a5fa; display: flex; align-items: center; justify-content: center; font-size: 0; transition: transform .3s cubic-bezier(.2,.8,.2,1), background .25s ease; }
.faq-icon::before {
  content: ''; display: block; width: 12px; height: 12px; background-color: #60a5fa;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
  transition: background-color .25s ease;
}
.faq-item.open .faq-q { color: #fff; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gradient); box-shadow: 0 4px 14px rgba(0,102,255,.4); }
.faq-item.open .faq-icon::before { background-color: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 22px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   REVIEWS
============================================================ */
.reviews-section { background: var(--bg-alt); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rev-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform var(--dur) var(--ease), border-color var(--dur-fast) ease, box-shadow var(--dur) var(--ease);
}
.rev-card:hover { transform: translateY(-4px); border-color: rgba(0,102,255,.35); box-shadow: 0 14px 40px rgba(0,102,255,.15), inset 0 1px 0 rgba(255,255,255,.05); }
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.rev-card > p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.rev-auth { display: flex; align-items: center; gap: 12px; }
.rev-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; font-weight: 800; flex-shrink: 0; }
.rev-auth strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.rev-auth small { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section { background: var(--bg); }
.cta-box {
  background: linear-gradient(135deg, #0a2060 0%, #0066FF 50%, #00AEEF 100%);
  border-radius: 20px; padding: 56px 60px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  border: 1px solid rgba(0,102,255,.3);
}
.cta-box h2 { font-size: clamp(24px,3.5vw,36px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,.85); font-size: 16px; margin-bottom: 20px; }
.cta-list { display: flex; flex-direction: column; gap: 10px; }
.cta-list li { position: relative; padding-left: 29px; font-size: 15px; color: rgba(255,255,255,.9); font-weight: 500; line-height: 1.5; }
.cta-list li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 19px; height: 19px; background-color: #4ADE80;
  -webkit-mask-image: var(--icon-check-circle); mask-image: var(--icon-check-circle);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.btn-wa.btn-xl { background: #fff; color: #0F7A3B; }
.btn-wa.btn-xl:hover { background: #f0fff4; }
#ctaTrialBtn.btn-wa.btn-xl { padding: 21px 46px; font-size: 19px; }
#ctaTrialBtn.btn-wa.btn-xl svg { width: 23px; height: 23px; }
.cta-contact { text-align: center; }
.cta-contact p { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.75); margin: 0; }
.cta-contact .icon-inline { color: #5ec4ff; }
.live-dot-static { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 8px rgba(74,222,128,.7); flex-shrink: 0; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #000; color: rgba(255,255,255,.8); padding: 56px 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-col h3 { font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-btm { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; }
.footer-btm .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-btm p { font-size: 12px; color: rgba(255,255,255,.55); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   MODAL
============================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.8); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #1a1a1a; border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  padding: 40px 36px; max-width: 480px; width: 100%;
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.8);
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.15); }
.modal-close:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.modal-wa-ring { text-align: center; margin-bottom: 18px; }
.modal-box h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; text-align: center; }
.modal-box p { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 24px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.fg input, .fg select {
  width: 100%; padding: 11px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: #fff; background: rgba(255,255,255,.06);
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease, background var(--dur-fast) ease;
}
.fg input:focus, .fg select:focus { outline: none; border-color: var(--primary); box-shadow: var(--focus-ring); background: rgba(255,255,255,.08); }
.fg input::placeholder { color: rgba(255,255,255,.3); }
.fg input.err, .fg select.err { border-color: #ef4444; }
.fg select option { background: #1a1a1a; color: #fff; }
.phone-row { display: flex; gap: 8px; }
.phone-row select { width: 130px; flex-shrink: 0; }
.phone-row input { flex: 1; }
.success-check { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,#00C851,#007E33); font-size: 0; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 8px 24px rgba(0,200,81,.35); }
.success-check::before {
  content: ''; display: block; width: 28px; height: 28px; background-color: #fff;
  -webkit-mask-image: var(--icon-check); mask-image: var(--icon-check);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}
#modalSuccess { text-align: center; padding: 20px 0; }
#modalSuccess h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; color: #fff; }
#modalSuccess p { font-size: 14px; color: var(--text-muted); }

/* Scroll to top */
.scroll-top-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: #fff; font-size: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,102,255,.5);
  opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}
.scroll-top-btn::before {
  content: ''; display: block; width: 18px; height: 18px; background-color: #fff;
  -webkit-mask-image: var(--icon-arrow-up); mask-image: var(--icon-arrow-up);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}
.scroll-top-btn.show { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 26px rgba(0,174,239,.55); }
.scroll-top-btn:focus-visible { outline: none; box-shadow: 0 4px 16px rgba(0,102,255,.5), var(--focus-ring); }

/* ============================================================
   RTL
============================================================ */
html[dir="rtl"] .hero-inner { direction: rtl; }
html[dir="rtl"] .hero-trust { flex-direction: row-reverse; }
html[dir="rtl"] .hero-trust li { flex-direction: row-reverse; text-align: right; padding: 7px 8px 7px 14px; }
html[dir="rtl"] .hero-btns { flex-direction: row-reverse; }
html[dir="rtl"] .nav { flex-direction: row-reverse; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .sec-head { direction: rtl; }
html[dir="rtl"] .feat-card { text-align: right; direction: rtl; }
html[dir="rtl"] .price-feats li { text-align: right; padding-left: 0; padding-right: 23px; }
html[dir="rtl"] .price-feats li::before { left: auto; right: 0; }
html[dir="rtl"] .price-pop-badge, html[dir="rtl"] .price-best-badge { left: auto; right: 50%; transform: translateX(50%); }
html[dir="rtl"] .faq-q { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .docu-list li { text-align: right; padding-left: 0; padding-right: 30px; }
html[dir="rtl"] .docu-list li::before { left: auto; right: 0; }
html[dir="rtl"] .step-item { text-align: right; }
html[dir="rtl"] .steps-row { direction: rtl; }
html[dir="rtl"] .step-arrow { transform: scaleX(-1); }
html[dir="rtl"] .rev-auth { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .cta-list li { text-align: right; padding-left: 0; padding-right: 29px; }
html[dir="rtl"] .cta-list li::before { left: auto; right: 0; }
html[dir="rtl"] .footer-inner { direction: rtl; }
html[dir="rtl"] .price-ready { flex-direction: row-reverse; }
html[dir="rtl"] .apps-row { flex-direction: row-reverse; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .gc-1 { left: 2%; }
  .gc-2 { right: 2%; }
  .gc-3 { left: 2%; }
  .fi-2 { right: 2%; }
  .fi-3 { left: 2%; }
}

@media (max-width: 1100px) {
  .feats-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .nav { gap: 24px; }
  .header-inner { gap: 16px; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-mockup { justify-content: center; min-height: 400px; }
  .hero-dash { width: 100%; max-width: 360px; }
  .docu-inner { grid-template-columns: 1fr; gap: 40px; }
  .server-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-box { grid-template-columns: 1fr; padding: 40px 32px; }
  .cta-actions { align-items: flex-start; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .header-cta-desktop { display: none; }
  .burger { display: flex; }
  .logo-img { height: 36px; }
  .nav {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 95;
    width: 85%; max-width: 340px; height: 100vh; overflow-y: auto;
    background: #fff; padding: calc(var(--header-h) + 24px) 24px 24px;
    box-shadow: -8px 0 32px rgba(17,24,39,.15);
    transform: translateX(100%); visibility: hidden;
    transition: transform .3s ease, visibility 0s linear .3s;
  }
  .nav.open { transform: translateX(0); visibility: visible; transition: transform .3s ease, visibility 0s linear 0s; }
  html[dir="rtl"] .nav { flex-direction: column; }
  .nav-link { width: 100%; padding: 12px 0; font-size: 17px; }
  .nav-link::after { display: none; }
  .nav .lang-sw { display: block; width: 100%; margin-top: 12px; }
  .nav .lang-sw .lang-btn { width: 100%; justify-content: space-between; }
  .nav .lang-sw .lang-menu { left: 0; right: 0; width: 100%; }
  .nav .nav-cta-mobile { display: inline-flex; width: 100%; margin-top: 12px; }
  .hero { padding: 52px 0 60px; }
  .hero-badge { margin-bottom: 12px; }
  .hero-h1 { margin-bottom: 10px; }
  .hero-p { margin-bottom: 16px; }
  .hero-btns { margin-bottom: 16px; }
  .feats-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .devices-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .docu-cards { grid-template-columns: 1fr 1fr; }
  .server-cards { grid-template-columns: 1fr; }
  .hero-mockup { min-height: 340px; padding: 0 24px; }
  .glass-card { font-size: 11px; padding: 7px 12px; }
  .gc-1 { left: 0; }
  .gc-2 { right: 0; }
  .gc-3 { left: 0; }
  .float-ic { width: 38px; height: 38px; font-size: 15px; }
  .fi-2 { right: 0; }
  .fi-3 { left: 0; }
  .pcard { flex: 0 0 155px; } .pcard-img { height: 233px; }
}

@media (max-width: 520px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-outline { width: 100%; text-align: center; }
  .hero-btns .btn-wa { width: 100%; }
  .hero { padding-top: 26px; }
  .hero-h1 { font-size: 27px; margin-bottom: 6px; }
  .hero-p { font-size: 15.5px; margin-bottom: 12px; }
  .hero-badge { margin-bottom: 8px; }
  .hero-btns { margin-bottom: 12px; }
  .float-ic.fi-1, .float-ic.fi-4, .float-ic.fi-6 { display: none; }
}

@media (max-width: 520px) and (max-height: 720px) {
  .hero { padding-top: 20px; }
  .hero-h1 { font-size: 24px; margin-bottom: 6px; }
  .hero-p { font-size: 14.5px; margin-bottom: 10px; line-height: 1.55; }
  .hero-badge { margin-bottom: 6px; padding: 5px 12px; }
  .hero-btns { margin-bottom: 10px; }
  .hero-btns .btn-lg { padding: 12px 24px; }
}

@media (max-width: 520px) {
  .cta-box { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .modal-box { padding: 32px 24px; }
  .phone-row { flex-direction: column; }
  .phone-row select { width: 100%; }
  .pcard { flex: 0 0 138px; } .pcard-img { height: 207px; } .pcard-emoji { font-size: 52px; }
}

/* ===== PREMIUM ENTERTAINMENT SHOWCASE ===== */
.prem-section { padding: 80px 0; }
.prem-alt { background: var(--bg-alt); }

.prem-head { text-align: center; margin-bottom: 40px; }
.prem-head h2 { font-size: 2.2rem; font-weight: 800; margin: 12px 0 10px; }
.prem-head p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.prem-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(139,92,246,.18));
  border: 1px solid rgba(99,102,241,.4);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .05em;
}

.prem-caro { position: relative; padding: 0 30px; }
.prem-viewport { overflow: hidden; border-radius: 12px; }
.prem-track {
  display: flex; gap: 14px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.prem-poster {
  flex: 0 0 190px;
  border-radius: 10px; overflow: hidden;
  cursor: pointer; position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.prem-poster:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.65); }
.prem-poster-img { width: 190px; height: 285px; object-fit: cover; display: block; border-radius: 10px; }
.prem-poster-fallback {
  width: 190px; height: 285px; border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center;
  font-size: 54px; gap: 8px;
}
.prem-poster-badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; }
.prem-pbadge {
  font-size: .58rem; font-weight: 700; padding: 2px 6px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: .05em; line-height: 1.4;
}
.prem-bq4k  { background: linear-gradient(135deg,#6366f1,#8b5cf6); color: #fff; }
.prem-bqfhd { background: linear-gradient(135deg,#0ea5e9,#38bdf8); color: #fff; }
.prem-bqhd  { background: rgba(255,255,255,.2); color: #fff; }
.prem-bnew  { background: linear-gradient(135deg,#10b981,#059669); color: #fff; }
.prem-bhot  { background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff; }
.prem-btop  { background: linear-gradient(135deg,#ef4444,#dc2626); color: #fff; }

.prem-poster-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, transparent 100%);
  padding: 44px 10px 10px; border-radius: 0 0 10px 10px;
  opacity: 0; transition: opacity .3s ease;
}
.prem-poster:hover .prem-poster-overlay { opacity: 1; }
.prem-poster-title { color: #fff; font-size: .8rem; font-weight: 700; margin: 0 0 3px; line-height: 1.3; }
.prem-poster-meta  { color: rgba(255,255,255,.7); font-size: .7rem; margin: 0; }

.prem-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.5rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, opacity .2s;
}
.prem-arrow:hover { background: var(--primary); }
.prem-arrow:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.prem-arrow:disabled { opacity: .25; cursor: not-allowed; }
.prem-prev { left: -8px; } .prem-next { right: -8px; }

.prem-dots { display: flex; justify-content: center; gap: 0; margin-top: 18px; }
.prem-dot {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border: none; background: transparent; cursor: pointer;
}
.prem-dot::after {
  content: ''; display: block; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25); transition: background .2s, transform .2s;
}
.prem-dot.active::after { background: var(--primary); transform: scale(1.4); }

/* World Cup Section */
.prem-wc-section {
  position: relative; padding: 100px 0;
  background: #04080f; overflow: hidden;
}
.prem-wc-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%,rgba(16,185,129,.14) 0%,transparent 60%),
              radial-gradient(ellipse at 80% 50%,rgba(245,158,11,.11) 0%,transparent 60%);
}
.prem-wc-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .07;
}
.prem-wc-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.prem-wc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,rgba(245,158,11,.2),rgba(16,185,129,.2));
  border: 1px solid rgba(245,158,11,.4); color: #f59e0b;
  padding: 7px 18px; border-radius: 100px;
  font-size: .9rem; font-weight: 700; margin-bottom: 16px;
}
.prem-wc-badge svg { flex-shrink: 0; }
.prem-wc-content h2 { font-size: 2.4rem; font-weight: 800; line-height: 1.2; margin: 0 0 16px; }
.prem-wc-content p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.prem-wc-stats { display: flex; gap: 28px; margin-bottom: 36px; }
.prem-wc-stat { text-align: center; }
.prem-wc-stat strong { display: block; font-size: 2rem; font-weight: 800; color: #f59e0b; }
.prem-wc-stat span   { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.prem-wc-visual { position: relative; }
.prem-wc-fallback {
  width: 100%; height: 340px; border-radius: 16px; display: flex;
  background: linear-gradient(135deg,#064e3b,#0a2a1a);
  align-items: center; justify-content: center; font-size: 6rem;
}

/* Responsive Premium */
@media (max-width: 768px) {
  .prem-head h2 { font-size: 1.7rem; }
  .prem-wc-inner { grid-template-columns: 1fr; gap: 32px; }
  .prem-wc-content h2 { font-size: 1.8rem; }
  .prem-wc-stats { gap: 16px; }
  .prem-wc-stat strong { font-size: 1.5rem; }
  .prem-poster { flex: 0 0 155px; }
  .prem-poster-img, .prem-poster-fallback { width: 155px; height: 233px; }
}
@media (max-width: 520px) {
  .prem-poster { flex: 0 0 130px; }
  .prem-poster-img, .prem-poster-fallback { width: 130px; height: 195px; }
}

/* ============================================================
   LEGAL PAGES
============================================================ */
.legal-section { background: var(--bg); }
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.legal-crumb a { color: var(--text-muted); transition: color .2s; }
.legal-crumb a:hover { color: #fff; }
.legal-crumb span[aria-current] { color: #fff; }
.legal-title { font-size: clamp(28px,4vw,44px); font-weight: 900; line-height: 1.18; letter-spacing: -.015em; margin: 16px 0 8px; color: #fff; }
.legal-updated { color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.legal-body h2 { font-size: 20px; font-weight: 800; color: #fff; margin: 36px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.legal-body ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal-body li { color: rgba(255,255,255,.75); line-height: 1.7; font-size: 15px; }
.legal-body a { color: #60a5fa; text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: #93c5fd; }
.legal-body strong { color: #fff; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-hero { background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #0ea5e9 100%); padding: 90px 0 70px; text-align: center; overflow: hidden; position: relative; }
.about-hero h1 { font-size: clamp(32px,5vw,52px); font-weight: 900; color: #fff; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,.88); font-size: 17px; max-width: 640px; margin: 0 auto; line-height: 1.7; }
.about-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 40px; }
.about-stat strong { display: block; font-size: 32px; font-weight: 900; color: #fff; }
.about-stat span { font-size: 12px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .06em; }
.about-story { max-width: 760px; margin: 0 auto 64px; }
.about-story h2 { font-size: 24px; font-weight: 800; color: #fff; margin: 0 0 16px; }
.about-story p { color: rgba(255,255,255,.75); line-height: 1.85; margin-bottom: 16px; font-size: 15px; }
.about-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.about-value-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform var(--dur) var(--ease), border-color var(--dur-fast) ease, box-shadow var(--dur) var(--ease);
}
.about-value-card:hover { transform: translateY(-4px); border-color: rgba(0,102,255,.4); box-shadow: 0 14px 40px rgba(0,102,255,.18), inset 0 1px 0 rgba(255,255,255,.05); }
.about-value-card .value-ico { margin-bottom: 14px; }
.about-value-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.about-value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-intro h2 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.contact-intro p { color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 16px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform var(--dur) var(--ease), border-color var(--dur-fast) ease, box-shadow var(--dur) var(--ease);
}
.contact-method:hover { transform: translateY(-3px); border-color: rgba(0,102,255,.4); box-shadow: 0 12px 34px rgba(0,102,255,.15), inset 0 1px 0 rgba(255,255,255,.05); }
.contact-method-ico { width: 46px; height: 46px; }
.contact-method strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.contact-method span, .contact-method a { color: var(--text-muted); font-size: 13px; }
.contact-method a:hover { color: #fff; }
.contact-form-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.contact-form-box h2 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.contact-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; text-align: center; }

/* ============================================================
   BLOG
============================================================ */
.blog-hero { background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #0ea5e9 100%); padding: 90px 0 50px; text-align: center; }
.blog-hero h1 { font-size: clamp(32px,5vw,52px); font-weight: 900; color: #fff; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px; }
.blog-hero p { color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.65; max-width: 600px; margin: 0 auto 32px; }
.blog-search { max-width: 480px; margin: 0 auto; position: relative; }
.blog-search input { width: 100%; padding: 14px 48px 14px 20px; border-radius: 50px; border: 2px solid transparent; font-size: 14px; font-family: inherit; transition: box-shadow var(--dur-fast) ease, border-color var(--dur-fast) ease; }
.blog-search input:focus-visible { outline: none; border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.blog-search svg { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); pointer-events: none; color: #666; }

.blog-filters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: -22px 0 40px; position: relative; z-index: 2; }
.blog-filter-btn { padding: 8px 18px; border-radius: 50px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-muted); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.blog-filter-btn:hover { border-color: rgba(0,102,255,.5); color: #fff; }
.blog-filter-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.blog-filter-btn.active { background: var(--gradient); color: #fff; border-color: transparent; }

.blog-featured { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 56px; }
.blog-featured-img { min-height: 320px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; }
.blog-featured-ico {
  display: flex; align-items: center; justify-content: center;
  width: 92px; height: 92px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 12px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.18);
  color: #fff;
}
.blog-featured-badge { position: absolute; top: 16px; left: 16px; background: var(--gradient); color: #fff; font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: .06em; }
.blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-cat { color: #60a5fa; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.blog-featured-body h2 { font-size: clamp(20px,2.6vw,28px); font-weight: 800; color: #fff; letter-spacing: -.01em; margin-bottom: 12px; line-height: 1.3; }
.blog-featured-body h2 a { color: inherit; }
.blog-featured-body h2 a:hover { color: #60a5fa; }
.blog-featured-body p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.blog-featured-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }

.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur-fast) ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,102,255,.2); border-color: rgba(0,102,255,.4); }
.blog-card-img { height: 180px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; }
.blog-card-ico {
  display: flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 10px 30px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.16);
  color: #fff;
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
}
.blog-card:hover .blog-card-ico { transform: translateY(-3px) scale(1.05); }
.blog-card-cat { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); color: #fff; font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: .05em; }
.blog-card-body { padding: 20px; }
.blog-card-body h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: #60a5fa; }
.blog-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--text-muted); flex-wrap: wrap; }
.blog-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.blog-tag-pill { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 50px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); }

.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }
.blog-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.blog-widget h4 { font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.blog-recent-item { display: flex; gap: 12px; margin-bottom: 16px; }
.blog-recent-item:last-child { margin-bottom: 0; }
.blog-recent-thumb { width: 56px; height: 56px; border-radius: 8px; background-size: cover; background-position: center; flex-shrink: 0; }
.blog-recent-info a { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.4; display: block; margin-bottom: 4px; }
.blog-recent-info a:hover { color: #60a5fa; }
.blog-recent-info span { font-size: 11px; color: var(--text-muted); }
.blog-cat-list { display: flex; flex-direction: column; gap: 2px; }
.blog-cat-list button { all: unset; display: flex; justify-content: space-between; padding: 9px 0; font-size: 13px; color: rgba(255,255,255,.75); border-bottom: 1px solid var(--border); cursor: pointer; width: 100%; box-sizing: border-box; }
.blog-cat-list button:last-child { border-bottom: none; }
.blog-cat-list button:hover, .blog-cat-list button.active { color: #fff; }
.blog-cat-list button:focus-visible { outline: none; color: #fff; box-shadow: var(--focus-ring); border-radius: 4px; }
.blog-cat-list span { color: var(--text-muted); font-size: 12px; }
.blog-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.blog-newsletter { background: linear-gradient(135deg, #0a2060 0%, #0066FF 50%, #00AEEF 100%); border-radius: 20px; padding: 48px; text-align: center; margin-top: 56px; }
.blog-newsletter h2 { font-size: clamp(22px,3vw,30px); font-weight: 800; color: #fff; margin-bottom: 10px; }
.blog-newsletter p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.blog-newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.blog-newsletter-form input {
  flex: 1; padding: 13px 18px; border-radius: 12px; border: 2px solid transparent; font-size: 14px; font-family: inherit;
  transition: box-shadow var(--dur-fast) ease;
}
.blog-newsletter-form input:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,.5); }
.blog-newsletter-form button {
  padding: 13px 26px; border-radius: 12px; background: #fff; color: var(--primary); font-weight: 700; white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.blog-newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.blog-newsletter-form button:active { transform: translateY(0); }
.blog-newsletter-form button:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,.5); }
.blog-newsletter-msg { color: #fff; font-size: 13px; margin-top: 12px; font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .blog-newsletter-form button { transition: box-shadow var(--dur-fast) !important; }
  .blog-newsletter-form button:hover { transform: none !important; }
}

/* ============================================================
   ARTICLE PAGE
============================================================ */
.article-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gradient); z-index: 200; width: 0%; }
.article-hero { padding: 60px 0 40px; background: var(--bg-alt); }
.article-crumb { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.article-crumb a { color: var(--text-muted); }
.article-crumb a:hover { color: #fff; }
.article-cat-badge { display: inline-block; background: rgba(0,102,255,.15); color: #60a5fa; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.article-title { font-size: clamp(28px,4.5vw,46px); font-weight: 900; color: #fff; line-height: 1.18; letter-spacing: -.02em; margin-bottom: 24px; max-width: 820px; }
.article-meta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.article-author { display: flex; align-items: center; gap: 10px; }
.article-author-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.article-author-name { color: #fff; font-size: 14px; font-weight: 700; }
.article-author-role { color: var(--text-muted); font-size: 12px; }
.article-meta-sep { color: var(--text-muted); }
.article-date, .article-readtime { color: var(--text-muted); font-size: 13px; }

.article-cover {
  width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); margin: 40px 0;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), inset 0 0 60px rgba(0,0,0,.25), 0 20px 50px rgba(0,0,0,.35);
}
.article-cover::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
}
.article-cover .icon-badge {
  position: relative; z-index: 1;
  width: 108px; height: 108px; border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 12px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.18);
}
.article-cover .icon-badge svg { width: 50px; height: 50px; stroke: #fff; }
.article-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: clamp(21px,2.6vw,26px); font-weight: 800; color: #fff; letter-spacing: -.01em; line-height: 1.3; margin: 44px 0 16px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -.005em; line-height: 1.35; margin: 30px 0 12px; }
.article-body p { color: rgba(255,255,255,.78); line-height: 1.85; margin-bottom: 18px; font-size: 16px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 24px; display: flex; flex-direction: column; gap: 10px; }
.article-body li { color: rgba(255,255,255,.78); line-height: 1.75; font-size: 16px; }
.article-body strong { color: #fff; }
.article-body a { color: #60a5fa; text-decoration: underline; text-underline-offset: 2px; }
.article-body blockquote { border-left: 3px solid var(--primary); padding: 4px 0 4px 20px; margin: 24px 0; color: rgba(255,255,255,.85); font-style: italic; font-size: 17px; }

.article-author-box { display: flex; gap: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-top: 48px; align-items: flex-start; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.article-author-box .article-author-av { width: 56px; height: 56px; font-size: 18px; }
.article-author-box h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.article-author-box p { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin: 0; }

.article-tags-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }

.article-share { display: flex; align-items: center; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.article-share-label { font-size: 12px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; }
.article-share-btns { display: flex; gap: 10px; }
.article-share-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border); color: rgba(255,255,255,.72);
  cursor: pointer; padding: 0;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) ease, color var(--dur-fast) ease, box-shadow var(--dur-fast) ease, background var(--dur-fast) ease;
}
.article-share-btn svg { width: 17px; height: 17px; }
.article-share-btn:hover { transform: translateY(-3px); border-color: rgba(0,102,255,.5); color: #fff; box-shadow: 0 8px 20px rgba(0,102,255,.22); }
.article-share-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.article-share-btn.is-copied { background: rgba(74,222,128,.14); border-color: rgba(74,222,128,.45); color: #4ADE80; }
@media (prefers-reduced-motion: reduce) {
  .article-share-btn { transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast) !important; }
  .article-share-btn:hover { transform: none !important; }
}

/* Long-form article extras: TOC, callouts, tables, FAQ */
.article-toc {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px; margin: 28px 0 36px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.article-toc p { color: var(--text-muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 12px; }
.article-toc ol { list-style: decimal; margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.article-toc li { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.78); }
.article-toc a { color: rgba(255,255,255,.85); text-decoration: none; transition: color var(--dur-fast) ease; }
.article-toc a:hover { color: #60a5fa; text-decoration: underline; }
.article-toc a.active { color: #60a5fa; font-weight: 700; }
.article-toc a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 4px; }

.callout {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(0,102,255,.08); border: 1px solid rgba(0,102,255,.25); border-left: 4px solid var(--primary);
  border-radius: 10px; padding: 16px 20px; margin: 24px 0;
}
.callout-icon {
  font-size: 0; line-height: 1; flex-shrink: 0; margin-top: 1px;
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,102,255,.28), rgba(0,174,239,.16));
  border: 1px solid rgba(0,174,239,.3);
}
.callout-icon::before {
  content: ''; display: block; width: 18px; height: 18px; background-color: #7cc9ff;
  -webkit-mask-image: var(--icon-lightbulb); mask-image: var(--icon-lightbulb);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}
.callout p { margin: 0; color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.7; }
.callout p + p { margin-top: 8px; }
.callout strong { color: #fff; }
.callout-warn { background: rgba(255,159,10,.08); border-color: rgba(255,159,10,.3); border-left-color: #FF9F0A; }
.callout-mistake { background: rgba(255,69,58,.08); border-color: rgba(255,69,58,.28); border-left-color: #FF453A; }

.article-body .table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--border); border-radius: 10px; }
.article-body table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 480px; }
.article-body th, .article-body td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); color: rgba(255,255,255,.8); }
.article-body th { background: rgba(255,255,255,.04); color: #fff; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.article-body tr:last-child td { border-bottom: none; }

.article-faq { display: flex; flex-direction: column; gap: 4px; margin: 8px 0 32px; }
.article-faq-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.article-faq-item:last-child { border-bottom: none; }
.article-faq-item h3 { margin: 0 0 8px !important; font-size: 16.5px !important; }
.article-faq-item p { margin: 0 !important; color: rgba(255,255,255,.72); }

.article-mistakes-list { display: flex; flex-direction: column; gap: 14px; margin: 0 0 18px; padding: 0; list-style: none; }
.article-mistakes-list li { position: relative; padding-left: 32px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.78); }
.article-mistakes-list li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; background-color: #FF6259;
  -webkit-mask-image: var(--icon-x-circle); mask-image: var(--icon-x-circle);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}

.article-tips-list { display: flex; flex-direction: column; gap: 14px; margin: 0 0 18px; padding: 0; list-style: none; }
.article-tips-list li { position: relative; padding-left: 32px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.78); }
.article-tips-list li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; background-color: #4ADE80;
  -webkit-mask-image: var(--icon-check-circle); mask-image: var(--icon-check-circle);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: center; mask-position: center;
}

.related-articles { margin-top: 64px; }
.related-articles h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.article-nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.article-nav-link {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; text-decoration: none; min-width: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur-fast) ease;
}
.article-nav-link:hover { transform: translateY(-3px); border-color: rgba(0,102,255,.4); box-shadow: 0 14px 34px rgba(0,102,255,.18); }
.article-nav-link:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.article-nav-prev { align-items: flex-start; text-align: left; }
.article-nav-next { align-items: flex-end; text-align: right; grid-column: 2; }
.article-nav-label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); }
.article-nav-label svg { width: 14px; height: 14px; flex-shrink: 0; }
.article-nav-title { font-size: 14.5px; font-weight: 700; color: #fff; line-height: 1.4; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
@media (prefers-reduced-motion: reduce) {
  .article-nav-link { transition: border-color var(--dur-fast) !important; }
  .article-nav-link:hover { transform: none !important; }
}

.blog-empty-state { grid-column: 1 / -1; text-align: center; padding: 64px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.blog-empty-state .icon-badge { width: 60px; height: 60px; margin-bottom: 6px; }
.blog-empty-state .icon-badge svg { width: 26px; height: 26px; }
.blog-empty-state h3 { font-size: 17px; font-weight: 800; color: #fff; margin: 0; }
.blog-empty-state p { font-size: 14px; color: var(--text-muted); margin: 0; max-width: 380px; line-height: 1.6; }

@keyframes cardFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.blog-card, .blog-recent-item { animation: cardFadeIn .45s var(--ease) both; animation-delay: calc(var(--i, 0) * 45ms); }
@media (prefers-reduced-motion: reduce) {
  .blog-card, .blog-recent-item { animation: none !important; }
}

/* ============================================================
   NEW-PAGE RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 220px; }
  .blog-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .about-stats { gap: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-cover { height: 220px; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-newsletter-form { flex-direction: column; }
  .article-nav-links { grid-template-columns: 1fr; }
  .article-nav-next { grid-column: 1; align-items: flex-start; text-align: left; }
}


/* ============================================================
   FLOATING WHATSAPP BUTTON (site-wide, all pages)
============================================================ */
.wa-float-btn {
  position: fixed;
  right: 28px;
  bottom: 88px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--wa-official);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.35), 0 2px 8px rgba(37,211,102,.4);
  z-index: 400;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.wa-float-btn:hover,
.wa-float-btn:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0,0,0,.4), 0 0 0 10px rgba(37,211,102,.16);
}
.wa-float-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.wa-float-icon { width: 32px; height: 32px; fill: #fff; pointer-events: none; }

.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #111111;
  color: #fff;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #111111;
}
.wa-float-btn:hover .wa-float-tooltip,
.wa-float-btn:focus-visible .wa-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 640px) {
  .wa-float-btn { width: 56px; height: 56px; right: 20px; bottom: 80px; }
  .wa-float-icon { width: 28px; height: 28px; }
  .wa-float-tooltip { display: none; }
}