/* ============================================================
   MAX 8K IPTV — Shared Stylesheet
   Theme: dark gold + blue · Fonts: Fraunces / Manrope / Cairo
============================================================ */

:root{
  --gold-bright:#f4d47a;
  --gold:#d4af37;
  --gold-dark:#8b6e2d;
  --gold-light:#ffe39b;
  --text:#f5f5f7;
  --text-soft:#c8cdd4;
  --text-muted:#8a93a0;
  --text-dim:#5d6470;
  --blue-bright:#74dffb;
  --blue:#4ec5e8;
  --blue-dark:#1a7ba0;
  --green-1:#25d366;
  --green-2:#1da851;
  --telegram-1:#2aabee;
  --telegram-2:#1d8ec5;
  --bg-0:#050708;
  --bg-1:#080a0e;
  --bg-2:#0a0d11;
  --on-gold:#1a1306;
  --c-white-04:rgba(255,255,255,0.04);
  --c-white-06:rgba(255,255,255,0.06);
  --c-white-02:rgba(255,255,255,0.02);
  --c-white-024:rgba(255,255,255,0.024);
  --c-white-004:rgba(255,255,255,0.004);
  --c-gold-30:rgba(212,175,55,0.3);
  --c-gold-25:rgba(212,175,55,0.25);
  --c-gold-18:rgba(212,175,55,0.18);
  --c-gold-15:rgba(212,175,55,0.15);
  --c-gold-10:rgba(212,175,55,0.10);
  --c-gold-08:rgba(212,175,55,0.08);
  --c-gold-06:rgba(212,175,55,0.06);
  --c-gold-04:rgba(212,175,55,0.04);
  --r-pill:999px;
  --r-lg:28px;
  --r-md:18px;
  --r-sm:14px;
  --r-xs:10px;
  --r-xxs:8px;
  --font-heading:'Fraunces', Georgia, serif;
  --font-body:'Manrope', system-ui, -apple-system, sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.5;
  color:var(--text);
  background:var(--bg-0);
  overflow-x:hidden;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(212,175,55,0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(78,197,232,0.06), transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(212,175,55,0.05), transparent 60%),
    linear-gradient(180deg, #050708 0%, #080a10 50%, #050708 100%);
  z-index:-2;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.07), transparent 25%),
    radial-gradient(circle at 20% 80%, rgba(78,197,232,0.05), transparent 25%);
  animation:driftBg 20s ease-in-out infinite alternate;
}
@keyframes driftBg{
  0%{transform:translate(0,0)}
  100%{transform:translate(-30px,40px)}
}

.grain{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:0.025;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

/* ============ HEADER ============ */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  padding:8px 0;
  background:linear-gradient(rgba(5,7,8,0.95), rgba(5,7,8,0.85));
  border-bottom:1px solid var(--c-white-06);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}
.brand{display:flex;align-items:center;flex-shrink:0}
.brand-logo{display:block;height:42px;width:auto}
.brand-logo svg{height:100%;width:auto;display:block}

.nav-links{display:none;align-items:center;gap:28px}
@media (min-width:1100px){.nav-links{display:flex;gap:32px}}
.nav-link{
  position:relative;
  font-size:14px;
  font-weight:500;
  color:var(--text-soft);
  transition:color .2s ease;
}
.nav-link:hover{color:var(--gold-light)}
.nav-link.active{color:var(--gold-bright)}
.nav-link.active::after{
  content:"";
  position:absolute;
  left:0;right:0;
  bottom:-6px;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-right{display:flex;align-items:center;gap:8px}

.lang-select{position:relative}
.lang-btn{
  display:flex;
  align-items:center;
  gap:5px;
  padding:7px 10px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:11px;
  letter-spacing:0.22px;
  color:var(--text);
  background:var(--c-white-04);
  border:1px solid var(--c-gold-30);
  border-radius:var(--r-pill);
  transition:all .2s ease;
}
@media (min-width:980px){.lang-btn{font-size:12px;letter-spacing:0.72px;padding:8px 14px}}
.lang-btn:hover{
  background:rgba(231,210,142,0.07);
  border-color:rgba(212,175,55,0.58);
  box-shadow:0 0 6px rgba(212,175,55,0.06);
}
.lang-flag{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:16px;
  font-size:10px;font-weight:800;letter-spacing:0.5px;
  color:var(--gold-bright);
  background:var(--c-gold-15);
  border:1px solid rgba(212,175,55,0.35);
  border-radius:3px;
  line-height:1;
}
.lang-code{font-weight:700;letter-spacing:0.66px}
.lang-caret{width:11px;height:11px;opacity:0.7}

.lang-panel{
  position:absolute;
  top:calc(100% + 10px);
  right:-10px;
  min-width:160px;
  padding:8px;
  background:rgba(8,10,14,0.97);
  border:1px solid rgba(212,175,55,0.25);
  border-radius:16px;
  box-shadow:0 16px 48px -8px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
  opacity:0;
  pointer-events:none;
  transform:translateY(-8px) scale(0.98);
  transition:opacity .2s ease, transform .2s ease;
}
.lang-panel.open{opacity:1;pointer-events:auto;transform:translateY(0) scale(1)}
.lang-option{
  display:flex;
  align-items:center;
  gap:11px;
  width:100%;
  padding:10px 14px;
  font-size:14px;
  font-weight:500;
  color:var(--text-soft);
  border-radius:10px;
  transition:background .2s ease, color .2s ease;
  text-align:left;
}
.lang-option:hover{background:rgba(255,255,255,0.04);color:var(--text)}
.lang-option.active{font-weight:700;color:var(--gold-bright);background:var(--c-gold-15)}
.lang-option .flag{
  display:inline-flex;align-items:center;justify-content:center;
  width:28px;height:20px;
  font-size:11px;font-weight:800;letter-spacing:0.6px;
  color:var(--gold-bright);
  background:var(--c-gold-15);
  border:1px solid rgba(212,175,55,0.35);
  border-radius:4px;
  line-height:1;
  flex-shrink:0;
}
.lang-option.active .flag{color:var(--gold-bright);background:rgba(212,175,55,0.25);border-color:rgba(212,175,55,0.55)}
.lang-option .name{flex:1}

.menu-toggle{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:40px;height:40px;
  gap:5px;
  background:var(--c-white-04);
  border:1px solid var(--c-white-06);
  border-radius:10px;
}
.menu-toggle span{
  display:block;
  width:18px;height:2px;
  background:var(--text);
  border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
}
@media (min-width:1100px){.menu-toggle{display:none}}

.cta-trial{
  display:flex;
  align-items:center;
  gap:7px;
  padding:8px 14px;
  font-family:var(--font-body);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.26px;
  white-space:nowrap;
  color:#fff;
  background:linear-gradient(135deg, #25d366, #1da851);
  border-radius:var(--r-pill);
  box-shadow:0 8px 28px -8px rgba(37,211,102,0.5), 0 0 0 0.5px rgba(37,211,102,0.5);
  transition:transform .2s ease, box-shadow .2s ease;
}
.cta-trial:hover{transform:translateY(-1px);box-shadow:0 10px 32px -6px rgba(37,211,102,0.6)}
.cta-trial svg{width:14px;height:14px;flex-shrink:0}
.cta-trial-label{display:none}
@media (min-width:1100px){.cta-trial-label{display:inline}}
@media (max-width:1099px){
  .cta-trial{width:40px;height:40px;padding:0;border-radius:50%;justify-content:center}
  .cta-trial svg{width:20px;height:20px}
}

/* ============ HERO ============ */
main{padding-top:70px}
.hero{position:relative;padding:60px 0 80px;overflow:hidden}
@media (min-width:780px){.hero{padding:120px 0 100px}}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at center top, rgba(212,175,55,0.14), transparent 60%),
    radial-gradient(ellipse at 30% 60%, rgba(78,197,232,0.08), transparent 60%);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:160px;
  background:linear-gradient(180deg, transparent, rgba(5,7,8,0.6));
  pointer-events:none;
}
.hero-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(60px);
  pointer-events:none;
  animation:float 8s ease-in-out infinite;
}
.hero-orb.o1{
  width:260px;height:260px;
  top:10%;left:5%;
  background:radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
}
.hero-orb.o2{
  width:200px;height:200px;
  bottom:15%;right:8%;
  background:radial-gradient(circle, rgba(78,197,232,0.3), transparent 70%);
  animation-delay:-3s;
}
.hero-orb.o3{
  width:180px;height:180px;
  top:50%;right:20%;
  background:radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
  animation-delay:-5s;
}
@media (max-width:779px){
  .hero-orb.o1{width:180px;height:180px}
  .hero-orb.o2{width:140px;height:140px}
  .hero-orb.o3{display:none}
}
@keyframes float{
  0%,100%{transform:translateY(0) translateX(0)}
  50%{transform:translateY(-30px) translateX(10px)}
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
  text-align:center;
}
.eyebrow-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 16px;
  margin-bottom:24px;
  font-size:11px;
  font-weight:600;
  letter-spacing:1.76px;
  text-transform:uppercase;
  color:var(--blue-bright);
  background:rgba(78,197,232,0.08);
  border:1px solid rgba(78,197,232,0.25);
  border-radius:var(--r-pill);
}
.pulse-dot{
  width:7px;height:7px;
  background:var(--blue);
  border-radius:50%;
  box-shadow:0 0 0 0 rgba(78,197,232,0.7);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(78,197,232,0.7)}
  70%{box-shadow:0 0 0 12px rgba(78,197,232,0)}
  100%{box-shadow:0 0 0 0 rgba(78,197,232,0)}
}
.pulse-dot.gold{
  background:var(--gold);
  box-shadow:0 0 0 0 rgba(212,175,55,0.7);
  animation:pulse-gold 2s infinite;
}
@keyframes pulse-gold{
  0%{box-shadow:0 0 0 0 rgba(212,175,55,0.7)}
  70%{box-shadow:0 0 0 12px rgba(212,175,55,0)}
  100%{box-shadow:0 0 0 0 rgba(212,175,55,0)}
}

