﻿/* ============================================================
   IPTVMAROC — PREMIUM FUTURISTIC DARK DESIGN
   Colors: Moroccan Red #d9112f | Neon Green #00d47e | White | Dark
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --red:        #d9112f;
  --red-glow:   rgba(217, 17, 47, 0.45);
  --red-soft:   rgba(217, 17, 47, 0.18);
  --green:      #00d47e;
  --green-glow: rgba(0, 212, 126, 0.40);
  --green-soft: rgba(0, 212, 126, 0.14);
  --white:      #ffffff;
  --off-white:  #e8ecf0;
  --muted:      #8a9ab0;
  --dark:       #040508;
  --dark-2:     #090d12;
  --dark-3:     #0e1318;
  --panel:      rgba(255, 255, 255, 0.042);
  --panel-mid:  rgba(255, 255, 255, 0.072);
  --panel-high: rgba(255, 255, 255, 0.10);
  --border:     rgba(255, 255, 255, 0.085);
  --border-mid: rgba(255, 255, 255, 0.14);
  --shadow-sm:  0 4px 24px rgba(0, 0, 0, 0.38);
  --shadow:     0 18px 60px rgba(0, 0, 0, 0.52);
  --shadow-lg:  0 32px 90px rgba(0, 0, 0, 0.64);
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --container:  min(1160px, calc(100% - 40px));
  --font:       'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--off-white);
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    repeating-conic-gradient(
      from 45deg at 50% 50%,
      rgba(217,17,47,0.022) 0deg 45deg,
      transparent 45deg 90deg
    ),
    radial-gradient(ellipse 60% 40% at 8% 14%,  rgba(217,17,47,0.22) 0%, transparent 100%),
    radial-gradient(ellipse 50% 35% at 92% 8%,  rgba(0,212,126,0.16) 0%, transparent 100%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(217,17,47,0.08) 0%, transparent 100%);
  background-size:
    36px 36px,
    36px 36px,
    72px 72px,
    auto, auto, auto;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
p   { margin: 1em 0; }
p:first-child { margin-top: 0; }
p:last-child  { margin-bottom: 0; }
ul  { padding-left: 0; margin: 0; list-style: none; }

/* ── Accessibility ────────────────────────────────────────── */
.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 9999;
  padding: 10px 16px; border-radius: var(--radius-sm);
  background: var(--white); color: var(--dark);
  font-weight: 700; font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── Layout ───────────────────────────────────────────────── */
.container { width: var(--container); margin-inline: auto; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  font-weight: 900;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 3.4rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--green-glow);
  flex-shrink: 0;
}

/* ── Reveal Animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Keyframe Animations ──────────────────────────────────── */
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 24px rgba(217,17,47,0.4); }
  50%       { box-shadow: 0 0 42px rgba(217,17,47,0.7), 0 0 18px 6px rgba(217,17,47,0.2); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 24px rgba(0,212,126,0.35); }
  50%       { box-shadow: 0 0 42px rgba(0,212,126,0.6), 0 0 18px 6px rgba(0,212,126,0.18); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes scan-line {
  0%   { transform: translateY(-10px); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(500px); opacity: 0; }
}
@keyframes border-glow {
  0%, 100% { border-color: rgba(217,17,47,0.3); }
  50%       { border-color: rgba(0,212,126,0.45); }
}
@keyframes shimmer {
  0%   { transform: translateX(-150%) skewX(-12deg); }
  100% { transform: translateX(250%) skewX(-12deg); }
}
@keyframes glow-line-h {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 5, 8, 0.72);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(4, 5, 8, 0.94);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 1px 0 rgba(0,212,126,0.08);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--white);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.brand:hover { opacity: 0.85; }

.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background:
    url("imgs/logo.png") center/82% 82% no-repeat,
    linear-gradient(135deg, var(--red) 0%, #9a001e 100%);
  color: transparent;
  font-weight: 900;
  font-size: 0;
  animation: pulse-red 3.5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.12);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--green-glow);
  transform: translateX(-50%);
  transition: width var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: var(--panel);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 60%; }

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
  box-shadow: 0 0 22px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.28);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-150%) skewX(-12deg);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.28);
}
.nav-cta:hover::before { animation: shimmer 0.5s ease forwards; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  background: var(--panel);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  position: sticky;
  top: 0;
  z-index: 101;
  background: linear-gradient(90deg, #a8001e 0%, var(--red) 50%, #a8001e 100%);
}
.has-promo-banner .site-header { top: 44px; }

.promo-banner-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--white);
  text-align: center;
}
.promo-banner a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  transition: background var(--transition);
}
.promo-banner a:hover { background: rgba(255,255,255,0.28); }

.promo-close {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  font-size: 0.8rem;
  transition: background var(--transition);
}
.promo-close:hover { background: rgba(255,255,255,0.22); }

/* ============================================================
   HERO — PREMIUM REDESIGN
   ============================================================ */
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -18px) scale(1.04); }
  66%       { transform: translate(-18px, 12px) scale(0.97); }
}
@keyframes progress-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
@keyframes scroll-mouse {
  0%   { transform: translateX(-50%) translateY(0);    opacity: 1; }
  100% { transform: translateX(-50%) translateY(13px); opacity: 0; }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

/* Cinematic dark background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--dark) 100%);
}

/* Ambient glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero-orb-1 {
  width: 680px; height: 680px;
  top: -200px; left: -180px;
  background: radial-gradient(circle, rgba(217,17,47,0.28) 0%, transparent 65%);
  filter: blur(72px);
  animation: orb-drift 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 540px; height: 540px;
  top: -80px; right: -120px;
  background: radial-gradient(circle, rgba(0,212,126,0.22) 0%, transparent 65%);
  filter: blur(72px);
  animation: orb-drift 11s ease-in-out infinite reverse;
  animation-delay: 1.5s;
}
.hero-orb-3 {
  width: 420px; height: 420px;
  bottom: 80px; left: 38%;
  background: radial-gradient(circle, rgba(217,17,47,0.13) 0%, transparent 65%);
  filter: blur(80px);
  animation: orb-drift 14s ease-in-out infinite;
  animation-delay: 3s;
}

/* Scan-line sweep */
.hero-bg::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,212,126,0.65), transparent);
  animation: scan-line 5s ease-in-out infinite 2s;
}

