/* ─────────────────────────────────────────
   IPTV Store — style.css
   ───────────────────────────────────────── */

/* ── RESET & TOKENS ── */

/* Product modal on homepage — wider for IPTV description */
#prod-modal-overlay .modal {
  max-width: 1000px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #090e1a;
  --bg-alt:   #0d1427;
  --surface:  #111827;
  --surface2: #1a2236;
  --border:   rgba(255,255,255,.07);

  --teal:     #00d4aa;
  --teal-d:   #00a880;
  --purple:   #7c3aed;
  --purple-d: #5b21b6;
  --yellow:   #f59e0b;
  --red:      #ef4444;

  --text:     #f1f5f9;
  --text-2:   #94a3b8;
  --text-3:   #64748b;

  --radius:   16px;
  --radius-sm:10px;
  --shadow:   0 8px 32px rgba(0,0,0,.45);
  --shadow-glow: 0 0 40px rgba(0,212,170,.15);

  --trans: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ── SVG Inline Emoji Icons (replaces emoji chars) ── */
.icon-emoji {
  display: inline;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 99px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #00a880);
  color: #090e1a;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,170,.4);
  background: linear-gradient(135deg, #1fffc0, var(--teal));
}
.btn-outline {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover {
  background: var(--teal);
  color: #090e1a;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: background var(--trans), backdrop-filter var(--trans), border-color var(--trans);
}
.header.scrolled {
  background: rgba(9,14,26,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.5px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.logo-icon { font-size: 1.8rem; }
.logo-accent { color: var(--teal); }

.nav {
  display: flex;
  gap: .25rem;
}
.nav-link {
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--trans);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,.08);
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(9,14,26,.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 5rem;
  opacity: 0;
  transition: opacity var(--trans);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--trans);
}
.mobile-link:hover { color: var(--teal); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(9,14,26,.95) 0%, rgba(9,14,26,.55) 60%, rgba(0,212,170,.05) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(124,58,237,.15) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* LEFT */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,212,170,.12);
  border: 1px solid rgba(0,212,170,.3);
  color: var(--teal);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}

.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  animation: fadeUp .6s .1s ease both;
}
.hero-accent {
  background: linear-gradient(135deg, var(--teal), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeUp .6s .2s ease both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeUp .6s .3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeUp .6s .4s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #eab308;
}
.stat-label {
  font-size: .78rem;
  color: var(--text-3);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* RIGHT – Products Panel */
.hero-right {
  animation: fadeRight .7s .2s ease both;
}

.products-panel {
  position: relative;
  background: rgba(8,14,30,.65);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(0,212,170,.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.03);
  overflow: hidden;
}
.products-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle,rgba(0,212,170,.06),transparent 70%);
  pointer-events: none;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.panel-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.panel-title::before {
  content: "";
  width: 3px;
  height: 16px;
  background: linear-gradient(180deg,#00d4aa,#7c3aed);
  border-radius: 2px;
}
.panel-search {
  position: relative;
  flex: 1;
  min-width: 140px;
}
.panel-search input {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50px;
  padding: .5rem 1.8rem .5rem .9rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  outline: none;
  transition: all .35s ease;
}
.panel-search input:focus { border-color: rgba(0,212,170,.2); background: rgba(0,212,170,.04); }
.panel-search input::placeholder { color: rgba(255,255,255,.18); }
.search-icon {
  position: absolute;
  right: .65rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .75rem;
  pointer-events: none;
  color: #eab308;
  opacity: .6;
}

.panel-products { display: flex; flex-direction: column; gap: .75rem; }

/* ── Premium Gateway Cards ── */
.p-card {
  position: relative;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: var(--cat-bg, rgba(255,255,255,.02));
  border: 1px solid hsla(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%),.08);
  transition: all .4s cubic-bezier(.23,1,.32,1);
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.p-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, hsla(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%),.03), transparent 60%);
  pointer-events: none;
}
.p-card-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: hsla(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%),.06);
  filter: blur(30px);
  transition: all .6s ease;
  pointer-events: none;
}
.p-card:hover .p-card-glow {
  width: 180px;
  height: 180px;
  background: hsla(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%),.12);
}
.p-card:hover {
  border-color: hsla(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%),.2);
  transform: translateX(6px) scale(1.015);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.p-card-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.p-card-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.p-card-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