.hero-logo{display:flex;justify-content:center;align-items:center;margin-bottom:22px}
.hero-logo svg{width:260px;height:auto;max-width:320px;filter:drop-shadow(0 10px 38px rgba(212,175,55,0.35))}
@media (min-width:780px){.hero-logo svg{width:380px;max-width:420px}}

.hero-title{
  max-width:900px;
  margin:0 auto 18px;
  font-family:var(--font-heading);
  font-weight:600;
  font-size:32px;
  line-height:1.1;
  letter-spacing:-0.64px;
}
@media (min-width:780px){
  .hero-title{font-size:64px;line-height:1.1;letter-spacing:-1.28px;margin-bottom:18px}
}
.gold-grad{
  background:linear-gradient(135deg, #ffe39b 0%, #d4af37 30%, #f4d47a 55%, #8b6e2d 80%, #f4d47a 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.hero-title em{font-style:normal;font-weight:400}

.hero-sub{
  max-width:680px;
  margin:0 auto 28px;
  font-size:18.4px;
  line-height:1.55;
  color:var(--text-soft);
}
.hero-sub strong{font-weight:700;color:var(--gold-bright)}

.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-bottom:28px;
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}
@media (min-width:780px){.hero-ctas{gap:14px;max-width:none;margin-bottom:32px}}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 28px;
  font-family:var(--font-body);
  font-size:15px;
  font-weight:600;
  letter-spacing:0.15px;
  white-space:nowrap;
  border-radius:var(--r-pill);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor:pointer;
}
.btn svg{width:18px;height:18px;flex-shrink:0}
@media (max-width:679px){.btn{width:100%;max-width:340px}}

.btn-gold{
  color:var(--on-gold);
  background:linear-gradient(135deg, #ffe39b, #d4af37 50%, #8b6e2d);
  box-shadow:0 12px 36px -10px rgba(212,175,55,0.6), inset 0 1px 0 0 rgba(255,255,255,0.4);
}
.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 44px -10px rgba(212,175,55,0.75), inset 0 1px 0 0 rgba(255,255,255,0.4);
}
.btn-green{
  color:#fff;
  background:linear-gradient(135deg, #25d366, #1da851);
  box-shadow:0 12px 36px -10px rgba(37,211,102,0.55), inset 0 1px 0 0 rgba(255,255,255,0.2);
}
.btn-green:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 44px -10px rgba(37,211,102,0.67), inset 0 1px 0 0 rgba(255,255,255,0.2);
}
.btn-blue{
  color:#031018;
  background:linear-gradient(135deg, #74dffb, #4ec5e8 50%, #1a7ba0);
  box-shadow:0 12px 36px -10px rgba(78,197,232,0.6), inset 0 1px 0 0 rgba(255,255,255,0.3);
}
.btn-blue:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 44px -10px rgba(78,197,232,0.75), inset 0 1px 0 0 rgba(255,255,255,0.3);
}
.btn-ghost{
  color:var(--text);
  background:var(--c-white-04);
  border:1px solid var(--c-gold-18);
}
.btn-ghost:hover{
  background:rgba(225,200,117,0.06);
  border-color:rgba(212,175,55,0.45);
  transform:translateY(-1px);
}

.hero-meta{
  display:inline-flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:10px;
  color:var(--text-muted);
  font-size:11px;
  letter-spacing:0.44px;
}
@media (min-width:780px){.hero-meta{font-size:12px;letter-spacing:0.48px;gap:12px}}
.hero-meta .stars{letter-spacing:2px;color:var(--gold-bright);font-size:16px}

/* ============ BENEFITS BAR ============ */
.benefits{
  position:relative;
  padding:36px 0;
  background:linear-gradient(rgba(212,175,55,0.024), rgba(78,197,232,0.024));
  border-top:1px solid var(--c-white-06);
  border-bottom:1px solid var(--c-white-06);
}
.benefits-grid{display:grid;grid-template-columns:repeat(2, 1fr);gap:18px}
@media (min-width:780px){.benefits-grid{grid-template-columns:repeat(5, 1fr);gap:8px}}
.benefit{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 4px;
  font-size:14px;
  font-weight:500;
  color:var(--text-soft);
  justify-content:flex-start;
}
@media (min-width:780px){.benefit{justify-content:center}}
.benefit svg{width:20px;height:20px;color:var(--gold-bright);flex-shrink:0}