/* Bottom vignette */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  pointer-events: none;
  z-index: 2;
}

/* Grid layout */
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding: 108px 0 118px;
}

/* ── Copy (left) ── */
.hero-copy { display: flex; flex-direction: column; }

/* Live badge replaces old eyebrow */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,212,126,0.3);
  background: rgba(0,212,126,0.055);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 0 20px rgba(0,212,126,0.08);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-copy h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  margin-bottom: 22px;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-shadow: 0 0 100px rgba(255,255,255,0.06);
}

.hero-lead {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: rgba(232,236,240,0.82);
  max-width: 580px;
  line-height: 1.72;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-mid);
  background: var(--panel);
  color: var(--off-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.trust-row span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
  flex-shrink: 0;
}

.legal-note {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 560px;
  border-left: 2px solid rgba(217,17,47,0.4);
  padding-left: 12px;
  margin: 0;
}

/* ── Visual (right) ── */
.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 52px;
  animation: float 6s ease-in-out infinite;
}

/* ══ TV Mockup ══ */
.tv-mockup {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 48px 80px rgba(0,0,0,0.72))
    drop-shadow(0 0 60px rgba(217,17,47,0.1));
}

/* Outer frame */
.tv-frame {
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(155deg, rgba(217,17,47,0.1) 0%, rgba(14,19,24,0.99) 40%, rgba(0,212,126,0.07) 100%);
  background-size: 22px 22px, 22px 22px, auto;
  border: 1px solid rgba(255,255,255,0.11);
  border-bottom: 2px solid rgba(255,255,255,0.06);
  border-radius: 16px 16px 6px 6px;
  overflow: hidden;
  position: relative;
}
/* Red-to-green top glow bar */
.tv-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 4%, var(--red) 28%, var(--green) 72%, transparent 96%);
  box-shadow: 0 0 16px rgba(217,17,47,0.55);
  z-index: 10;
}
/* Corner ambient glow */
.tv-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 90px at 0% 0%,   rgba(217,17,47,0.16), transparent),
    radial-gradient(circle 90px at 100% 100%, rgba(0,212,126,0.12), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Top bar with live indicator */
.tv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  background: rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
}
.tv-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.1em;
}
.tv-live-indicator > span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
  animation: pulse-red 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.tv-ch-name {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.tv-res {
  font-size: 0.66rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,212,126,0.11);
  border: 1px solid rgba(0,212,126,0.3);
  text-shadow: 0 0 8px var(--green-glow);
}

/* Channel pill row */
.tv-channel-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  position: relative;
  z-index: 2;
}
.tv-ch {
  flex: 1;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), border-color var(--transition);
}
.tv-ch span {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.tv-ch-active {
  background: rgba(217,17,47,0.14);
  border-color: rgba(217,17,47,0.42);
  box-shadow: 0 0 12px rgba(217,17,47,0.12), inset 0 0 8px rgba(217,17,47,0.06);
}
.tv-ch-active span { color: var(--red); text-shadow: 0 0 8px var(--red-glow); }

/* Content preview area */
.tv-content-area {
  margin: 0 16px 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.055);
  background: rgba(0,0,0,0.45);
  position: relative;
  z-index: 2;
  min-height: 96px;
}
.tv-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.014) 3px,
    rgba(255,255,255,0.014) 4px
  );
  pointer-events: none;
  z-index: 3;
}
.tv-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 12px;
  position: relative;
  z-index: 2;
}
.tc-block {
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.048);
  border: 1px solid rgba(255,255,255,0.04);
}
.tc-block-wide { grid-column: 1 / -1; height: 22px; }
.tc-block-red  { background: rgba(217,17,47,0.12); border-color: rgba(217,17,47,0.2); }

/* Progress bar row */
.tv-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 14px;
  position: relative;
  z-index: 2;
}
.tv-progress-row > span {
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.tv-progress-bar {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.tv-progress-fill {
  height: 100%;
  width: 62%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--red), var(--green));
  box-shadow: 0 0 8px var(--red-glow);
  animation: progress-pulse 3s ease-in-out infinite;
}

/* TV stand */
.tv-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.tv-stand-neck {
  width: 22px; height: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border-left:  1px solid rgba(255,255,255,0.055);
  border-right: 1px solid rgba(255,255,255,0.055);
}
.tv-stand-foot {
  width: 110px; height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* ══ Floating glass stat cards ══ */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(9,13,18,0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  white-space: nowrap;
  z-index: 10;
}
.hero-float-1 {
  top: 6px; right: -10px;
  border-color: rgba(0,212,126,0.26);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(0,212,126,0.08);
  animation: float 5.5s ease-in-out infinite 0.4s;
}
.hero-float-2 {
  bottom: 56px; left: -18px;
  border-color: rgba(217,17,47,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 16px rgba(217,17,47,0.06);
  animation: float 7s ease-in-out infinite 1.3s;
}
.hero-float-3 {
  top: 43%; right: -18px;
  border-color: rgba(0,212,126,0.22);
  animation: float 6.5s ease-in-out infinite 2.1s;
}
.hfc-icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), #8b001d);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 0 14px var(--red-glow);
  flex-shrink: 0;
}
.hfc-icon-green {
  background: linear-gradient(135deg, var(--green), #007045);
  box-shadow: 0 0 14px var(--green-glow);
}
.hfc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green-glow);
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}
.hfc-text { display: flex; flex-direction: column; gap: 2px; }
.hfc-text strong { font-size: 0.82rem; font-weight: 800; color: var(--white); }
.hfc-text span   { font-size: 0.72rem; color: var(--muted); }