.p-card-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  font-size: .8rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}
.p-card-info { flex: 1; min-width: 0; }
.p-card-name {
  font-size: .88rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .2rem;
}
.p-card-desc {
  font-size: .73rem;
  color: rgba(255,255,255,.4);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-card-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .7rem;
  font-size: .75rem;
  font-weight: 700;
  color: hsl(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%));
  transition: all .35s ease;
  pointer-events: none;
}
.p-card-btn span { border-bottom: 1px solid transparent; transition: border-color .3s; }
.p-card:hover .p-card-btn span { border-bottom-color: hsl(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%)); }
.p-card-arrow {
  width: 14px;
  height: 14px;
  transition: transform .35s ease;
}
.p-card:hover .p-card-arrow { transform: translateX(4px); }

/* ── Search Results ── */
.p-result {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: hsla(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%),.04);
  border: 1px solid hsla(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%),.08);
  text-decoration: none;
  transition: all .3s ease;
}
.p-result:hover {
  background: hsla(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%),.08);
  transform: translateX(4px);
}
.p-result-badge {
  font-size: .7rem;
  font-weight: 700;
  color: hsl(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%));
  white-space: nowrap;
}
.p-result-name {
  flex: 1;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.p-result-arrow {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.p-result:hover .p-result-arrow { color: hsl(var(--cat-h,170),var(--cat-s,70%),var(--cat-l,55%)); }

.panel-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255,255,255,.3);
  font-size: .82rem;
}
.btn-buy {
  background: var(--yellow);
  color: #1a1a1a;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 0 10px rgba(251,191,36,.2);
}
.btn-buy:hover {
  background: #fbbf24;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(251,191,36,.5), 0 0 40px rgba(251,191,36,.15);
}