/* ============ SECTION SHARED ============ */
section{position:relative}
.section{padding:48px 0 72px}
.section-head{max-width:780px;margin:0 auto 28px;text-align:center}
@media (min-width:780px){.section-head{margin-bottom:40px}}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  font-size:12px;
  font-weight:600;
  line-height:19.2px;
  letter-spacing:2.64px;
  text-transform:uppercase;
  color:var(--gold-bright);
}
.eyebrow::before,.eyebrow::after{content:"";width:24px;height:1px;background:var(--gold)}
.section-title{
  margin:0 0 14px;
  font-family:var(--font-heading);
  font-weight:600;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-0.48px;
}
@media (min-width:780px){.section-title{font-size:44.8px;letter-spacing:-0.896px}}
.blue-grad{
  background:linear-gradient(135deg, #74dffb 0%, #4ec5e8 50%, #1a7ba0 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.section-sub{
  max-width:680px;
  margin:0 auto;
  color:var(--text-muted);
  font-size:14.72px;
  line-height:1.65;
}
@media (min-width:780px){.section-sub{font-size:16px;line-height:26.4px}}

/* ============ FEATURES ============ */
.features-grid{display:grid;grid-template-columns:1fr;gap:14px}
@media (min-width:780px){.features-grid{grid-template-columns:repeat(3, 1fr);gap:24px}}
.feature{
  position:relative;
  padding:22px 20px;
  background:linear-gradient(rgba(255,255,255,0.024), rgba(255,255,255,0.004));
  border:1px solid var(--c-white-06);
  border-radius:var(--r-md);
  transition:transform .25s ease, border-color .25s ease;
}
@media (min-width:780px){.feature{padding:28px 24px}}
.feature:hover{border-color:rgba(212,175,55,0.3);transform:translateY(-3px)}
.feature-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;height:52px;
  margin-bottom:22px;
  color:var(--gold-bright);
  background:linear-gradient(135deg, rgba(212,175,55,0.18), rgba(78,197,232,0.1));
  border:1px solid var(--c-gold-30);
  border-radius:14px;
}
.feature-icon svg{width:24px;height:24px}
.feature h3{
  margin:0 0 10px;
  font-family:var(--font-heading);
  font-size:22.4px;
  font-weight:600;
  line-height:1.15;
  letter-spacing:-0.224px;
}
.feature p{margin:0;font-size:15.2px;line-height:1.65;color:var(--text-muted)}

/* ============ DEVICES ============ */
.devices-wrap{
  position:relative;
  overflow:hidden;
  padding:32px 20px;
  background:
    radial-gradient(rgba(78,197,232,0.08), transparent 70%),
    linear-gradient(rgba(255,255,255,0.024), rgba(255,255,255,0.004));
  border:1px solid var(--c-white-06);
  border-radius:var(--r-lg);
}
@media (min-width:780px){.devices-wrap{padding:48px 32px}}
.devices-grid{display:grid;grid-template-columns:repeat(2, 1fr);gap:14px;margin-top:24px}
@media (min-width:780px){.devices-grid{grid-template-columns:repeat(4, 1fr);gap:20px}}
.device-card{
  text-align:center;
  padding:28px 16px;
  background:var(--c-white-02);
  border:1px solid var(--c-white-06);
  border-radius:16px;
  transition:border-color .25s ease, transform .25s ease, background .25s ease;
}
.device-card:hover{
  border-color:rgba(78,197,232,0.3);
  transform:translateY(-2px);
  background:rgba(78,197,232,0.04);
}
.device-icon{
  width:56px;height:56px;
  margin:0 auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue-bright);
}
.device-icon svg{width:48px;height:48px}
.device-name{font-size:14.4px;font-weight:600;line-height:1.6}
.device-tag{margin-top:4px;font-size:12.48px;line-height:1.6;color:var(--text-muted)}