/* ══ Phone mockup ══ */
.phone-mockup {
  position: absolute;
  bottom: 14px; right: -14px;
  width: 70px; height: 124px;
  background:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(155deg, rgba(217,17,47,0.1), var(--dark-3));
  background-size: 14px 14px, 14px 14px, auto;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 18px rgba(0,212,126,0.05);
  transform: rotate(6deg);
  z-index: 5;
  animation: float 8s ease-in-out infinite 3s;
}
.phone-notch {
  width: 26px; height: 5px;
  border-radius: 999px;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.07);
  margin: 6px auto;
}
.phone-screen-inner {
  padding: 5px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.phone-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.055); }
.phone-bar-2 { width: 70%; background: rgba(0,212,126,0.2); }
.phone-bar-3 { width: 50%; }

/* ══ Scroll cue ══ */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-scroll-cue span {
  display: block;
  width: 20px; height: 32px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  position: relative;
}
.hero-scroll-cue span::after {
  content: '';
  position: absolute;
  top: 4px; left: 50%;
  width: 4px; height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 6px var(--green-glow);
  animation: scroll-mouse 2s ease-in-out infinite;
}

/* Legacy compat — kept for inner pages */
.hero-panel {
  position: relative; display: flex; flex-direction: column; gap: 16px;
}
.device-mockup {
  position: relative; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-2); border: 1px solid rgba(0,212,126,0.2);
  border-radius: var(--radius-lg); overflow: hidden;
}
.mockup-label {
  padding: 10px 18px; background: var(--panel-mid);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--muted); font-size: 0.82rem; font-weight: 600;
}
.mockup-screen {
  position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-sm);
}
.signal-card {
  padding: 18px 20px; background: rgba(4,5,8,0.84);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-mid); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.signal-card strong { display: block; color: var(--green); font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; text-shadow: 0 0 12px var(--green-glow); }
.signal-card span { color: var(--muted); font-size: 0.88rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 38%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-150%) skewX(-12deg);
}
.btn:hover::before  { animation: shimmer 0.5s ease forwards; }
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #a8001e 100%);
  color: var(--white);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 0 28px var(--red-glow), 0 8px 24px rgba(217,17,47,0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 44px var(--red-glow), 0 12px 32px rgba(217,17,47,0.45);
}

.btn-secondary {
  background: var(--panel-mid);
  color: var(--white);
  border-color: var(--border-mid);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: var(--panel-high);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
  transition: gap var(--transition), color var(--transition);
}
.text-link::after {
  content: '→';
  transition: transform var(--transition);
}
.text-link:hover { color: #1affa0; }
.text-link:hover::after { transform: translateX(4px); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding: 100px 0; }

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.section-heading h2 { margin-bottom: 16px; }

.section-heading::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--red), var(--green));
  border-radius: 3px;
  box-shadow: 0 0 12px var(--red-glow);
}
.section-heading.center::after { margin-inline: auto; }

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band { padding: 56px 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.trust-grid article {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-grid article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.trust-grid article:hover {
  background: var(--panel-mid);
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm), 0 0 20px rgba(0,212,126,0.06);
}
.trust-grid article:hover::before { transform: scaleX(1); }

.icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--red), #8b0000);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 0 18px var(--red-glow);
}

.trust-grid h2 { font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.trust-grid p  { font-size: 0.86rem; color: var(--muted); margin: 0; }

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split-section { overflow: hidden; }

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.image-arch {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 120px var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-arch::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0,212,126,0.2);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.media-slot,
.media-slot-large,
.article-visual {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(217,17,47,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(0,212,126,0.12) 0%, transparent 70%),
    var(--dark-2);
  background-size: 22px 22px, 22px 22px, auto, auto, auto;
}
.media-slot span,
.media-slot-large span,
.article-visual span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--panel-mid);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.media-slot img,
.media-slot-large img,
.article-visual img,
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-block p { font-size: 1.02rem; color: var(--muted); }
.content-block h2 { margin-bottom: 20px; }

/* ============================================================
   FEATURE WAVE
   ============================================================ */
.feature-wave {
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217,17,47,0.1) 0%, transparent 70%),
    var(--dark-2);
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent 50%, var(--green));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,126,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,212,126,0.06);
}
.feature-card:hover::after { opacity: 1; }

.card-visual {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(217,17,47,0.18) 0%, transparent 80%),
    var(--dark-3);
  background-size: 18px 18px, 18px 18px, auto, auto;
  border-bottom: 1px solid var(--border);
}
.card-visual span {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
}

.feature-card h3 { padding: 20px 22px 8px; font-size: 1.05rem; color: var(--white); }
.feature-card p  { padding: 0 22px 22px; font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ============================================================
   SEO COLUMNS
   ============================================================ */
.seo-columns { }

.columns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  align-items: start;
}

.columns-grid article h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.columns-grid article p  { font-size: 1rem; color: var(--muted); }
.columns-grid article .eyebrow { margin-bottom: 10px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-preview {
  background:
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(217,17,47,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 0%,   rgba(0,212,126,0.08) 0%, transparent 70%),
    var(--dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.price-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(225deg, rgba(217,17,47,0.22), transparent 70%);
  pointer-events: none;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-mid);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5);
}

.price-card.featured {
  border-color: rgba(0,212,126,0.35);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,126,0.1) 0%, transparent 70%),
    var(--panel-mid);
  box-shadow:
    0 0 0 1px rgba(0,212,126,0.18),
    0 0 50px rgba(0,212,126,0.12),
    0 32px 80px rgba(0,0,0,0.5);
  transform: scale(1.035);
}
.price-card.featured:hover {
  transform: scale(1.035) translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(0,212,126,0.28),
    0 0 70px rgba(0,212,126,0.18),
    0 40px 90px rgba(0,0,0,0.56);
}
.price-card.featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 18px var(--green-glow);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,212,126,0.2), rgba(0,212,126,0.08));
  border: 1px solid rgba(0,212,126,0.4);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 0 0 8px var(--green-glow);
}

.price-card h3  { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }

.price {
  margin: 16px 0 0;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-card.featured .price { color: var(--green); text-shadow: 0 0 20px var(--green-glow); }
.price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.offer-rules-grid {
  margin-top: 24px;
  align-items: stretch;
}

.offer-rules-grid .value-card ul {
  display: grid;
  gap: 9px;
}

.offer-rules-grid .value-card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.offer-rules-grid .value-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--green);
  font-weight: 1000;
}

.price-card ul { margin: 22px 0 28px; display: grid; gap: 0; }
.price-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
  flex-shrink: 0;
}
.price-card li:last-child { border-bottom: none; }

/* ============================================================
   BLOG / ARTICLE CARDS
   ============================================================ */
.blog-preview { overflow: hidden; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,17,47,0.3);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5), 0 0 30px rgba(217,17,47,0.07);
}

.blog-card .card-visual {
  height: 170px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,212,126,0.15) 0%, transparent 80%),
    var(--dark-3);
  background-size: 18px 18px, 18px 18px, auto, auto;
  transition: background var(--transition);
}
.blog-card:hover .card-visual {
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,212,126,0.26) 0%, transparent 80%),
    var(--dark-3);
  background-size: 18px 18px, 18px 18px, auto, auto;
}

.blog-card > span {
  display: inline-block;
  margin: 18px 20px 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.blog-card h3 { margin: 8px 20px 20px; font-size: 1rem; line-height: 1.45; color: var(--white); font-weight: 700; }

/* Article cards (blog listing page) */
.article-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-mid);
}
.article-card .card-visual { height: 200px; }
.article-card h2 { padding: 20px 22px 8px; font-size: 1.2rem; }
.article-card p  { padding: 0 22px; font-size: 0.9rem; color: var(--muted); }
.article-card .text-link { margin: 8px 22px 22px; }

.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border-mid);
  background: var(--panel);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  margin: 14px 22px 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,212,126,0.06) 0%, transparent 70%),
    var(--dark-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.faq-list { display: grid; gap: 12px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-mid); }
.faq-item[open] {
  border-color: rgba(0,212,126,0.28);
  background: var(--panel-mid);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  font-size: 0.96rem;
  list-style: none;
  user-select: none;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--panel-mid);
  border: 1px solid var(--border-mid);
  font-size: 1rem;
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
  background: rgba(0,212,126,0.12);
  border-color: rgba(0,212,126,0.3);
}
.faq-item p { padding: 0 22px 18px; font-size: 0.92rem; color: var(--muted); margin: 0; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: 90px 0; }

.cta-inner {
  position: relative;
  overflow: hidden;
  padding: 60px 56px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(217,17,47,0.28);
  background:
    radial-gradient(ellipse 80% 100% at 0% 50%,   rgba(217,17,47,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80%  at 100% 50%,  rgba(0,212,126,0.15) 0%, transparent 60%),
    linear-gradient(135deg, rgba(217,17,47,0.06), rgba(0,212,126,0.04));
  box-shadow:
    0 0 0 1px rgba(217,17,47,0.1),
    0 0 80px rgba(217,17,47,0.1),
    0 32px 90px rgba(0,0,0,0.4);
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 50%, rgba(0,212,126,0.03));
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.cta-inner h2,
.cta-inner p,
.cta-inner a { position: relative; z-index: 1; }

.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); max-width: 700px; margin-bottom: 16px; }
.cta-inner > p { font-size: 1.05rem; color: var(--muted); max-width: 640px; margin-bottom: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    var(--dark-2);
  background-size: 36px 36px, 36px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.1fr 0.9fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer .brand { margin-bottom: 14px; }
.footer-grid > div > p { font-size: 0.9rem; color: var(--muted); margin: 0; }

.footer h2 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer a:not(.brand):not(.footer-whatsapp) {
  display: block;
  margin: 8px 0;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer a:not(.brand):not(.footer-whatsapp):hover { color: var(--white); }

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green) !important;
  font-weight: 800;
  font-size: 0.95rem;
  text-shadow: 0 0 12px var(--green-glow);
  transition: text-shadow var(--transition);
}
.footer-whatsapp:hover { text-shadow: 0 0 22px var(--green-glow); }

.footer-bottom { padding-top: 22px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.84rem; color: var(--muted); margin: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 10% 50%,  rgba(217,17,47,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 30%,  rgba(0,212,126,0.14) 0%, transparent 70%),
    var(--dark);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.page-hero p { font-size: 1.12rem; color: var(--muted); }

/* ============================================================
   ABOUT / VALUES
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.about-copy p { font-size: 1rem; color: var(--muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
}
.contact-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--green);
  text-shadow: 0 0 14px var(--green-glow);
}

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.article-content {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
}
.article-content h2  { margin-top: 40px; font-size: clamp(1.5rem, 2.8vw, 2.3rem); color: var(--white); }
.article-content h3  { margin-top: 28px; font-size: 1.2rem; }
.article-content p   { font-size: 1rem; color: var(--muted); }
.article-content li  { color: var(--muted); font-size: 1rem; }
.article-content a   { color: var(--green); font-weight: 700; }
.article-content img { width: 100%; margin: 28px 0; border-radius: var(--radius); aspect-ratio: 16/8; object-fit: cover; border: 1px solid var(--border); }

.sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
}
.sidebar-box {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}
.sidebar-box h2 { font-size: 0.95rem; margin-bottom: 14px; }
.sidebar-box a  { display: block; margin: 9px 0; font-size: 0.88rem; color: var(--muted); transition: color var(--transition); }
.sidebar-box a:hover { color: var(--white); }

/* ============================================================
   OFFER POPUP
   ============================================================ */
.offer-popup {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 200;
  width: min(390px, calc(100% - 28px));
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
}
.offer-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.offer-popup-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,212,126,0.28);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%,  rgba(217,17,47,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(0,212,126,0.14) 0%, transparent 60%),
    rgba(9, 13, 18, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 32px 90px rgba(0,0,0,0.6), 0 0 40px rgba(0,212,126,0.08);
}
.offer-popup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 40%, var(--green));
}

.offer-popup-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(217,17,47,0.3), rgba(0,212,126,0.2));
  border: 1px solid rgba(0,212,126,0.3);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-popup h2 { margin: 14px 0 8px; font-size: 1.4rem; color: var(--white); }