/* Scroll indicator */

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0,212,170,.1);
  border: 1px solid rgba(0,212,170,.25);
  color: var(--teal);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.accent {
  background: linear-gradient(135deg, var(--teal), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  margin: -0.5rem 0 2rem;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-cta {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: rgba(9,14,26,.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,212,170,.15);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,212,170,.08), 0 0 80px rgba(0,212,170,.04), inset 0 1px 0 rgba(0,212,170,.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(0,212,170,.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(124,58,237,.04) 0%, transparent 50%);
  pointer-events: none;
}
.section-cta p {
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(0,212,170,.15);
  flex: 1;
}
.section-cta p strong {
  color: var(--teal);
  font-weight: 700;
}
.section-cta .btn-lg {
  padding: .9rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0,212,170,.2), 0 0 30px rgba(0,212,170,.08);
}
.section-cta .btn-lg:hover {
  background: var(--teal);
  color: #090e1a;
  box-shadow: 0 0 25px rgba(0,212,170,.5), 0 0 50px rgba(0,212,170,.25), 0 0 80px rgba(0,212,170,.1);
  transform: scale(1.03);
}

/* Satellite CTA variant — purple glow */
#sat-cta {
  border-color: rgba(124,58,237,.2);
  box-shadow: 0 0 40px rgba(124,58,237,.08), 0 0 80px rgba(124,58,237,.04), inset 0 1px 0 rgba(124,58,237,.1);
}
#sat-cta::before {
  background: radial-gradient(circle at 30% 40%, rgba(124,58,237,.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(59,130,246,.04) 0%, transparent 50%) !important;
}
#sat-cta .btn-lg {
  border-color: #a78bfa;
  color: #a78bfa;
  box-shadow: 0 0 15px rgba(124,58,237,.2), 0 0 30px rgba(124,58,237,.08);
}
#sat-cta .btn-lg:hover {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 0 25px rgba(124,58,237,.5), 0 0 50px rgba(124,58,237,.25), 0 0 80px rgba(124,58,237,.1);
}
#sat-cta .btn-lg:hover {
  box-shadow: 0 8px 32px rgba(124,58,237,.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .section-cta { flex-direction: column; text-align: center; padding: 1.5rem; }
  .section-cta p { text-align: center; }
}
.section-desc {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── HERO STRIP (Image + Texte) ── */
.hero-strip {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin: -1.5rem 0 4rem;
  padding: 10px 0 10px 10px;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid rgba(0,212,170,.12);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(0,212,170,.06), 0 20px 60px rgba(0,0,0,.3);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all .3s ease;
}
.hero-strip:hover {
  border-color: rgba(0,212,170,.3);
  box-shadow: 0 0 0 1px rgba(0,212,170,.15), 0 24px 70px rgba(0,0,0,.4);
}
.hero-strip-img {
  flex: 0 0 340px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.hero-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.hero-strip:hover .hero-strip-img img {
  transform: scale(1.04);
}
.hero-strip-text {
  flex: 1;
  padding: 2rem 2rem 2rem 0;
}
.hero-strip-text h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.hero-strip-badge {
  display: inline-flex;
  background: rgba(0,212,170,.12);
  border: 1px solid rgba(0,212,170,.25);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-strip-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.5rem;
}
.hero-strip-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}
.hsl-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,170,.12);
  border-radius: 8px;
  font-size: .85rem;
  flex-shrink: 0;
}
.hero-strip-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: .01em;
}
.hero-strip-link-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--teal);
  font-size: .9rem;
  font-weight: 700;
  transition: gap .3s ease;
}
.hero-strip:hover .hero-strip-link-btn {
  gap: .7rem;
}
@media (max-width: 820px) {
  .hero-strip { flex-direction: column; gap: 0; padding: 10px 0 0 10px; }
  .hero-strip-img { flex: none; width: calc(100% - 10px); min-height: 200px; }
  .hero-strip-text { padding: 1rem 1.5rem 1.5rem; }
  .hero-strip-list { gap: .5rem; }
  .hero-strip-list li { font-size: .88rem; }
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow), 0 0 32px rgba(0,212,170,.12);
  border-color: rgba(0,212,170,.3);
}
.product-card.featured {
  border-color: rgba(0,212,170,.4);
  box-shadow: 0 0 0 1px rgba(0,212,170,.2), var(--shadow);
  background: linear-gradient(160deg, rgba(0,212,170,.06), var(--surface));
}
.product-card.featured:hover {
  box-shadow: 0 12px 40px rgba(0,212,170,.25), 0 0 0 1px rgba(0,212,170,.4);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.4);
  color: var(--yellow);
  font-size: .73rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 50px;
}
.card-badge.best {
  background: rgba(0,212,170,.15);
  border-color: rgba(0,212,170,.4);
  color: var(--teal);
}
.card-badge.pro {
  background: rgba(124,58,237,.18);
  border-color: rgba(124,58,237,.4);
  color: #a78bfa;
}

.card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .card-img { transform: scale(1.06); }

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
  margin-bottom: 1.5rem;
}
.card-features li {
  font-size: .88rem;
  color: var(--text-2);
  padding: .3rem 0;
  border-bottom: 1px solid var(--border);
}
.card-tag {
  background: rgba(0,212,170,.1);
  border: 1px solid rgba(0,212,170,.2);
  color: var(--teal);
  font-size: .68rem;
  font-weight: 600;
  padding: .15rem .5rem;
  border-radius: 50px;
  white-space: nowrap;
}
.card-tag.m3u {
  background: rgba(124,58,237,.1);
  border-color: rgba(124,58,237,.25);
  color: #a78bfa;
}
.card-tag.dur {
  background: rgba(148,163,184,.1);
  border-color: rgba(148,163,184,.2);
  color: var(--text-2);
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.price-block { display: flex; align-items: baseline; gap: .2rem; }
.price-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal);
}
.price-period {
  font-size: .8rem;
  color: var(--text-3);
  font-weight: 500;
}
.card-btn {
  padding: .65rem 1.4rem !important;
  font-size: .88rem !important;
}