/* ============ PRICING ============ */
.pricing-grid{display:grid;grid-template-columns:1fr;gap:14px}
@media (min-width:980px){.pricing-grid{grid-template-columns:repeat(4, 1fr);gap:18px;align-items:stretch}}
.price-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:26px 20px;
  background:linear-gradient(rgba(255,255,255,0.03), rgba(255,255,255,0.004));
  border:1px solid var(--c-white-06);
  border-radius:var(--r-md);
  transition:transform .25s ease, border-color .25s ease;
}
@media (min-width:980px){.price-card{padding:32px 22px}}
.price-card:hover{border-color:rgba(212,175,55,0.3)}
.price-card.featured{
  background:linear-gradient(rgba(212,175,55,0.1), rgba(212,175,55,0.02));
  border:1px solid rgba(212,175,55,0.45);
  box-shadow:0 0 0 1px var(--c-gold-25), 0 20px 60px -20px rgba(212,175,55,0.35);
  order:-1;
}
@media (min-width:980px){.price-card.featured{order:0}}
.badge-popular{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  padding:6px 14px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.54px;
  text-transform:uppercase;
  color:var(--on-gold);
  white-space:nowrap;
  background:linear-gradient(135deg, #ffe39b, #d4af37);
  border-radius:var(--r-pill);
  box-shadow:0 6px 18px -4px rgba(212,175,55,0.6);
}
.price-period{
  margin-bottom:16px;
  font-size:13px;
  font-weight:600;
  line-height:1.6;
  letter-spacing:2.08px;
  text-transform:uppercase;
  color:var(--text-muted);
}
.featured .price-period{color:var(--gold-bright)}
.price-amount{
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-bottom:4px;
  font-family:var(--font-heading);
  font-size:41.6px;
  font-weight:600;
  line-height:1;
  letter-spacing:-0.832px;
}
.featured .price-amount{color:var(--gold-bright)}
.price-currency{font-size:22.4px;color:var(--text-muted)}
.featured .price-currency{color:var(--gold-bright);opacity:0.85}
.price-note{margin-bottom:18px;font-size:14.08px;line-height:1.6;color:var(--text-muted)}
.price-features{display:flex;flex-direction:column;gap:8px;margin:18px 0 26px;flex:1}
.price-features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:6px 0;
  font-size:14.72px;
  line-height:1.6;
  color:var(--text-soft);
}
.price-features svg{width:16px;height:16px;margin-top:3px;color:var(--gold-bright);flex-shrink:0}
.price-cta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding:13px 18px;
  font-size:14px;
  font-weight:600;
  line-height:1.6;
  background:var(--c-white-04);
  border:1px solid var(--c-white-06);
  border-radius:var(--r-pill);
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.price-cta:hover{
  color:#f4dfa3;
  background:rgba(219,189,89,0.1);
  border-color:rgba(214,179,66,0.36);
}
.featured .price-cta{
  color:var(--on-gold);
  background:linear-gradient(135deg, #ffe39b, #d4af37 50%, #8b6e2d);
  border-color:transparent;
  box-shadow:0 10px 24px -8px rgba(212,175,55,0.55);
}
.featured .price-cta:hover{transform:translateY(-1px);box-shadow:0 14px 30px -8px rgba(212,175,55,0.68)}
.pricing-foot{margin-top:48px;font-size:14.08px;line-height:1.6;text-align:center;color:var(--text-muted)}
.pricing-foot strong{font-weight:600;color:var(--gold-bright)}

/* ============ TRIAL ============ */
.trial-card{
  position:relative;
  overflow:hidden;
  padding:36px 22px;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(78,197,232,0.18), transparent 50%),
    linear-gradient(135deg, rgba(212,175,55,0.06), rgba(78,197,232,0.06));
  border:1px solid rgba(212,175,55,0.35);
  border-radius:var(--r-lg);
  box-shadow:0 30px 80px -20px rgba(0,0,0,0.7), 0 0 80px -20px rgba(212,175,55,0.3);
}
@media (min-width:780px){.trial-card{padding:56px 48px}}
.trial-inner{display:grid;grid-template-columns:1fr;gap:20px;align-items:center}
@media (min-width:780px){.trial-inner{grid-template-columns:1.2fr 1fr;gap:64px}}
.trial-content .eyebrow{margin-bottom:14px}
.trial-title{
  margin:18px 0 14px;
  font-family:var(--font-heading);
  font-size:24px;
  font-weight:600;
  line-height:1.05;
  letter-spacing:-0.48px;
}
@media (min-width:780px){
  .trial-title{font-size:44.8px;letter-spacing:-0.896px;margin:18px 0 18px}
}
.trial-desc{margin-bottom:32px;font-size:17.6px;line-height:1.6;color:var(--text-soft)}
.trial-list{display:flex;flex-direction:column;gap:14px;margin-bottom:36px}
.trial-list li{display:flex;align-items:center;gap:12px;font-size:15px}
.trial-list .check-circle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;height:28px;
  flex-shrink:0;
  color:var(--on-gold);
  background:linear-gradient(135deg, #ffe39b, #d4af37);
  border-radius:50%;
  box-shadow:0 0 0 1px rgba(212,175,55,0.4), 0 6px 18px -4px rgba(212,175,55,0.5);
}
.check-circle svg{width:14px;height:14px}
.trial-ctas{display:flex;flex-wrap:wrap;gap:14px}
.trial-badge,
.trial-badge::before,
.trial-badge::after,
.trial-clock-ring,
.trial-badge-wrap{
  animation:none !important;
  transform:none !important;
}
.trial-badge{
  display:flex;
  justify-content:center;
  align-items:center;
  aspect-ratio:1/1;
  width:100%;
  max-width:320px;
  margin:0 auto;
  background:radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  border-radius:50%;
  position:relative;
}
.trial-badge::before{
  content:"";
  position:absolute;
  inset:0;
  border:2px solid rgba(212,175,55,0.22);
  border-radius:50%;
}
.trial-badge::after{
  display:none;
}
.trial-clock-ring{display:none !important}
.trial-badge-inner{text-align:center;z-index:1;position:relative}
.badge-24h{
  font-family:var(--font-heading);
  font-size:88px;
  font-weight:600;
  line-height:1;
  letter-spacing:-3.52px;
  background:linear-gradient(180deg, #ffe39b, #d4af37);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.badge-label{
  margin-top:4px;
  font-size:14px;
  font-weight:600;
  letter-spacing:4.2px;
  text-transform:uppercase;
  color:var(--gold-bright);
}

/* ============ REVIEWS ============ */
.reviews-grid{display:grid;grid-template-columns:1fr;gap:14px}
@media (min-width:780px){.reviews-grid{grid-template-columns:repeat(3, 1fr);gap:24px}}
.review{
  position:relative;
  padding:20px 18px;
  background:linear-gradient(rgba(255,255,255,0.024), rgba(255,255,255,0.004));
  border:1px solid var(--c-white-06);
  border-radius:var(--r-md);
}
@media (min-width:780px){.review{padding:24px 22px}}
.review-stars{margin-bottom:18px;font-size:14px;line-height:1.4;letter-spacing:3px;color:var(--gold-bright)}
.review-text{margin:0 0 24px;line-height:1.65;color:var(--text-soft);position:relative}
.review-text::before{
  content:"\201C";
  display:block;
  font-size:48px;
  line-height:0.5;
  color:var(--gold);
  margin-bottom:8px;
}
.review-author{
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:18px;
  border-top:1px solid var(--c-white-06);
}
.avatar{
  display:flex;
  justify-content:center;
  align-items:center;
  width:42px;height:42px;
  flex-shrink:0;
  font-family:var(--font-heading);
  font-size:17.6px;
  font-weight:600;
  color:var(--gold-bright);
  background:linear-gradient(135deg, var(--c-gold-25), rgba(78,197,232,0.18));
  border:1px solid var(--c-gold-30);
  border-radius:50%;
}
.author-name{font-size:15.2px;font-weight:600;line-height:1.6}
.author-loc{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13.12px;
  line-height:1.6;
  color:var(--text-muted);
}

/* ============ FAQ ============ */
.faq-list{display:flex;flex-direction:column;gap:14px;max-width:820px;margin:0 auto}
.faq-item{
  overflow:hidden;
  background:linear-gradient(rgba(255,255,255,0.024), rgba(255,255,255,0.004));
  border:1px solid var(--c-white-06);
  border-radius:14px;
}
.faq-item[open]{border-color:rgba(212,175,55,0.25)}
.faq-summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  font-size:15.2px;
  font-weight:600;
  line-height:1.6;
  cursor:pointer;
  list-style:none;
  transition:color .2s ease;
}
@media (min-width:780px){.faq-summary{font-size:16.32px}}
.faq-summary::-webkit-details-marker{display:none}
.faq-summary:hover{color:#f4dd9d}
.faq-icon{
  display:flex;
  justify-content:center;
  align-items:center;
  width:28px;height:28px;
  flex-shrink:0;
  color:var(--gold-bright);
  border:1px solid var(--c-gold-18);
  border-radius:50%;
  transition:transform .25s ease, background .2s ease;
}
.faq-item[open] .faq-icon{transform:rotate(45deg);background:rgba(212,175,55,0.1)}
.faq-icon svg{width:14px;height:14px}
.faq-body{padding:0 22px 18px;font-size:14.4px;line-height:1.65;color:var(--text-muted)}
@media (min-width:780px){.faq-body{font-size:15.2px}}

/* ============ FINAL CTA ============ */
.final-cta{position:relative;overflow:hidden;text-align:center;padding:64px 0}
.final-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.1), transparent 60%),
    radial-gradient(ellipse at 80% 0%, rgba(78,197,232,0.1), transparent 60%);
  pointer-events:none;
}
.final-cta-inner{position:relative;z-index:1;max-width:1240px;margin:0 auto;padding:0 24px}
.final-cta-title{
  margin:0 0 18px;
  font-family:var(--font-heading);
  font-weight:600;
  font-size:35.2px;
  line-height:1.05;
  letter-spacing:-0.704px;
}
@media (min-width:780px){.final-cta-title{font-size:64px;letter-spacing:-1.28px}}
.final-cta-sub{max-width:640px;margin:0 auto 40px;font-size:18.4px;line-height:1.6;color:var(--text-soft)}
.final-cta-ctas{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin-bottom:24px}
.final-cta-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 22px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.78px;
  color:var(--gold-bright);
  background:rgba(212,175,55,0.08);
  border:1px solid var(--c-gold-30);
  border-radius:var(--r-pill);
}
.final-cta-pill .pulse-dot.gold{width:8px;height:8px}
.final-cta-divider{
  margin-top:36px;
  font-family:var(--font-heading);
  font-size:20.8px;
  line-height:1.6;
  letter-spacing:0.416px;
  color:var(--text-soft);
}