.offer-popup-card > p { margin: 0 0 16px; font-size: 0.9rem; color: var(--muted); }

.offer-popup-list { display: grid; gap: 8px; margin: 0 0 20px; }
.offer-popup-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-popup-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
  flex-shrink: 0;
}

.offer-popup-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.offer-popup-actions .btn { min-height: 44px; padding: 0 16px; font-size: 0.85rem; }

.offer-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  background: var(--panel-mid);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
}
.offer-popup-close:hover { background: var(--panel-high); color: var(--white); }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1060px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-grid,
  .split-grid,
  .faq-grid,
  .contact-grid,
  .about-grid,
  .article-layout { grid-template-columns: 1fr; }

  .hero-grid  { gap: 40px; }
  .hero-visual { order: -1; min-height: 420px; }
  .hero-panel  { order: -1; }
  .device-mockup { min-height: 260px; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 1160px); }

  .nav { min-height: 64px; }
  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }

  .nav-menu {
    position: absolute;
    top: 64px; left: 14px; right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    background: rgba(4, 5, 8, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
    gap: 2px;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { min-height: 46px; padding: 0 16px; }

  .hero { min-height: auto; }
  .hero-grid { padding: 60px 0 70px; }
  .hero-float-card, .phone-mockup { display: none; }
  .hero-visual { min-height: auto; padding-bottom: 24px; }
  .hero-scroll-cue { display: none; }

  .trust-grid,
  .feature-grid,
  .pricing-grid,
  .blog-grid,
  .values-grid,
  .columns-grid { grid-template-columns: 1fr; }

  .pricing-grid { gap: 16px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }

  .section  { padding: 68px 0; }
  .cta-inner { padding: 36px 26px; }
  .article-content { padding: 24px; }
  .cta-inner h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .footer-grid  { grid-template-columns: 1fr; }

  .promo-banner-inner {
    padding: 8px 0;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
  }
  .has-promo-banner .site-header { top: 56px; }

  .offer-popup { right: 14px; bottom: 14px; }
  .offer-popup-actions { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal  { opacity: 1; transform: none; }
  .hero-panel, .hero-visual { animation: none; }
  .brand-mark { animation: none; }
  .device-mockup { animation: none; }
  .live-dot, .tv-live-indicator > span, .hfc-dot { animation: none; }
  .tv-progress-fill { animation: none; }
}

/* Professional hero cleanup */
.hero {
  min-height: auto;
  background: linear-gradient(135deg, #ffffff 0%, #f6fbf8 58%, #fff3f5 100%);
}

.hero-bg {
  background:
    radial-gradient(circle at 15% 18%, rgba(217, 17, 47, 0.1), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(0, 143, 91, 0.1), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7fbf9);
}

.hero-bg::after,
.btn::before,
.nav-cta::before,
.price-card.featured::after,
.feature-card::after,
.trust-grid article::after,
.blog-card::after,
.article-card::after,
.contact-card::after,
.value-card::after,
.cta-inner::after {
  display: none !important;
  animation: none !important;
}

.hero-orb,
.hero-float-card,
.phone-mockup,
.hero-scroll-cue {
  display: none !important;
}

.hero::after {
  height: 110px;
  background: linear-gradient(180deg, transparent, #f7faf9);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.86fr);
  gap: 48px;
  padding: 82px 0 74px;
}

.hero-copy h1 {
  color: var(--ink);
  max-width: 760px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.08;
  text-shadow: none;
}

.hero-lead {
  color: #46515d;
  max-width: 680px;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-live-badge {
  color: var(--green);
  background: #ffffff;
  border-color: rgba(0, 143, 91, 0.2);
  box-shadow: 0 12px 30px rgba(16, 18, 23, 0.08);
}

.live-dot,
.tv-live-indicator > span,
.hfc-dot,
.tv-progress-fill {
  animation: none !important;
}

.hero-visual {
  animation: none !important;
  min-height: 430px;
  padding: 10px 0 38px;
}

.tv-mockup {
  filter: drop-shadow(0 32px 55px rgba(16, 18, 23, 0.16));
}

.tv-frame {
  background:
    linear-gradient(rgba(16, 18, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 23, 0.045) 1px, transparent 1px),
    linear-gradient(155deg, #ffffff 0%, #f8fbfa 58%, #fff7f8 100%);
  background-size: 22px 22px, 22px 22px, auto;
  border: 1px solid rgba(16, 18, 23, 0.1);
  box-shadow: 0 24px 60px rgba(16, 18, 23, 0.12);
}

.tv-frame::before {
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
  box-shadow: none;
}

.tv-frame::after {
  background: none;
}

.tv-topbar,
.tv-content-area {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(16, 18, 23, 0.08);
}

.tv-ch {
  background: #ffffff;
  border-color: rgba(16, 18, 23, 0.08);
}

.tv-ch-name,
.hfc-text strong {
  color: var(--ink);
}

.tv-content-area {
  min-height: 118px;
  box-shadow: inset 0 0 0 1px rgba(16, 18, 23, 0.03);
}

.tc-block {
  background: rgba(16, 18, 23, 0.06);
  border-color: rgba(16, 18, 23, 0.04);
}

.trust-row span {
  color: #34404b;
  background: #ffffff;
  border-color: rgba(16, 18, 23, 0.1);
  box-shadow: 0 8px 22px rgba(16, 18, 23, 0.06);
}

.legal-note {
  color: #607080;
  border-left-color: rgba(217, 17, 47, 0.28);
}

.pricing-preview {
  padding-top: 74px;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 66px 0 62px;
  }

  .hero-visual {
    order: initial;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .hero-grid {
    gap: 28px;
    padding: 48px 0 50px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .hero-visual {
    min-height: 330px;
  }

  .tv-mockup {
    max-width: 100%;
  }
}

/* Dark professional hero correction */
.hero {
  min-height: auto;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 17, 47, 0.22), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(0, 212, 126, 0.16), transparent 32%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 58%, #07080b 100%);
}

.hero-bg {
  background:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px),
    radial-gradient(circle at 16% 18%, rgba(217, 17, 47, 0.2), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(0, 212, 126, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(4, 5, 8, 0.98), rgba(9, 13, 18, 0.96));
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
}

.hero::after {
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--dark));
}

.hero-copy h1 {
  color: var(--white);
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.36);
}

.hero-lead {
  color: rgba(232, 236, 240, 0.84);
}

.hero-live-badge {
  color: var(--green);
  background: rgba(0, 212, 126, 0.08);
  border-color: rgba(0, 212, 126, 0.26);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.tv-frame {
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(155deg, rgba(217,17,47,0.11) 0%, rgba(14,19,24,0.99) 44%, rgba(0,212,126,0.08) 100%);
  background-size: 22px 22px, 22px 22px, auto;
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
}

.tv-topbar,
.tv-content-area {
  background: rgba(0, 0, 0, 0.36);
  border-color: rgba(255,255,255,0.075);
}

.tv-ch {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.08);
}

.tv-ch-name,
.hfc-text strong {
  color: var(--white);
}

.tc-block {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.05);
}

.trust-row span {
  color: var(--off-white);
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.legal-note {
  color: rgba(232,236,240,0.68);
  border-left-color: rgba(217, 17, 47, 0.48);
}

/* Offer cards responsive polish */
.pricing-preview .section-heading {
  margin-bottom: 34px;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.price-card h2,
.price-card h3 {
  min-height: 2.4em;
  display: flex;
  align-items: center;
}

.price-card .price {
  margin: 14px 0 20px;
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 0;
  line-height: 1.42;
}

.price-card li::before {
  flex: 0 0 auto;
  margin-right: 0;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.adult-feature {
  position: relative;
  align-items: center !important;
  margin: 4px 0;
  padding: 10px 12px !important;
  border-radius: 12px;
  color: #ffffff !important;
  background:
    linear-gradient(135deg, rgba(217, 17, 47, 0.95), rgba(168, 0, 30, 0.92)),
    var(--red);
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 12px 28px rgba(217, 17, 47, 0.22);
  font-weight: 950;
}

.adult-feature::before {
  content: "18+" !important;
  width: 34px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--red) !important;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 1000;
}

.price-card.featured .adult-feature {
  box-shadow: 0 14px 34px rgba(217, 17, 47, 0.28), 0 0 26px rgba(217, 17, 47, 0.14);
}

.offer-rules-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    grid-column: 1 / -1;
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .pricing-grid,
  .offer-rules-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .price-card.featured {
    max-width: none;
    transform: none;
  }

  .price-card h2,
  .price-card h3 {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .price-card {
    padding: 20px;
  }

  .adult-feature {
    align-items: flex-start !important;
  }
}

/* Final compact hero image layout */
.hero {
  min-height: auto;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  gap: 38px;
  padding: 62px 0 58px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(1.85rem, 3.35vw, 3.25rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.hero-lead {
  max-width: 640px;
  font-size: clamp(0.94rem, 1.05vw, 1.04rem);
  line-height: 1.68;
  margin-bottom: 22px;
}

.hero-live-badge {
  margin-bottom: 18px;
  padding: 6px 13px;
  font-size: 0.68rem;
}

.hero-actions {
  margin-bottom: 22px;
}

.trust-row {
  margin-bottom: 16px;
}

.legal-note {
  max-width: 610px;
  font-size: 0.82rem;
}

.hero-image-visual {
  min-height: 0;
  padding: 0;
  display: block;
}

.hero-image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(4, 5, 8, 0.72) 100%),
    radial-gradient(circle at 18% 18%, rgba(217, 17, 47, 0.22), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(0, 212, 126, 0.18), transparent 30%);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-image-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(4, 5, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-image-card figcaption strong {
  font-size: 0.95rem;
}

.hero-image-card figcaption span {
  color: rgba(232, 236, 240, 0.76);
  font-size: 0.8rem;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 0 52px;
  }

  .hero-image-visual {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .hero-grid {
    padding: 40px 0 44px;
  }

  .hero-copy h1 {
    font-size: clamp(1.72rem, 8vw, 2.45rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image-card {
    border-radius: 16px;
  }

  .hero-image-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* Floating WhatsApp CTA */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #13c264, #075e54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), 0 0 22px rgba(19, 194, 100, 0.24);
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42), 0 0 30px rgba(19, 194, 100, 0.3);
}

.floating-whatsapp-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
}

@media (max-width: 560px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0;
    width: 52px;
    justify-content: center;
  }

  .floating-whatsapp-text {
    display: none;
  }

  .floating-whatsapp-icon {
    width: 42px;
    height: 42px;
  }
}

/* Eid Al-Adha conversion popup */
.eid-popup {
  position: fixed;
  inset: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(4, 5, 8, 0.85); /* Darker overlay */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: none;
  z-index: 9999;
}

.eid-popup.is-visible {
  transform: none;
}

.eid-popup .offer-popup-card {
  position: relative;
  width: min(420px, 100%);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08); /* More subtle border */
  border-radius: 20px;
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(217, 17, 47, 0.18), transparent 45%),
    radial-gradient(120% 120% at 50% 110%, rgba(0, 212, 126, 0.18), transparent 45%),
    linear-gradient(145deg, rgba(14, 18, 24, 0.95), rgba(7, 9, 12, 0.95));
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 50px rgba(217, 17, 47, 0.15);
  overflow: hidden;
}

/* Glowing animated neon edge highlight */
.eid-popup .offer-popup-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%; right: 0; height: 3px;
  width: 200%;
  background: linear-gradient(90deg, transparent, var(--red), var(--green), transparent);
  animation: eid-neon-travel 3.5s linear infinite;
  opacity: 0.9;
}

@keyframes eid-neon-travel {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.eid-popup .offer-popup-kicker {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(0, 212, 126, 0.25);
  margin-bottom: 20px;
}

.eid-sheep {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 16px auto 10px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 212, 126, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 28px rgba(0, 212, 126, 0.25);
  font-size: 2.2rem;
  z-index: 2;
}

/* Aura behind sheep */
.eid-sheep::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(0, 212, 126, 0.35) 0%, transparent 70%);
  z-index: -1;
  animation: eid-breathe 4s ease-in-out infinite alternate;
}

@keyframes eid-breathe {
  0% { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

.eid-popup h2 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  letter-spacing: -0.02em;
}

.eid-popup-subtitle {
  margin: 8px auto 14px;
  color: var(--green) !important;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eid-discount {
  position: relative;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  margin: 16px auto 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #850014);
  border: 6px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 0 rgba(217, 17, 47, 0.5), 0 18px 45px rgba(217, 17, 47, 0.4);
  font-size: 2.2rem;
  font-weight: 1000;
  letter-spacing: -0.04em;
  animation: eid-pulse 2s infinite;
}

@keyframes eid-pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 17, 47, 0.5), 0 18px 45px rgba(217, 17, 47, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(217, 17, 47, 0), 0 18px 45px rgba(217, 17, 47, 0.2); }
  100% { box-shadow: 0 0 0 0 rgba(217, 17, 47, 0), 0 18px 45px rgba(217, 17, 47, 0.4); }
}

.eid-popup .offer-popup-card > p:not(.eid-popup-subtitle):not(.eid-deadline) {
  color: rgba(232, 236, 240, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.eid-popup .offer-popup-list {
  margin: 20px 0;
  text-align: left;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.eid-popup .offer-popup-list li {
  color: rgba(232, 236, 240, 0.95);
  font-size: 0.9rem;
  font-weight: 500;
}

.eid-popup .offer-popup-actions {
  grid-template-columns: 1fr;
  gap: 12px;
}

.eid-popup .btn.btn-primary {
  font-size: 1.05rem;
  padding: 14px 24px;
  box-shadow: 0 8px 25px rgba(217, 17, 47, 0.4);
  letter-spacing: 0.5px;
}

.eid-popup .btn.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(217, 17, 47, 0.6);
  transform: translateY(-2px);
}

.eid-popup .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.eid-popup .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.eid-deadline {
  margin-top: 16px;
  color: rgba(232, 236, 240, 0.5) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 560px) {
  .eid-popup .offer-popup-card {
    padding: 24px 16px;
  }

  .eid-discount {
    width: 90px;
    height: 90px;
    font-size: 1.8rem;
  }

  .eid-sheep {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }
}

/* Final compact Eid popup override */
.eid-popup {
  padding: 12px;
}

.eid-popup .offer-popup-card {
  width: min(340px, 100%);
  padding: 18px;
}

.eid-sheep {
  width: 48px;
  height: 48px;
  margin: 10px auto 4px;
  border-radius: 16px;
  font-size: 1.65rem;
}

.eid-popup h2 {
  margin-top: 8px;
  font-size: clamp(1.25rem, 5vw, 1.65rem);
}

.eid-popup-subtitle {
  margin: 6px auto 8px;
  font-size: 0.9rem;
}

.eid-discount {
  width: 76px;
  height: 76px;
  margin: 8px auto 10px;
  border-width: 4px;
  font-size: 1.45rem;
}

.eid-popup .offer-popup-card > p:not(.eid-popup-subtitle):not(.eid-deadline) {
  margin: 8px 0 12px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.eid-popup .offer-popup-list {
  display: none;
}

.eid-popup .offer-popup-actions {
  margin-top: 10px;
  gap: 0;
}

.eid-popup .btn,
.eid-popup .btn.btn-primary {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.84rem;
}

.eid-deadline {
  margin-top: 9px;
  font-size: 0.74rem;
}

@media (max-width: 560px) {
  .eid-popup .offer-popup-card {
    width: min(310px, 100%);
    padding: 16px 14px;
  }

  .eid-discount {
    width: 68px;
    height: 68px;
    font-size: 1.32rem;
  }

  .eid-sheep {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}

/* ============================================================
   Luxury UI upgrade
   ============================================================ */
:root {
  --gold: #f2c86b;
  --gold-soft: rgba(242, 200, 107, 0.16);
  --cyan: #62d8ff;
  --ink-soft: rgba(232, 236, 240, 0.78);
  --glass: rgba(13, 18, 25, 0.68);
  --glass-strong: rgba(14, 19, 26, 0.86);
}

body {
  background-color: #05070b;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    radial-gradient(circle at 14% 10%, rgba(217, 17, 47, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(0, 212, 126, 0.14), transparent 24rem),
    radial-gradient(circle at 50% 42%, rgba(98, 216, 255, 0.075), transparent 30rem),
    linear-gradient(180deg, #05070b 0%, #080c12 44%, #05070b 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto, auto;
}

.site-header {
  background: rgba(5, 7, 11, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.075);
}

.site-header.scrolled {
  background: rgba(5, 7, 11, 0.9);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
}

.nav {
  min-height: 78px;
}

.brand {
  font-size: 1.05rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    url("imgs/logo.png") center/82% 82% no-repeat,
    linear-gradient(145deg, var(--red) 0%, #741125 52%, var(--gold) 150%);
  box-shadow: 0 14px 28px rgba(217, 17, 47, 0.18), inset 0 1px 0 rgba(255,255,255,0.18);
}

.nav-menu {
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  flex: 0 1 auto;
}

.nav-menu a {
  border-radius: 11px;
}

.nav-menu a::after {
  display: none;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255,255,255,0.09);
  color: #fff;
}

.nav-cta,
.floating-whatsapp {
  background: linear-gradient(135deg, #18d27f, #089c65 62%, #075e54);
  box-shadow: 0 16px 36px rgba(0, 212, 126, 0.2);
}

.hero {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.92) 0%, rgba(5, 7, 11, 0.72) 50%, rgba(5, 7, 11, 0.92) 100%),
    radial-gradient(circle at 22% 24%, rgba(217, 17, 47, 0.28), transparent 25rem),
    radial-gradient(circle at 78% 20%, rgba(242, 200, 107, 0.12), transparent 18rem),
    radial-gradient(circle at 86% 68%, rgba(0, 212, 126, 0.16), transparent 22rem),
    #05070b;
}

.hero-bg {
  opacity: 0.9;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,0.035) 34% 35%, transparent 35% 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.9fr);
  gap: 52px;
  padding: 82px 0 76px;
}

.hero-live-badge,
.eyebrow {
  color: var(--gold);
}

.eyebrow::before {
  background: linear-gradient(90deg, var(--gold), var(--green));
  box-shadow: none;
}

.hero-live-badge {
  border-color: rgba(242, 200, 107, 0.28);
  background: linear-gradient(135deg, rgba(242, 200, 107, 0.12), rgba(0, 212, 126, 0.065));
}

.hero-copy h1 {
  font-size: clamp(2.05rem, 3.8vw, 3.75rem);
  max-width: 780px;
}

.hero-lead,
.content-block p,
.columns-grid article p,
.section-heading p,
.page-hero p,
.article-content p,
.faq-grid p {
  color: var(--ink-soft);
}

.hero-actions {
  gap: 12px;
}

.btn {
  border-radius: 14px;
  min-height: 54px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #a80b27 55%, #6d1020 100%);
  box-shadow: 0 18px 38px rgba(217, 17, 47, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(217, 17, 47, 0.34);
}

.btn-secondary {
  background: rgba(255,255,255,0.075);
}

.trust-row span {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}

.hero-image-card {
  border-radius: 26px;
  border-color: rgba(255,255,255,0.16);
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255,255,255,0.035);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
}

.hero-image-card img {
  aspect-ratio: 1.08 / 1;
  transform: scale(1.015);
}

.hero-image-card figcaption {
  left: 28px;
  right: 28px;
  bottom: 28px;
  border-radius: 16px;
  background: rgba(5, 7, 11, 0.72);
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 850px;
}

.section-heading h2,
.page-hero h1 {
  letter-spacing: -0.015em;
}

.trust-band {
  padding: 62px 0;
}

.trust-grid article,
.feature-card,
.blog-card,
.article-card,
.value-card,
.contact-card,
.article-content,
.sidebar-box,
.faq-item,
.price-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.032)),
    var(--glass);
  border-color: rgba(255,255,255,0.105);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055);
}