/* ══════════════════════════════════════
   WHY US — Graphic Cards
══════════════════════════════════════ */
.why-us {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #080e1f 0%, #0c1528 50%, #080e1f 100%);
  border-top: 1px solid rgba(0,212,170,.06);
  border-bottom: 1px solid rgba(0,212,170,.06);
  overflow: hidden;
}
.why-bg-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: .15;
  animation: whyOrb 8s ease-in-out infinite alternate;
}
.why-bg-orb-1 {
  top: -30%;
  left: -10%;
  background: radial-gradient(circle, #00d4aa, transparent);
}
.why-bg-orb-2 {
  bottom: -30%;
  right: -10%;
  background: radial-gradient(circle, #7c3aed, transparent);
  animation-delay: -4s;
}
@keyframes whyOrb {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,-40px) scale(1.2); }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.why-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
  transition: all .5s cubic-bezier(.23,1,.32,1);
  cursor: default;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, hsla(var(--card-hue,170),70%,60%,.06) 0%, transparent 60%);
  pointer-events: none;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, hsla(var(--card-hue,170),70%,60%,.12), transparent 50%, hsla(var(--card-hue,170),70%,60%,.04));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
}
.why-card:hover::after { opacity: 1; }

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255,255,255,.05);
  border-color: hsla(var(--card-hue,170),70%,60%,.15);
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 48px hsla(var(--card-hue,170),70%,60%,.06);
}

.why-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: hsla(var(--card-hue,170),70%,60%,.04);
  transform: translate(-50%,-50%);
  filter: blur(40px);
  transition: all .6s ease;
  pointer-events: none;
}
.why-card:hover .why-card-glow {
  width: 300px;
  height: 300px;
  background: hsla(var(--card-hue,170),70%,60%,.1);
}

.why-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: .3;
}
.why-card-pattern {
  width: 180px;
  height: 180px;
  color: hsl(var(--card-hue,170),70%,60%);
}

.why-card-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, hsla(var(--card-hue,170),70%,60%,.12), hsla(var(--card-hue,170),70%,60%,.03));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--card-hue,170),70%,60%);
  box-shadow: 0 4px 20px hsla(var(--card-hue,170),70%,60%,.08);
  transition: all .5s ease;
}
.why-card-icon svg {
  width: 26px;
  height: 26px;
  transition: transform .4s ease;
}
.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, hsla(var(--card-hue,170),70%,60%,.2), hsla(var(--card-hue,170),70%,60%,.06));
  box-shadow: 0 8px 32px hsla(var(--card-hue,170),70%,60%,.15);
  transform: scale(1.08);
}
.why-card:hover .why-card-icon svg {
  transform: scale(1.12) rotate(-6deg);
}

.why-card h4 {
  position: relative;
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: #fff;
  letter-spacing: -.01em;
}
.why-card p {
  position: relative;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
  max-width: 200px;
  margin: 0 auto;
}

.why-card-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.5rem;
}
.why-card-num {
  font-size: .7rem;
  font-weight: 700;
  color: hsla(var(--card-hue,170),70%,60%,.35);
  letter-spacing: .04em;
  font-family: 'Outfit', monospace;
}
.why-card-bar {
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: hsla(var(--card-hue,170),70%,60%,.15);
  position: relative;
  overflow: hidden;
}
.why-card-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: hsl(var(--card-hue,170),70%,60%);
  transition: width .6s cubic-bezier(.23,1,.32,1);
}
.why-card:hover .why-card-bar::after {
  width: 100%;
}

/* ══════════════════════════════════════
   CONTACT — Premium Redesign
══════════════════════════════════════ */
#contact {
  position: relative;
  overflow: hidden;
}
.contact-bg-glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,rgba(0,212,170,.08) 0%,transparent 70%);
  pointer-events: none;
  animation: contactGlow 6s ease-in-out infinite alternate;
}
@keyframes contactGlow {
  0% { opacity: .4; transform: translate(0,0) scale(1); }
  100% { opacity: 1; transform: translate(-40px,30px) scale(1.15); }
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Form ── */
.contact-form {
  position: relative;
  background: rgba(13,20,40,.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,212,170,.15);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.contact-form-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%,transparent,rgba(0,212,170,.04),transparent,rgba(0,212,170,.04),transparent);
  animation: formGlowRotate 10s linear infinite;
  pointer-events: none;
}
@keyframes formGlowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  outline: none;
  transition: all .35s ease;
  width: 100%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.2);
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(0,212,170,.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(0,212,170,.06);
  box-shadow: 0 0 0 3px rgba(0,212,170,.1), inset 0 2px 4px rgba(0,0,0,.2);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.3);
  font-size: .8rem;
  pointer-events: none;
}
.form-group select option { background: #0d1428; color: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }

.btn-contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg,#00d4aa,#00b894);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 4px 24px rgba(0,212,170,.25);
  position: relative;
  overflow: hidden;
  margin-top: .25rem;
}
.btn-contact-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,transparent,rgba(255,255,255,.12));
  opacity: 0;
  transition: opacity .4s ease;
}
.btn-contact-submit:hover::before { opacity: 1; }
.btn-contact-submit:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 40px rgba(0,212,170,.35);
}
.btn-contact-submit:active {
  transform: translateY(0) scale(.98);
}
.btn-contact-submit .icon-svg { transition: transform .3s ease; }
.btn-contact-submit:hover .icon-svg { transform: translateX(4px) rotate(-10deg); }