/* ============ FOOTER ============ */
.site-footer{
  position:relative;
  z-index:1;
  padding:32px 0 20px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
  border-top:1px solid var(--c-white-06);
}
.footer-grid{display:grid;grid-template-columns:1fr;gap:24px;margin-bottom:20px}
@media (min-width:780px){.footer-grid{grid-template-columns:2.3fr 1.2fr 1.4fr 1.2fr;gap:36px}}
.footer-brand .brand-logo{height:42px;margin-bottom:18px}
.footer-brand p{max-width:340px;margin:0 0 18px;font-size:14.72px;line-height:1.65;color:var(--text-muted)}
.footer-brand strong{font-weight:700;color:var(--text-soft)}
.footer-social{display:flex;flex-wrap:wrap;gap:14px}
.footer-pill{
  display:flex;
  align-items:center;
  gap:7px;
  padding:9px 16px;
  font-size:12px;
  font-weight:600;
  line-height:1.6;
  border-radius:var(--r-pill);
}
.footer-pill.green{color:#5de68f;background:rgba(37,211,102,0.12);border:1px solid rgba(37,211,102,0.3)}
.footer-pill.blue{color:#74dffb;background:rgba(116,223,251,0.10);border:1px solid rgba(116,223,251,0.30)}
.footer-pill.gold{color:var(--gold-bright);background:rgba(212,175,55,0.1);border:1px solid rgba(212,175,55,0.28)}
.footer-col h4{
  margin:0 0 18px;
  font-size:13px;
  font-weight:600;
  line-height:1.6;
  letter-spacing:2.34px;
  text-transform:uppercase;
  color:var(--gold-bright);
  font-family:var(--font-body);
}
.footer-col ul{display:flex;flex-direction:column;gap:10px}
.footer-col li{font-size:14.72px;line-height:1.6;color:var(--text-muted)}
.footer-col a{color:var(--text-muted);transition:color .2s ease}
.footer-col a:hover{color:var(--text-soft)}
.support-card{
  margin-top:20px;
  padding:14px;
  background:rgba(212,175,55,0.06);
  border:1px solid var(--c-gold-30);
  border-radius:10px;
}
.support-card-title{
  margin-bottom:8px;
  font-size:10px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:var(--gold-bright);
}
.support-card-hours{font-size:14.08px;line-height:1.6;color:var(--text-soft)}
.support-card-lang{font-size:13.12px;line-height:1.6;color:var(--text-muted)}
.footer-legal{
  max-width:900px;
  margin:0 auto 20px;
  padding:18px 0;
  text-align:center;
  font-size:12.48px;
  line-height:1.6;
  color:var(--text-dim);
  border-top:1px solid var(--c-white-06);
  border-bottom:1px solid var(--c-white-06);
}
.footer-legal a{color:var(--text-muted);text-decoration:underline}
.footer-meta{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding-top:20px;
  border-top:1px solid var(--c-white-06);
  font-size:13.12px;
  line-height:1.6;
  color:var(--text-dim);
}

/* ============ FLOATING ============ */
.floating-buttons{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:30;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.fab{
  display:flex;
  justify-content:center;
  align-items:center;
  width:56px;height:56px;
  color:#fff;
  border-radius:50%;
  transition:transform .2s ease, box-shadow .2s ease;
}
.fab svg{width:26px;height:26px}
.fab.whatsapp{background:linear-gradient(135deg, #25d366, #1da851);box-shadow:0 14px 30px -6px rgba(37,211,102,0.5)}
.fab.telegram{background:linear-gradient(135deg, #2aabee, #1d8ec5);box-shadow:0 14px 30px -6px rgba(42,171,238,0.5)}
.fab:hover{transform:scale(1.05) translateY(-2px)}

/* ============ MOBILE NAV ============ */
.scrim{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:70;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.scrim.open{opacity:1;pointer-events:auto}

.mobile-nav{
  position:fixed;
  top:0;right:0;
  width:320px;
  max-width:85vw;
  height:100vh;
  z-index:80;
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:80px 24px 40px;
  background:rgba(6,8,10,0.98);
  border-left:1px solid rgba(212,175,55,0.15);
  transform:translateX(100%);
  transition:transform .3s ease;
  overflow:auto;
}
.mobile-nav.open{transform:translateX(0)}
.mobile-nav-close{
  position:absolute;
  top:20px;right:20px;
  width:40px;height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  background:var(--c-white-04);
  border:1px solid var(--c-white-06);
  border-radius:10px;
}
.mobile-nav-close svg{width:18px;height:18px}
.mobile-nav-links{display:flex;flex-direction:column;gap:4px}
.mobile-nav-link{
  display:block;
  padding:13px 18px;
  font-weight:500;
  color:var(--text-soft);
  border:1px solid var(--c-white-06);
  border-radius:12px;
  transition:color .2s ease, background .2s ease, border-color .2s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link:active,
.mobile-nav-link.active{
  color:var(--gold-bright);
  background:rgba(212,175,55,0.05);
  border-color:rgba(212,175,55,0.2);
}
.mobile-nav-cta{
  margin-top:18px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#fff;
  background:linear-gradient(135deg, #25d366, #1da851);
  border-radius:var(--r-pill);
  font-weight:600;
  box-shadow:0 8px 24px -8px rgba(37,211,102,0.5);
}
.mobile-nav-cta svg{width:18px;height:18px}

/* Accessibility */
:focus-visible{outline:2px solid rgba(212,175,55,0.7);outline-offset:3px;border-radius:4px}

/* Animations */
@keyframes fadeUp{
  0%{opacity:0;transform:translateY(28px)}
  100%{opacity:1;transform:translateY(0)}
}
.fade-up{animation:fadeUp .8s ease both}
.fade-up-2{animation:fadeUp .8s ease .15s both}
.fade-up-3{animation:fadeUp .8s ease .3s both}
.fade-up-4{animation:fadeUp .8s ease .45s both}

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view{opacity:1;transform:translateY(0)}

/* Scroll progress */
.scroll-progress-track{
  position:fixed;
  top:0;left:0;right:0;
  height:3px;
  z-index:100;
  background:transparent;
  pointer-events:none;
}
.scroll-progress{
  height:100%;
  width:0;
  background:linear-gradient(90deg, #d4af37, #f4d47a, #74dffb, #d4af37);
  background-size:200% 100%;
  animation:gradientShift 4s linear infinite;
  box-shadow:0 0 12px rgba(212,175,55,0.7);
  transition:width .1s ease-out;
}
@keyframes gradientShift{to{background-position:200% 0}}

/* Header scrolled */
.site-header.scrolled{
  background:linear-gradient(rgba(5,7,8,0.98), rgba(5,7,8,0.92));
  box-shadow:0 4px 24px rgba(0,0,0,0.5);
  border-bottom-color:rgba(212,175,55,0.15);
}
.site-header.scrolled .brand-logo{height:36px}

/* Hamburger active */
.menu-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ============ STATS ============ */
.stats-section{position:relative;padding:64px 0;overflow:hidden}
.stats-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212,175,55,0.06), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(78,197,232,0.06), transparent 70%);
  pointer-events:none;
}
.stats-eyebrow-wrap{text-align:center;margin-bottom:36px}
.stats-grid{display:grid;grid-template-columns:repeat(2, 1fr);gap:16px;position:relative;z-index:1}
@media (min-width:780px){.stats-grid{grid-template-columns:repeat(4, 1fr);gap:24px}}
.stat-card{
  position:relative;
  text-align:center;
  padding:32px 20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border:1px solid var(--c-white-06);
  border-radius:20px;
  overflow:hidden;
  transition:transform .35s ease, border-color .35s ease;
}
.stat-card::before{
  content:"";
  position:absolute;
  top:-1px;left:-1px;right:-1px;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity:0;
  transition:opacity .35s ease;
}
.stat-card:hover{transform:translateY(-4px);border-color:rgba(212,175,55,0.3)}
.stat-card:hover::before{opacity:1}
.stat-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;height:48px;
  margin:0 auto 14px;
  color:var(--gold-bright);
  background:linear-gradient(135deg, rgba(212,175,55,0.18), rgba(78,197,232,0.12));
  border:1px solid var(--c-gold-25);
  border-radius:14px;
}
.stat-icon svg{width:24px;height:24px}
.stat-number{
  font-family:var(--font-heading);
  font-size:36px;
  font-weight:600;
  line-height:1;
  letter-spacing:-1.2px;
  background:linear-gradient(135deg, #ffe39b 0%, #d4af37 50%, #f4d47a 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:8px;
}
@media (min-width:780px){.stat-number{font-size:48px}}
.stat-plus{-webkit-text-fill-color:initial;color:var(--gold-bright);font-size:0.7em;margin-left:2px}
.stat-label{font-size:13px;font-weight:500;color:var(--text-soft);letter-spacing:0.5px;text-transform:uppercase}

/* ============ MOBILE STICKY CTA ============ */
.sticky-mobile-cta{
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:40;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:linear-gradient(180deg, transparent, rgba(5,7,8,0.95) 30%);
  pointer-events:none;
  transform:translateY(110%);
  transition:transform .4s cubic-bezier(0.16,1,0.3,1);
}
.sticky-mobile-cta.visible{transform:translateY(0);pointer-events:auto}
@media (min-width:780px){.sticky-mobile-cta{display:none}}
.sticky-cta-btn{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  max-width:420px;
  margin:0 auto;
  padding:16px 24px;
  color:var(--on-gold);
  font-weight:700;
  font-size:15px;
  background:linear-gradient(135deg, #ffe39b, #d4af37 50%, #8b6e2d);
  border-radius:var(--r-pill);
  box-shadow:0 14px 40px -10px rgba(212,175,55,0.7), inset 0 1px 0 0 rgba(255,255,255,0.4);
  overflow:hidden;
}
.sticky-cta-btn svg{width:18px;height:18px;flex-shrink:0;position:relative;z-index:1}
.sticky-cta-btn > span:last-child{position:relative;z-index:1}
.sticky-cta-pulse{
  position:absolute;
  top:50%;left:0;
  transform:translate(-100%, -50%);
  width:60%;height:200%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation:shimmer 3s ease-in-out infinite;
}
@keyframes shimmer{
  0%{transform:translate(-100%, -50%)}
  100%{transform:translate(250%, -50%)}
}
@media (max-width:779px){
  .sticky-mobile-cta.visible ~ .floating-buttons{transform:translateY(-72px)}
  .floating-buttons{transition:transform .4s cubic-bezier(0.16,1,0.3,1)}
}

/* ============ CONTACT PAGE ============ */
.page-hero{
  position:relative;
  padding:60px 0 40px;
  text-align:center;
  overflow:hidden;
}
@media (min-width:780px){.page-hero{padding:100px 0 60px}}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at center top, rgba(212,175,55,0.12), transparent 60%),
    radial-gradient(ellipse at 30% 60%, rgba(78,197,232,0.06), transparent 60%);
  pointer-events:none;
}
.page-hero-inner{position:relative;z-index:1;max-width:780px;margin:0 auto;padding:0 24px}
.page-hero h1{
  margin:14px 0 16px;
  font-family:var(--font-heading);
  font-size:36px;
  font-weight:600;
  line-height:1.1;
  letter-spacing:-0.72px;
}
@media (min-width:780px){.page-hero h1{font-size:56px;letter-spacing:-1.12px}}
.page-hero p{font-size:17px;line-height:1.6;color:var(--text-soft);margin:0 auto;max-width:640px}

.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
@media (min-width:780px){.contact-grid{grid-template-columns:repeat(3, 1fr);gap:24px}}
.contact-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:32px 24px;
  text-align:center;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.008));
  border:1px solid var(--c-white-06);
  border-radius:var(--r-md);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-card:hover{transform:translateY(-4px)}
.contact-card.email:hover{border-color:rgba(212,175,55,0.3);box-shadow:0 18px 50px -16px rgba(212,175,55,0.3)}
.contact-card.whatsapp:hover{border-color:rgba(37,211,102,0.35);box-shadow:0 18px 50px -16px rgba(37,211,102,0.3)}
.contact-card.telegram:hover{border-color:rgba(78,197,232,0.35);box-shadow:0 18px 50px -16px rgba(78,197,232,0.3)}
.contact-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:64px;height:64px;
  margin:0 auto 18px;
  border-radius:18px;
}
.contact-icon svg{width:28px;height:28px}
.contact-card.email .contact-icon{
  color:var(--gold-bright);
  background:linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.04));
  border:1px solid var(--c-gold-30);
}
.contact-card.whatsapp .contact-icon{
  color:#5de68f;
  background:linear-gradient(135deg, rgba(37,211,102,0.18), rgba(37,211,102,0.04));
  border:1px solid rgba(37,211,102,0.3);
}
.contact-card.telegram .contact-icon{
  color:var(--blue-bright);
  background:linear-gradient(135deg, rgba(78,197,232,0.2), rgba(78,197,232,0.04));
  border:1px solid rgba(78,197,232,0.3);
}
.contact-card h3{
  margin:0 0 8px;
  font-family:var(--font-heading);
  font-size:22px;
  font-weight:600;
  letter-spacing:-0.22px;
}
.contact-card p{
  margin:0 0 20px;
  font-size:14.5px;
  line-height:1.65;
  color:var(--text-muted);
  flex:1;
}
.contact-value{
  display:block;
  margin-bottom:18px;
  font-family:var(--font-heading);
  font-size:17px;
  font-weight:600;
  color:var(--text);
  word-break:break-word;
}
.contact-card .btn{width:100%}

/* Explore strip */
.explore-strip{
  margin-top:48px;
  padding:32px 24px;
  text-align:center;
  background:linear-gradient(180deg, rgba(255,255,255,0.024), transparent);
  border:1px solid var(--c-white-06);
  border-radius:var(--r-md);
}
.explore-strip h4{
  margin:0 0 14px;
  font-family:var(--font-heading);
  font-size:20px;
  font-weight:600;
}
.explore-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.explore-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 16px;
  font-size:13.5px;
  font-weight:600;
  color:var(--text-soft);
  background:var(--c-white-04);
  border:1px solid var(--c-gold-18);
  border-radius:var(--r-pill);
  transition:all .2s ease;
}
.explore-link:hover{
  color:var(--gold-bright);
  border-color:rgba(212,175,55,0.45);
  background:rgba(212,175,55,0.06);
  transform:translateY(-1px);
}

/* ============ CHANNEL LIST PAGE ============ */
.what-included{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-bottom:40px;
}
@media (min-width:780px){.what-included{grid-template-columns:repeat(3, 1fr);gap:20px}}
.included-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 20px;
  background:linear-gradient(rgba(255,255,255,0.024), rgba(255,255,255,0.004));
  border:1px solid var(--c-white-06);
  border-radius:var(--r-md);
}
.included-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;height:44px;
  flex-shrink:0;
  color:var(--gold-bright);
  background:linear-gradient(135deg, rgba(212,175,55,0.18), rgba(78,197,232,0.1));
  border:1px solid var(--c-gold-25);
  border-radius:12px;
}
.included-icon svg{width:22px;height:22px}
.included-body h4{
  margin:0 0 4px;
  font-family:var(--font-heading);
  font-size:16.5px;
  font-weight:600;
}
.included-body p{margin:0;font-size:13.5px;color:var(--text-muted);line-height:1.5}