.trust-grid article:hover,
.feature-card:hover,
.blog-card:hover,
.article-card:hover,
.value-card:hover,
.price-card:hover {
  border-color: rgba(242, 200, 107, 0.22);
  box-shadow: 0 28px 80px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.08);
}

.icon {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217,17,47,0.98), rgba(242,200,107,0.9));
  box-shadow: 0 14px 30px rgba(217,17,47,0.2);
}

.pricing-preview,
.feature-wave,
.faq-section,
.page-hero,
.footer {
  background:
    radial-gradient(circle at 14% 10%, rgba(217, 17, 47, 0.13), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(0, 212, 126, 0.1), transparent 24rem),
    linear-gradient(180deg, #080c12, #05070b);
}

.price-card {
  padding: 32px;
  border-radius: 24px;
}

.price-card::before {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.price-card.featured {
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 200, 107, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    var(--glass-strong);
  border-color: rgba(242, 200, 107, 0.36);
  box-shadow: 0 34px 90px rgba(0,0,0,0.46), 0 0 0 1px rgba(242,200,107,0.12);
}

.price-card.featured .price {
  color: var(--gold);
  text-shadow: none;
}

.badge {
  color: #090d12;
  background: linear-gradient(135deg, var(--gold), #fff3bd);
  border-color: rgba(255,255,255,0.18);
  text-shadow: none;
}

.card-visual,
.blog-card .card-visual {
  height: 190px;
  background: #080c12;
}

.feature-card .card-visual {
  height: 210px;
}

.card-visual img {
  transition: transform var(--transition), filter var(--transition);
}

.feature-card:hover .card-visual img,
.blog-card:hover .card-visual img,
.article-card:hover .card-visual img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.image-arch {
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0,0,0,0.42);
}

.media-slot,
.media-slot-large,
.article-visual {
  min-height: 520px;
}

.cta-inner {
  border-radius: 28px;
  border-color: rgba(242, 200, 107, 0.28);
  background:
    radial-gradient(circle at 10% 20%, rgba(217,17,47,0.22), transparent 22rem),
    radial-gradient(circle at 85% 60%, rgba(0,212,126,0.16), transparent 22rem),
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.03));
}