.form-success {
  margin-top: 1rem;
  background: rgba(0,212,170,.08);
  border: 1px solid rgba(0,212,170,.25);
  color: var(--teal);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  backdrop-filter: blur(8px);
}

/* ── Contact Info ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(13,20,40,.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all .4s cubic-bezier(.23,1,.32,1);
  cursor: pointer;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg,var(--card-accent),transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.contact-card:hover::before { opacity: .12; }
.contact-card:hover {
  border-color: rgba(255,255,255,.12);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.contact-card::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card-accent);
  opacity: .08;
  transition: all .4s ease;
  filter: blur(12px);
}
.contact-card:hover::after {
  opacity: .25;
  width: 80px;
  height: 80px;
  filter: blur(24px);
}
.cc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  position: relative;
  z-index: 1;
}
.cc-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.cc-icon-svg {
  width: 28px;
  height: 28px;
  display: block;
}
.contact-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .2rem;
  color: #fff;
  position: relative;
  z-index: 1;
}
.contact-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}
.contact-card .cc-reply {
  font-size: .72rem;
  color: var(--teal);
  font-weight: 600;
  opacity: .8;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 170, 0.03) 0%, var(--bg) 70%), var(--bg);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.4), rgba(124, 58, 237, 0.4), transparent);
  opacity: .7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}
.ft-logo { font-size: 1.8rem; display: block; margin-bottom: .5rem; }
.ft-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ft-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -22px;
}
.ft-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  line-height: 28px;
}
.ft-accent { color: var(--teal); }
.ft-desc {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.ft-social {
  display: flex;
  gap: .85rem;
}
.ft-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.15rem;
  transition: all var(--trans);
  color: var(--text-2);
  cursor: pointer;
}
.ft-social-link:hover {
  background: var(--social-hover-color, var(--teal)) !important;
  border-color: var(--social-hover-color, var(--teal)) !important;
  color: #fff !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(var(--social-hover-glow-rgb, 0, 212, 170), 0.35);
}
.ft-col {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.ft-col-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: .6rem;
}
.ft-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  border-radius: 99px;
}
.ft-link {
  font-size: .85rem;
  color: var(--text-2);
  transition: all var(--trans);
  display: inline-flex;
  align-items: center;
}
.ft-link::before {
  content: '→';
  font-size: .8rem;
  opacity: 0;
  width: 0;
  margin-right: 0;
  transition: all var(--trans);
  color: var(--teal);
}
.ft-link:hover {
  color: var(--text) !important;
  transform: translateX(2px);
}
.ft-link:hover::before {
  opacity: 1;
  width: 12px;
  margin-right: 4px;
}
.ft-payments {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.pm-badge {
  width: 44px;
  height: 28px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  transition: all var(--trans);
  cursor: default;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1px;
  flex-shrink: 0;
}
.pm-badge svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 3px;
  transition: all var(--trans);
}
.pm-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 3px;
  transition: all var(--trans);
}
.pm-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  border-color: rgba(0, 212, 170, 0.3);
}
.pm-badge:hover svg,
.pm-badge:hover img {
  filter: brightness(1.1);
}
.ft-secure {
  font-size: .8rem;
  color: #22c55e !important;
  margin-top: .8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ft-copy { font-size: .8rem; color: var(--text-3); }
.ft-legal { display: flex; gap: 2rem; }
.ft-legal a {
  font-size: .8rem;
  color: var(--text-3);
  transition: color var(--trans);
  position: relative;
}
.ft-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--trans);
}
.ft-legal a:hover { color: var(--text) !important; }
.ft-legal a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ft-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { max-width: 600px; margin: 0 auto; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { flex-direction: row; flex-wrap: wrap; }
  .contact-card { flex: 1; min-width: 180px; }
}

@media (max-width: 768px) {
  .nav, .header-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 6rem 1rem 3rem; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: .75rem; }
  .hero-desc { font-size: .92rem; }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: .7rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 2rem; }
  .cards-grid { grid-template-columns: 1fr; }
  #iptv-grid, #sat-grid, #apps-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .why-card { padding: 2rem 1.5rem 1.5rem; }
  .why-card-icon { width: 48px; height: 48px; }
  .why-card-icon svg { width: 22px; height: 22px; }
  .why-grid { gap: 1.25rem; }
  .container { padding: 0 1.25rem; }
  /* Modals – mobile */
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img-wrap { min-height: 220px; }
  .modal-img { min-height: 220px; }
  /* App / product modals (inline) */
  #app-modal-overlay > div > div,
  #prod-modal-overlay > div > div,
  #modal-overlay > div > div { grid-template-columns: 1fr !important; height: auto !important; max-height: 85vh; overflow: hidden auto; }
  #app-modal-overlay [id$="-modal-img"],
  #prod-modal-overlay [id$="-modal-img"],
  #modal-overlay #modal-img { max-width: 180px !important; max-height: 30vh !important; }
  /* Special product */
  .special-card { grid-template-columns: 1fr; text-align: center; }
  .special-card-body { align-items: center; }
  .special-card-prices { justify-content: center; }
  .strip-card { width: 150px; }
  .strip-img-wrap { height: 90px; }
  .strip-name { font-size: .75rem; }
  /* Panel */
  .panel-header { flex-direction: column; align-items: stretch; }
  .panel-search { min-width: 0; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }
  .hero { min-height: auto; }
  .hero-inner { padding: 5rem 1rem 2.5rem; }
  .hero-title { font-size: 1.6rem; }
  .hero-desc { font-size: .85rem; margin-bottom: 1.5rem; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: .5rem; }
  .stat-num { font-size: 1.1rem; }
  .stat-divider { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; width: 100%; }
  .hero-badge { font-size: .75rem; }
  .hero-right { padding: 0; }
  /* Panel */
  .products-panel { padding: .85rem; border-radius: 16px; }
  .p-card { padding: .75rem; }
  .p-card-img { width: 48px; height: 48px; }
  .p-card-body { gap: .75rem; }
  .p-card-name { font-size: .8rem; }
  .p-card-desc { font-size: .68rem; }
  .p-card-btn { font-size: .7rem; }
  .p-card-glow { display: none; }
  .panel-title { font-size: .85rem; }
  .panel-search input { font-size: .72rem; padding: .4rem 1.6rem .4rem .75rem; }
  /* Section headers */
  .section-header { margin-bottom: 2.5rem; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .section-badge { font-size: .72rem; padding: .3rem .85rem; }
  .section-subtitle { font-size: clamp(1rem, 3vw, 1.2rem); }
  /* Cards grids */
  .cards-grid { gap: 1rem; }
  #iptv-grid, #sat-grid, #apps-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .shop-card .card-body { padding: .65rem; }
  .shop-card .card-title { font-size: .8rem; }
  .shop-card .card-footer { padding: 0 .65rem .65rem; }
  .shop-card .price-amount { font-size: 1rem; }
  .shop-card .card-buy-btn { font-size: .7rem; padding: .3rem .65rem; }
  .shop-card .card-img-wrap { height: 140px; }
  #apps-grid .card-footer { gap: .15rem; }
  #apps-grid .price-block a { font-size: .7rem !important; padding: .3rem .6rem !important; }
  /* CTA section */
  .section-cta { padding: 1.25rem; gap: .75rem; }
  .section-cta p { font-size: .85rem; }
  .section-cta .btn { font-size: .82rem; padding: .55rem 1.25rem; }
  /* Contact */
  .contact-form { padding: 1.25rem; border-radius: 14px; }
  .contact-card { padding: .85rem 1rem; min-width: 100%; }
  .cc-icon-wrap { width: 36px; height: 36px; border-radius: 10px; }
  .cc-icon { font-size: 1rem; }
  .contact-card h4 { font-size: .85rem; }
  .contact-card p { font-size: .75rem; }
  .contact-card .cc-reply { font-size: .68rem; }
  .btn-contact-submit { padding: .9rem 1.5rem; font-size: .92rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group input, .form-group select, .form-group textarea { padding: .8rem 1rem; font-size: .85rem; }
  /* Why Us */
  .why-us { padding: 3.5rem 0; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .why-card { padding: 1.5rem 1rem 1rem; border-radius: 16px; }
  .why-card-icon { width: 38px; height: 38px; margin-bottom: .9rem; }
  .why-card-icon svg { width: 18px; height: 18px; }
  .why-card h4 { font-size: .9rem; }
  .why-card p { font-size: .75rem; max-width: 100%; }
  .why-card-stat { margin-top: 1rem; }
  .why-bg-orb { width: 300px; height: 300px; filter: blur(80px); }
  /* Special product */
  .special-card { gap: 1.25rem; }
  .special-card-body { padding: 1rem; }
  .special-card-body h3 { font-size: 1.2rem; }
  .special-card-img { max-height: 180px; }
  .strip-card { width: 130px; padding: .5rem; }
  .strip-img-wrap { height: 75px; }
  .strip-name { font-size: .7rem; }
  .strip-price { font-size: .75rem; }
  .showcase-title { font-size: .95rem; }
  .special-scroll-track { gap: .65rem; }
  .special-card-prices { flex-direction: column; gap: .5rem; align-items: center; }
  .sp-price-row { gap: .3rem; }
  .sp-price-row .price-amount { font-size: 1.1rem; }
  /* Modals mobile */
  #app-modal-overlay > div > div,
  #prod-modal-overlay > div > div,
  #modal-overlay > div > div { grid-template-columns: 1fr !important; }
  #app-modal-overlay .modal,
  #prod-modal-overlay .modal,
  #modal-overlay .modal { max-width: 100% !important; border-radius: 0; max-height: 100vh; }
  #app-modal-overlay .modal-info,
  #prod-modal-overlay .modal-info,
  #modal-overlay .modal-info { padding: 1rem 1.25rem; }
  #app-modal-overlay .modal-title,
  #prod-modal-overlay .modal-title,
  #modal-overlay .modal-title { font-size: 1.2rem; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .ft-desc { font-size: .8rem; }
  .ft-name { font-size: 1.1rem; }
  /* Header */
  .logo { font-size: 1.15rem; }
  .logo-icon { font-size: 1.4rem; }
  .mobile-link { font-size: 1.2rem; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}

@media (max-width: 360px) {
  .container { padding: 0 .75rem; }
  .hero-title { font-size: 1.35rem; }
  .hero-inner { padding: 4.5rem .75rem 2rem; }
  #iptv-grid, #sat-grid, #apps-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .why-grid { grid-template-columns: 1fr; }
  .shop-card .card-img-wrap { height: 120px; }
  .strip-card { width: 110px; }
  .p-card-img { width: 40px; height: 40px; }
  .p-card-name { font-size: .72rem; }
  .p-card-desc { font-size: .62rem; }
  .contact-card { padding: .7rem .85rem; }
  .btn-contact-submit { font-size: .85rem; padding: .75rem 1.25rem; }
}

/* ══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35), 0 0 40px rgba(37,211,102,.15);
  z-index: 9999;
  transition: all .3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,.5), 0 0 60px rgba(37,211,102,.2);
  animation: none;
}
@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 24px rgba(37,211,102,.35), 0 0 40px rgba(37,211,102,.15); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.5), 0 0 60px rgba(37,211,102,.25); }
  100% { box-shadow: 0 4px 24px rgba(37,211,102,.35), 0 0 40px rgba(37,211,102,.15); }
}
.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: #1a1a2e;
  color: #fff;
  padding: .4rem .85rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #1a1a2e;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 72px;
}

@media (max-width: 480px) {
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