.category-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:32px 0;
}
.category-tab{
  padding:10px 18px;
  font-size:13px;
  font-weight:600;
  color:var(--text-soft);
  background:var(--c-white-04);
  border:1px solid var(--c-white-06);
  border-radius:var(--r-pill);
  cursor:pointer;
  transition:all .2s ease;
}
.category-tab:hover{color:var(--gold-bright);border-color:rgba(212,175,55,0.3)}
.category-tab.active{
  color:var(--on-gold);
  background:linear-gradient(135deg, #ffe39b, #d4af37);
  border-color:transparent;
  box-shadow:0 8px 24px -10px rgba(212,175,55,0.6);
}

.channel-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(160px, 1fr));
  gap:12px;
}
.channel-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:18px 16px;
  background:linear-gradient(rgba(255,255,255,0.024), rgba(255,255,255,0.004));
  border:1px solid var(--c-white-06);
  border-radius:14px;
  transition:transform .25s ease, border-color .25s ease;
  text-align:center;
}
.channel-card:hover{transform:translateY(-2px);border-color:rgba(212,175,55,0.3)}
.channel-flag{font-size:22px;line-height:1}
.channel-name{font-family:var(--font-heading);font-size:15px;font-weight:600;line-height:1.3}
.channel-region{
  display:inline-block;
  margin:0 auto;
  padding:3px 10px;
  font-size:10px;
  font-weight:700;
  letter-spacing:1.3px;
  text-transform:uppercase;
  color:var(--gold-bright);
  background:rgba(212,175,55,0.08);
  border:1px solid var(--c-gold-25);
  border-radius:var(--r-pill);
}