.page-hero {
  padding: 118px 0 86px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.page-hero .container {
  max-width: 980px;
}

.footer {
  border-top-color: rgba(255,255,255,0.09);
}

.promo-banner {
  background: linear-gradient(90deg, #791324, var(--red), #0c8a5d);
}

.eid-popup {
  background: rgba(5, 7, 11, 0.72);
}

.eid-popup .offer-popup-card {
  border-color: rgba(242, 200, 107, 0.22);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 64px 0 70px;
  }

  .hero-image-visual {
    max-width: 680px;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: 66px;
  }

  .nav-menu {
    top: 70px;
    background: rgba(5, 7, 11, 0.96);
  }

  .hero-grid {
    padding: 46px 0 54px;
  }

  .hero-copy h1 {
    font-size: clamp(1.86rem, 8.4vw, 2.65rem);
  }

  .section {
    padding: 74px 0;
  }

  .trust-grid article,
  .feature-card,
  .blog-card,
  .article-card,
  .value-card,
  .contact-card,
  .article-content,
  .price-card {
    border-radius: 18px;
  }

  .hero-image-card {
    border-radius: 18px;
  }

  .hero-image-card::after {
    inset: 8px;
    border-radius: 13px;
  }

  .hero-image-card figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .card-visual,
  .blog-card .card-visual,
  .feature-card .card-visual {
    height: 180px;
  }

  .media-slot,
  .media-slot-large,
  .article-visual {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .trust-row span {
    width: 100%;
  }

  .hero-live-badge {
    white-space: normal;
  }

  .price-card {
    padding: 22px;
  }
}