/* ============ SETUP GUIDE PAGE ============ */
.setup-section{
  position:relative;
  padding:36px 28px;
  margin-bottom:28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.024), rgba(255,255,255,0.004));
  border:1px solid var(--c-white-06);
  border-radius:var(--r-lg);
}
.setup-section-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
  padding-bottom:20px;
  border-bottom:1px solid var(--c-white-06);
}
.setup-section-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;height:52px;
  flex-shrink:0;
  color:var(--gold-bright);
  background:linear-gradient(135deg, rgba(212,175,55,0.2), rgba(78,197,232,0.1));
  border:1px solid var(--c-gold-30);
  border-radius:14px;
}
.setup-section-icon svg{width:26px;height:26px}
.setup-section-head h2{
  margin:0;
  font-family:var(--font-heading);
  font-size:24px;
  font-weight:600;
  letter-spacing:-0.48px;
}
@media (min-width:780px){.setup-section-head h2{font-size:30px;letter-spacing:-0.6px}}
.setup-steps{
  display:flex;
  flex-direction:column;
  gap:16px;
  counter-reset:step;
}
.setup-step{
  position:relative;
  padding:18px 18px 18px 64px;
  background:var(--c-white-02);
  border:1px solid var(--c-white-06);
  border-radius:14px;
}
.setup-step::before{
  content:counter(step);
  counter-increment:step;
  position:absolute;
  top:18px;left:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;height:32px;
  font-family:var(--font-heading);
  font-size:15px;
  font-weight:700;
  color:var(--on-gold);
  background:linear-gradient(135deg, #ffe39b, #d4af37);
  border-radius:50%;
  box-shadow:0 6px 18px -4px rgba(212,175,55,0.5);
}
.setup-step h4{
  margin:0 0 6px;
  font-family:var(--font-heading);
  font-size:16.5px;
  font-weight:600;
}
.setup-step p{margin:0;font-size:14.5px;line-height:1.65;color:var(--text-muted)}
.setup-step code,
.setup-step pre{
  display:block;
  margin-top:10px;
  padding:12px 14px;
  font-family:'Courier New', monospace;
  font-size:13px;
  line-height:1.5;
  color:var(--gold-bright);
  background:var(--bg-2);
  border:1px solid var(--c-gold-18);
  border-radius:10px;
  overflow-x:auto;
  white-space:pre-wrap;
  word-break:break-all;
}

/* ============ BLOG ============ */
.blog-empty{
  margin:40px auto 0;
  max-width:640px;
  padding:48px 32px;
  text-align:center;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.024), rgba(255,255,255,0.004));
  border:1px solid var(--c-gold-25);
  border-radius:var(--r-lg);
}
.blog-empty-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:72px;height:72px;
  margin:0 auto 20px;
  color:var(--gold-bright);
  background:linear-gradient(135deg, rgba(212,175,55,0.2), rgba(78,197,232,0.1));
  border:1px solid var(--c-gold-30);
  border-radius:20px;
}
.blog-empty-icon svg{width:36px;height:36px}
.blog-empty h2{
  margin:0 0 10px;
  font-family:var(--font-heading);
  font-size:26px;
  font-weight:600;
  letter-spacing:-0.5px;
}
@media (min-width:780px){.blog-empty h2{font-size:34px}}
.blog-empty p{margin:0 0 24px;color:var(--text-muted);line-height:1.65;font-size:15.5px}

.blog-article{
  max-width:760px;
  margin:0 auto;
  padding:0 24px;
  line-height:1.7;
  color:var(--text-soft);
}
.blog-article h1, .blog-article h2, .blog-article h3{
  font-family:var(--font-heading);
  color:var(--text);
  font-weight:600;
  letter-spacing:-0.4px;
}
.blog-article h1{margin:0 0 16px;font-size:34px;line-height:1.15}
.blog-article h2{margin:32px 0 12px;font-size:24px}
.blog-article h3{margin:24px 0 10px;font-size:19px}
.blog-article p{margin:0 0 16px;font-size:16.5px}
.blog-article a:not(.btn){color:var(--gold-bright);text-decoration:underline;text-decoration-color:rgba(212,175,55,0.4)}
.blog-article a:not(.btn):hover{text-decoration-color:var(--gold)}
.blog-article .btn{text-decoration:none}
.blog-article ul, .blog-article ol{margin:0 0 18px;padding-left:22px}
.blog-article li{margin-bottom:6px;list-style:disc}
.blog-article blockquote{
  margin:24px 0;
  padding:18px 22px;
  border-left:3px solid var(--gold);
  background:var(--c-gold-06);
  border-radius:6px;
  color:var(--text-soft);
  font-style:italic;
}
.blog-main{padding:120px 0 80px}

.legal-doc{
  max-width:760px;
  margin:0 auto;
  color:var(--text-soft);
  font-size:16px;
  line-height:1.75;
}
.legal-doc h2{
  font-family:var(--font-heading);
  font-weight:700;
  font-size:22px;
  margin:32px 0 10px;
  color:var(--text);
}
.legal-doc p{margin:0 0 14px}
.legal-doc ul{margin:0 0 18px;padding-left:22px}
.legal-doc li{margin-bottom:8px;list-style:disc}
.legal-doc a:not(.btn){color:var(--gold-bright);text-decoration:underline;text-decoration-color:rgba(212,175,55,0.4)}
.legal-doc a:not(.btn):hover{text-decoration-color:var(--gold)}
.legal-doc .btn{text-decoration:none}
.legal-doc strong{color:var(--text)}
.legal-updated{
  display:inline-block;
  padding:6px 12px;
  border:1px solid var(--c-line);
  border-radius:999px;
  font-size:13px;
  color:var(--text-mute);
  margin-bottom:24px;
}

/* ============ BLOG LISTING ============ */
.blog-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  max-width:1180px;
  margin:0 auto;
}
@media (min-width:780px){.blog-grid{grid-template-columns:repeat(2, minmax(0, 1fr));gap:26px}}
@media (min-width:1100px){.blog-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}}

.blog-card{
  display:flex;flex-direction:column;
  text-decoration:none;color:inherit;
  background:linear-gradient(180deg, rgba(212,175,55,0.04), rgba(255,255,255,0.015));
  border:1px solid var(--c-line);
  border-radius:20px;
  overflow:hidden;
  transition:transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s, background 0.35s;
}
.blog-card:hover{
  transform:translateY(-4px);
  border-color:rgba(212,175,55,0.45);
  box-shadow:0 22px 50px -24px rgba(212,175,55,0.5);
  background:linear-gradient(180deg, rgba(212,175,55,0.07), rgba(255,255,255,0.02));
}
.blog-card-image{
  aspect-ratio:16 / 9;
  background:linear-gradient(135deg, rgba(212,175,55,0.18), rgba(78,197,232,0.12));
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--c-line);
}
.blog-card-body{display:flex;flex-direction:column;flex:1;padding:24px 22px}
.blog-card-meta{
  display:flex;flex-wrap:wrap;align-items:center;gap:8px;
  color:var(--text-mute);font-size:12px;letter-spacing:0.6px;text-transform:uppercase;
  margin-bottom:12px;
}
.blog-card-cat{color:var(--gold-bright);font-weight:700}
.blog-card-dot{opacity:0.45}
.blog-card-title{
  font-family:var(--font-heading);font-weight:700;font-size:22px;line-height:1.22;
  margin:0 0 10px;color:var(--text);
}
.blog-card-excerpt{margin:0 0 16px;color:var(--text-soft);font-size:15px;line-height:1.55;flex:1}
.blog-card-cta{display:inline-flex;align-items:center;gap:8px;color:var(--gold-bright);font-weight:600;font-size:14px;letter-spacing:0.3px;margin-top:auto}
.blog-card-cta svg{width:18px;height:18px;transition:transform 0.3s var(--ease-out)}
.blog-card:hover .blog-card-cta svg{transform:translateX(4px)}

.blog-status{
  grid-column:1 / -1;
  text-align:center;
  padding:60px 20px;
  color:var(--text-mute);
  font-size:15px;
}

.blog-soon{
  text-align:center;
  border:1px dashed rgba(212,175,55,0.28);
  border-radius:18px;
  padding:32px 24px;
  background:rgba(255,255,255,0.015);
  max-width:760px;margin-left:auto;margin-right:auto;
}
.blog-soon h3{font-family:var(--font-heading);font-weight:700;font-size:20px;margin:0 0 8px;color:var(--text)}
.blog-soon p{margin:0 auto 18px;max-width:520px;color:var(--text-soft);font-size:15px}

html[dir="rtl"] .blog-card-cta svg{transform:scaleX(-1)}
html[dir="rtl"] .blog-card:hover .blog-card-cta svg{transform:scaleX(-1) translateX(4px)}

/* ============ POST PAGE (single article) ============ */
.post-page{padding:120px 0 80px}
.post-shell{
  max-width:780px;
  margin:0 auto;
  padding:0 24px;
  color:var(--text-soft);
}
.post-back{
  display:inline-flex;align-items:center;gap:8px;
  margin-bottom:28px;
  color:var(--text-mute);
  font-weight:600;font-size:14px;text-decoration:none;
  transition:color 0.2s;
}
.post-back svg{width:16px;height:16px}
.post-back:hover{color:var(--gold-bright)}
html[dir="rtl"] .post-back svg{transform:scaleX(-1)}

.post-header{text-align:center;margin-bottom:36px}
.post-meta{
  display:inline-flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:14px;
  font-size:11.5px;letter-spacing:1.2px;text-transform:uppercase;font-weight:700;
  color:var(--text-mute);margin-bottom:18px;
}
.post-meta-tag{color:var(--gold-bright)}
.post-meta > span:not(.post-meta-tag){position:relative}
.post-meta > span:not(:last-child)::after{
  content:"·";margin-left:14px;color:rgba(255,255,255,0.25);
}
html[dir="rtl"] .post-meta > span:not(:last-child)::after{margin-left:0;margin-right:14px}

.post-title{
  font-family:var(--font-heading);font-weight:700;
  font-size:34px;line-height:1.12;letter-spacing:-0.8px;
  margin:0 0 14px;color:var(--text);
}
@media (min-width:780px){.post-title{font-size:48px;letter-spacing:-1.2px}}
.post-lead{
  font-size:17px;line-height:1.7;
  color:var(--text-soft);
  max-width:640px;margin:0 auto;
}

.post-cover{
  margin:32px auto 40px;
  max-width:880px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--c-line);
  box-shadow:0 30px 70px -30px rgba(0,0,0,0.6);
}
.post-cover img{width:100%;display:block;height:auto}

.post-body{
  color:var(--text-soft);
  font-size:16.5px;line-height:1.75;
}
.post-body h2{
  font-family:var(--font-heading);font-weight:700;
  font-size:24px;letter-spacing:-0.3px;
  margin:36px 0 12px;color:var(--text);
}
.post-body h3{font-family:var(--font-heading);font-weight:700;font-size:19px;margin:28px 0 10px;color:var(--text)}
.post-body p{margin:0 0 16px}
.post-body ul, .post-body ol{margin:0 0 18px;padding-left:22px}
.post-body li{margin-bottom:8px;list-style:disc}
.post-body ol li{list-style:decimal}
.post-body a:not(.btn){color:var(--gold-bright);text-decoration:underline;text-decoration-color:rgba(212,175,55,0.4)}
.post-body a:not(.btn):hover{text-decoration-color:var(--gold)}
.post-body strong{color:var(--text)}
.post-body em{color:var(--text-soft)}
.post-body code{
  background:rgba(255,255,255,0.07);
  padding:2px 7px;border-radius:6px;
  font-size:0.92em;font-family:'SFMono-Regular',Consolas,Monaco,monospace;
  color:#aeebff;
}
.post-body blockquote{
  margin:24px 0;
  padding:18px 22px;
  border-left:3px solid var(--gold);
  background:var(--c-gold-06);
  border-radius:6px;
  color:var(--text-soft);
  font-style:italic;
}
html[dir="rtl"] .post-body blockquote{border-left:none;border-right:3px solid var(--gold)}

.post-figure{margin:30px 0}
.post-figure img{
  width:100%;display:block;height:auto;
  border-radius:18px;
  border:1px solid var(--c-line);
}
.post-figure figcaption{
  text-align:center;
  font-size:13.5px;
  color:var(--text-mute);
  margin-top:10px;
}

.post-cta-row{
  display:flex;flex-wrap:wrap;gap:12px;
  margin-top:36px;padding-top:28px;
  border-top:1px solid var(--c-line);
}
.post-cta-row .btn{text-decoration:none}

/* ============ RTL SUPPORT ============ */
html[dir="rtl"] body{font-family:'Manrope', 'Segoe UI', Tahoma, sans-serif}
html[dir="rtl"] .benefit{justify-content:flex-start}
@media (min-width:780px){html[dir="rtl"] .benefit{justify-content:center}}
html[dir="rtl"] .review-text::before{content:"\201E"}
html[dir="rtl"] .floating-buttons{right:auto;left:20px}
html[dir="rtl"] .lang-panel{right:auto;left:-10px}
html[dir="rtl"] .mobile-nav{
  right:auto;
  left:0;
  border-left:none;
  border-right:1px solid rgba(212,175,55,0.15);
  transform:translateX(-100%);
}
html[dir="rtl"] .mobile-nav.open{transform:translateX(0)}
html[dir="rtl"] .mobile-nav-close{right:auto;left:20px}
html[dir="rtl"] .badge-popular{left:50%}
html[dir="rtl"] .lang-caret{margin-right:auto}
html[dir="rtl"] .author-loc,
html[dir="rtl"] .price-features li,
html[dir="rtl"] .trial-list li,
html[dir="rtl"] .stats-grid,
html[dir="rtl"] .nav-links{direction:rtl}
html[dir="rtl"] .lang-option{text-align:right}
html[dir="rtl"] .footer-grid{direction:rtl}
html[dir="rtl"] .setup-step{padding:18px 64px 18px 18px}
html[dir="rtl"] .setup-step::before{left:auto;right:18px}

/* Arabic font tweaks */
html[lang="ar"] .hero-title,
html[lang="ar"] .section-title,
html[lang="ar"] .trial-title,
html[lang="ar"] .final-cta-title,
html[lang="ar"] .page-hero h1{
  font-family:'Cairo','Tahoma',sans-serif;
  line-height:1.3;
}
html[lang="ar"] .badge-24h{font-family:'Manrope',sans-serif;letter-spacing:0}

/* Reduce-motion */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .reveal{opacity:1;transform:none}
}

::selection{background:rgba(212,175,55,0.4);color:#fff}

@media (min-width:780px){
  ::-webkit-scrollbar{width:10px;height:10px}
  ::-webkit-scrollbar-track{background:#080a0e}
  ::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg, #d4af37, #8b6e2d);
    border-radius:5px;
    border:2px solid #080a0e;
  }
  ::-webkit-scrollbar-thumb:hover{background:linear-gradient(180deg, #f4d47a, #d4af37)}
}
