/* The UK IPTV — logo & Union Jack palette (silver · blue · red) */
:root {
  --uk-blue: #012169;
  --uk-blue-mid: #1a4085;
  --uk-blue-bright: #3d6fbe;
  --uk-blue-gloss: #5a8fd9;
  --uk-blue-dark: #000e2e;
  --uk-red: #c8102e;
  --uk-red-bright: #e31837;
  --uk-red-dark: #8b0c22;
  --uk-white: #ffffff;
  --uk-silver: #d4dce8;
  --uk-silver-dim: #9aa8c4;
  --uk-black: #030508;
  --uk-navy: #050a12;
  --uk-navy-mid: #0c1830;
  --bg-deep: #030508;
  --bg-card: rgba(4, 12, 28, 0.88);
  --bg-elevated: rgba(1, 33, 105, 0.22);
  --accent: var(--uk-blue-gloss);
  --accent-2: var(--uk-red-bright);
  --accent-gold: var(--uk-silver);
  --accent-wc: var(--uk-red);
  --text: var(--uk-white);
  --text-muted: #a8b8d4;
  --border: rgba(212, 220, 232, 0.12);
  --glow: 0 0 60px rgba(61, 111, 190, 0.4);
  --glow-red: 0 0 40px rgba(227, 24, 55, 0.38);
  --glow-blue: 0 0 50px rgba(1, 33, 105, 0.45);
  --glow-rgb: 61, 111, 190;
  --glow-red-rgb: 227, 24, 55;
  --glow-silver-rgb: 212, 220, 232;
  --gradient-logo: linear-gradient(90deg, var(--uk-silver) 0%, var(--uk-blue-gloss) 38%, var(--uk-red-bright) 100%);
  --gradient-btn-blue: linear-gradient(135deg, var(--uk-blue-gloss), var(--uk-blue-mid), var(--uk-blue));
  --gradient-btn-red: linear-gradient(135deg, var(--uk-red-bright), var(--uk-red), var(--uk-red-dark));
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
  --header-h: 72px;
  --section-py: clamp(2.25rem, 5vw, 3.5rem);
  --section-gap: clamp(1.5rem, 3vw, 2.25rem);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(165deg, var(--uk-black) 0%, var(--uk-navy) 40%, var(--uk-navy-mid) 70%, var(--uk-blue-dark) 100%);
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Background mesh */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 12% 8%, rgba(var(--glow-rgb), 0.28), transparent 55%),
    radial-gradient(ellipse 55% 42% at 88% 15%, rgba(var(--glow-red-rgb), 0.2), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(var(--glow-silver-rgb), 0.08), transparent 45%),
    linear-gradient(180deg, transparent 0%, rgba(1, 33, 105, 0.14) 45%, rgba(200, 16, 46, 0.1) 100%);
  pointer-events: none;
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(42, 77, 155, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.container { width: min(1200px, 92vw); margin-inline: auto; }
.section { padding: var(--section-py) 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--section-gap); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--uk-silver);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; }

/* Glass */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.glass-strong {
  background: rgba(3, 5, 10, 0.94);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(var(--glow-rgb), 0.2);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding-inline: clamp(0.65rem, 2.5vw, 1.25rem);
  box-sizing: border-box;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(3, 5, 10, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: none;
  box-shadow: 0 4px 30px rgba(0, 20, 60, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  min-height: var(--header-h);
  box-sizing: border-box;
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}
.logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--uk-white);
}
.logo-text span {
  background: linear-gradient(90deg, var(--uk-red), var(--uk-white), var(--uk-blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand .logo-img {
  height: 38px;
  max-width: 220px;
}
.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
  gap: 0.15rem;
  padding: 0.3rem;
  margin-left: auto;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(1, 33, 105, 0.45), rgba(3, 5, 10, 0.65));
  border: 1px solid rgba(var(--glow-silver-rgb), 0.18);
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  isolation: isolate;
}
.nav a {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--uk-silver);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.nav a:not(.nav-cta):not(.nav-reseller):hover {
  color: var(--uk-white);
  background: rgba(255, 255, 255, 0.08);
}
.nav a:not(.nav-cta):not(.nav-reseller).active {
  color: var(--uk-white);
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.85), rgba(61, 111, 190, 0.35));
  box-shadow:
    inset 0 0 0 1px rgba(var(--glow-silver-rgb), 0.22),
    0 0 20px rgba(var(--glow-rgb), 0.25);
}
.nav-cta {
  margin-left: 0.15rem;
  padding: 0.55rem 1.1rem !important;
  background: linear-gradient(135deg, var(--uk-red-bright), var(--uk-red), var(--uk-red-dark)) !important;
  color: var(--uk-white) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow:
    0 4px 20px rgba(var(--glow-red-rgb), 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(var(--glow-red-rgb), 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: var(--uk-white) !important;
}
.nav-reseller {
  margin-left: 0.1rem;
  padding: 0.55rem 1rem !important;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.22), rgba(1, 33, 105, 0.55)) !important;
  color: #f5e6b8 !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.02em;
  border: 1px solid rgba(201, 162, 39, 0.55) !important;
  box-shadow:
    0 4px 18px rgba(201, 162, 39, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}
.nav-reseller:hover {
  transform: translateY(-2px);
  color: #fff8e7 !important;
  border-color: rgba(240, 215, 140, 0.75) !important;
  box-shadow:
    0 8px 26px rgba(201, 162, 39, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.nav-cta-short { display: none; }
.nav-cta-long { display: inline; }

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: 0.35rem;
  padding: 10px;
  border: 1px solid rgba(var(--glow-silver-rgb), 0.25);
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(145deg, rgba(1, 33, 105, 0.55), rgba(200, 16, 46, 0.25));
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  z-index: 1001;
}
.menu-toggle:hover {
  border-color: rgba(var(--glow-silver-rgb), 0.45);
  box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.3);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--uk-silver), var(--uk-white));
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}
body.nav-open::before {
  content: "";
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 998;
  background: rgba(0, 8, 24, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: nav-backdrop-in 0.35s ease;
}
@keyframes nav-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  position: relative;
  overflow-x: clip;
}
.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -15%;
  width: min(560px, 75vw);
  height: min(560px, 75vw);
  background:
    radial-gradient(circle at 30% 40%, rgba(var(--glow-rgb), 0.25) 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(var(--glow-red-rgb), 0.15) 0%, transparent 50%);
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
}
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.05); }
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: min(920px, 94vw);
  max-width: 920px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}
.hero-content > * {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: calc(100% - 1rem);
  margin-inline: auto;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: clamp(0.72rem, 2.5vw, 0.85rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.55), rgba(200, 16, 46, 0.25));
  border: 1px solid rgba(var(--glow-silver-rgb), 0.25);
  color: var(--uk-silver);
  box-sizing: border-box;
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-content .hero-badge {
  align-self: center;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.3); }
  50% { box-shadow: 0 0 35px rgba(var(--glow-red-rgb), 0.35); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.hero h1 .hero-h1-title {
  display: block;
}
.hero h1 .hero-h1-lead {
  display: block;
  margin-top: 0.85rem;
  font-size: clamp(0.9rem, 2.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text-muted);
}
.hero h1 .gradient {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
}
.hero-sub p {
  margin: 0 0 1rem;
}
.hero-sub p:last-child {
  margin-bottom: 0;
}
.hero-sub-lead {
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  color: var(--text);
}
.hero-sub-lead strong {
  font-weight: 700;
}
.hero-sub strong {
  color: var(--uk-silver);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient-btn-blue);
  color: var(--uk-white);
  box-shadow: 0 4px 28px rgba(var(--glow-rgb), 0.5);
  border: 1px solid rgba(var(--glow-silver-rgb), 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(var(--glow-rgb), 0.55);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--uk-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
  background: rgba(var(--glow-rgb), 0.15);
  border-color: var(--uk-blue-bright);
  box-shadow: 0 0 24px rgba(var(--glow-rgb), 0.2);
}
.btn-gold {
  background: var(--gradient-btn-red);
  color: var(--uk-white);
  box-shadow: var(--glow-red);
}
.btn-gold:hover {
  box-shadow: 0 8px 36px rgba(var(--glow-red-rgb), 0.5);
  transform: translateY(-2px);
}
.btn-reseller {
  background: linear-gradient(135deg, #d4af37 0%, #9a7b1a 45%, #012169 100%);
  color: var(--uk-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.35);
}
.btn-reseller:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201, 162, 39, 0.45);
}

/* Reseller programme */
.reseller-panel {
  margin-top: var(--section-gap);
}
.reseller-panel-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.35) 0%, rgba(3, 5, 10, 0.92) 55%, rgba(201, 162, 39, 0.08) 100%);
}
.reseller-panel-copy .section-label {
  margin-bottom: 0.5rem;
}
.reseller-panel-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 0.65rem;
}
.reseller-panel-copy > p {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.reseller-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
}
.reseller-perks li {
  font-size: 0.9rem;
  color: var(--uk-silver);
}
.reseller-perks li::before {
  content: "✓ ";
  color: #d4af37;
  font-weight: 700;
}
.reseller-panel-action {
  text-align: center;
  min-width: min(100%, 220px);
}
.reseller-panel-action .btn-reseller {
  width: 100%;
  justify-content: center;
}
.reseller-panel-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pricing-reseller-cta {
  margin-top: 2rem;
}
.pricing-reseller-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.4) 0%, rgba(3, 5, 10, 0.9) 50%, rgba(201, 162, 39, 0.1) 100%);
}
.pricing-reseller-cta-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 0.35rem;
}
.pricing-reseller-cta-copy p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 42ch;
  margin: 0;
  line-height: 1.5;
}
.pricing-reseller-cta .btn-reseller {
  flex-shrink: 0;
  white-space: nowrap;
}

body.reseller-open {
  overflow: hidden;
}
.reseller-overlay .reseller-panel::before {
  background: linear-gradient(135deg, #d4af37, var(--uk-white), var(--uk-blue-bright));
  opacity: 0.45;
}
.reseller-panel-badge {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.35), rgba(1, 33, 105, 0.5));
  border-color: rgba(201, 162, 39, 0.45);
  color: #f5e6b8;
}
.reseller-plan-pick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 480px) {
  .reseller-plan-pick {
    grid-template-columns: repeat(4, 1fr);
  }
}
.reseller-plan-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--uk-silver);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.reseller-plan-option strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--uk-white);
}
.reseller-plan-option span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.reseller-plan-option:hover {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.08);
}
.reseller-plan-option.is-active {
  border-color: rgba(201, 162, 39, 0.65);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(1, 33, 105, 0.45));
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.2);
}
.reseller-plan-summary {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.22);
}
.reseller-plan-summary-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d4af37;
  margin-bottom: 0.35rem;
}
.reseller-plan-summary-detail {
  font-size: 0.88rem;
  color: var(--uk-silver);
  margin: 0 0 0.35rem;
  line-height: 1.45;
}
.reseller-plan-summary-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #f5e6b8;
  margin: 0;
}
.multi-textarea {
  resize: vertical;
  min-height: 4.5rem;
}
.reseller-overlay .multi-cta {
  width: 100%;
}

/* Countdown */
.countdown-wrap {
  margin-top: 0.75rem;
  padding: 1.25rem clamp(1rem, 4vw, 1.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
}
.countdown-wrap h3 {
  font-size: clamp(0.75rem, 2.2vw, 0.85rem);
  font-weight: 600;
  color: var(--uk-silver);
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.countdown-item {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: var(--radius);
  background: rgba(1, 33, 105, 0.4);
  border: 1px solid rgba(var(--glow-rgb), 0.35);
}
.countdown-item span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--uk-silver);
  line-height: 1;
}
.countdown-item small {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
  display: block;
}

/* Stats — hero + inner page heroes */
.hero .stats-row,
.page-hero .stats-row {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.5vw, 1.25rem);
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}
.hero .stat-item,
.page-hero .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 6.25rem;
  padding: clamp(0.85rem, 2vw, 1.25rem) clamp(0.45rem, 1.2vw, 0.75rem);
  text-align: center;
}
.hero .stat-item strong,
.page-hero .stat-item strong {
  font-size: clamp(0.95rem, 2vw, 1.45rem);
  line-height: 1.15;
  margin-bottom: 0.35rem;
  word-break: break-word;
}
.hero .stat-item span,
.page-hero .stat-item span {
  font-size: clamp(0.68rem, 1.5vw, 0.82rem);
  line-height: 1.35;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.stat-item {
  text-align: center;
  padding: 1.25rem;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item span { font-size: 0.85rem; color: var(--text-muted); }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--glow-rgb), 0.35);
  box-shadow: var(--glow);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(var(--glow-rgb), 0.25), rgba(var(--glow-rgb), 0.08));
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* Channel slider */
.channels-section { overflow: hidden; }
.channels-slider-wrap {
  position: relative;
  padding: 1rem 0;
}
.channels-track {
  display: flex;
  gap: 1.25rem;
  animation: scroll-channels 40s linear infinite;
  width: max-content;
}
.channels-track:hover { animation-play-state: paused; }
@keyframes scroll-channels {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.channel-pill {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.channel-pill.sport { border-color: rgba(var(--glow-red-rgb), 0.55); color: var(--uk-red-bright); }
.channel-pill.news { border-color: rgba(255, 255, 255, 0.25); }
.channel-pill.cinema { border-color: rgba(var(--glow-rgb), 0.35); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: rgba(var(--glow-rgb), 0.55);
  box-shadow: var(--glow), 0 0 40px rgba(var(--glow-red-rgb), 0.15);
  transform: scale(1.02);
  background: linear-gradient(180deg, rgba(1, 33, 105, 0.2) 0%, var(--bg-card) 45%);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, var(--uk-red), var(--uk-red-dark));
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.price-showcase {
  position: relative;
  margin: 1.15rem 0 1.25rem;
  padding: 1.35rem 1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(1, 33, 105, 0.35) 0%, rgba(3, 5, 10, 0.85) 55%, rgba(200, 16, 46, 0.12) 100%);
  border: 1px solid rgba(var(--glow-rgb), 0.28);
  overflow: hidden;
  text-align: center;
}
.price-showcase::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 50% 0%, rgba(61, 111, 190, 0.35), transparent 55%);
  pointer-events: none;
}
.price-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--uk-blue-bright), var(--uk-red-bright), transparent);
  opacity: 0.7;
}
.price-flash {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffe8a8;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 999px;
}
.price-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.price-compare {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(227, 24, 55, 0.75);
  letter-spacing: 0.02em;
}
.price-hero-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.45rem;
  background: linear-gradient(180deg, #fff 0%, var(--uk-silver) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-number {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, var(--uk-blue-bright) 45%, #f5c6cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 20px rgba(var(--glow-rgb), 0.35));
}
.price-period {
  position: relative;
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}
.price-split {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b8e6ff;
  background: rgba(61, 111, 190, 0.2);
  border: 1px solid rgba(61, 111, 190, 0.35);
  border-radius: 999px;
}
.price-card.featured .price-showcase {
  border-color: rgba(var(--glow-red-rgb), 0.45);
  box-shadow: 0 0 32px rgba(var(--glow-rgb), 0.25), inset 0 0 40px rgba(var(--glow-red-rgb), 0.08);
  animation: price-showcase-pulse 4s ease-in-out infinite;
}
.price-card.featured .price-number {
  background: linear-gradient(135deg, #fff 0%, #7dffb8 35%, var(--uk-blue-bright) 70%, #ffc9d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
@keyframes price-showcase-pulse {
  0%, 100% { box-shadow: 0 0 28px rgba(var(--glow-rgb), 0.2), inset 0 0 30px rgba(var(--glow-red-rgb), 0.06); }
  50% { box-shadow: 0 0 40px rgba(var(--glow-rgb), 0.38), inset 0 0 50px rgba(var(--glow-red-rgb), 0.12); }
}
/* legacy fallbacks */
.price-amount-wrap { margin: 1rem 0; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  color: var(--uk-white);
}
.price-amount small { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-features { flex: 1; margin: 1.5rem 0; }
.price-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-card .btn { width: 100%; margin-top: auto; }

.pricing-section { scroll-margin-top: 5rem; }
.pricing-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.pricing-section .pricing-tabs { display: flex; justify-content: center; width: fit-content; margin-left: auto; margin-right: auto; }
.pricing-tab {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.pricing-tab-active {
  color: #fff;
  background: linear-gradient(135deg, var(--uk-blue), var(--uk-blue-bright));
  box-shadow: 0 4px 20px rgba(var(--glow-rgb), 0.4);
}
button.pricing-tab:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.pricing-promo {
  text-align: center;
  font-size: 0.9rem;
  color: var(--uk-silver);
  margin-bottom: 1.25rem;
}
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-grid-4 { grid-template-columns: 1fr; }
}
.price-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.price-bonus {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--uk-silver);
  margin: -0.5rem 0 0.5rem;
}
.price-guarantee {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}
.price-badge-popular {
  background: linear-gradient(135deg, var(--uk-red), var(--uk-red-dark));
}
.price-badge-elite {
  left: 1.5rem;
  transform: none;
  background: var(--gradient-btn-blue);
}
.price-card .price-badge-elite + .price-plan-name { margin-top: 0.5rem; }
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.btn-plan:hover {
  border-color: rgba(var(--glow-rgb), 0.6);
  background: rgba(var(--glow-rgb), 0.12);
}
.btn-plan-primary {
  background: linear-gradient(135deg, var(--uk-red), var(--uk-red-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 28px rgba(var(--glow-red-rgb), 0.35);
}
.btn-plan-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.pricing-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.pricing-trust-item {
  text-align: center;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pricing-trust-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.pricing-trust-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .pricing-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pricing-trust { grid-template-columns: 1fr; }
}

/* Reviews */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card { padding: 2rem; }
.review-stars { color: var(--uk-red-bright); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; text-shadow: 0 0 12px rgba(var(--glow-red-rgb), 0.4); }
.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-logo);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

/* Devices */
.devices-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.device-item {
  text-align: center;
  padding: 1.35rem 1.5rem 1.5rem;
  min-width: 118px;
  flex: 1 1 118px;
  max-width: 160px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.device-item:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--glow-rgb), 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(var(--glow-rgb), 0.12);
}
.device-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}
.device-item span {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--uk-silver);
  letter-spacing: 0.02em;
}
.device-item .icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-family: var(--font-display);
  font-weight: 600;
  background: rgba(var(--glow-rgb), 0.1);
}
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .highlight { color: var(--accent); font-weight: 600; }
.check { color: var(--accent); }
.cross { color: var(--uk-red-bright); }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.step-card { padding: 2rem; position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(var(--glow-rgb), 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-form { padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--glow-rgb), 0.2);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info { padding: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(var(--glow-rgb), 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* Footer */
.footer {
  padding: var(--section-py) 0 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: var(--section-py);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--accent); }
.footer-keywords {
  font-size: 0.75rem;
  color: rgba(156, 163, 184, 0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: clamp(16px, 3vw, 24px);
  right: clamp(16px, 3vw, 24px);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 58px;
  padding: 0 1rem 0 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 45%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.45),
    0 2px 12px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 40px rgba(37, 211, 102, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  outline: none;
}
.whatsapp-float-rings {
  position: absolute;
  left: 0;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
  pointer-events: none;
}
.whatsapp-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.65);
  animation: wa-ring-pulse 2.4s ease-out infinite;
}
.whatsapp-float-ring--delay {
  animation-delay: 1.2s;
}
@keyframes wa-ring-pulse {
  0% { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(1.85); opacity: 0; }
}
.whatsapp-float-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}
.whatsapp-float-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.whatsapp-float-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-right: 0.25rem;
  line-height: 1.2;
  text-align: left;
}
.whatsapp-float-copy strong {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.whatsapp-float-copy small {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.92;
}
.whatsapp-float-live {
  position: absolute;
  top: -4px;
  right: -2px;
  z-index: 2;
  padding: 0.2rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0a3d1f;
  background: #b8ffcf;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  animation: wa-live-blink 2s ease-in-out infinite;
}
@keyframes wa-live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}
@media (max-width: 640px) {
  .whatsapp-float {
    padding: 0;
    min-height: 58px;
    width: 58px;
    border-radius: 50%;
    justify-content: center;
  }
  .whatsapp-float-copy {
    display: none;
  }
  .whatsapp-float-live {
    top: 2px;
    right: 2px;
    padding: 0.15rem 0.35rem;
    font-size: 0.55rem;
  }
}

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 2rem) 0 var(--section-py);
  text-align: center;
}
.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero .stats-row {
  align-self: stretch;
  width: 100%;
}
.page-hero .hero-badge {
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.page-hero + .section {
  padding-top: 0;
}

/* WC banner */
.wc-banner {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.35), rgba(255, 255, 255, 0.06), rgba(var(--glow-red-rgb), 0.18));
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  margin: 1rem 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.wc-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--accent); }

/* Header — compact desktop bar */
@media (min-width: 901px) and (max-width: 1180px) {
  .logo-img { height: 38px; }
  .nav { gap: 0.1rem; padding: 0.25rem; }
  .nav a { font-size: 0.78rem; padding: 0.42rem 0.55rem; }
  .nav-cta { font-size: 0.72rem !important; padding: 0.45rem 0.7rem !important; }
  .nav-reseller { font-size: 0.72rem !important; padding: 0.45rem 0.65rem !important; }
  .nav-cta-long { display: none; }
  .nav-cta-short { display: inline; }
}

@media (min-width: 1181px) {
  .nav-cta-short { display: none; }
  .nav-cta-long { display: inline; }
}

/* Responsive */
@media (max-width: 900px) {
  .logo { max-width: calc(100% - 52px); }
  .logo-img { height: 36px; }
  .nav {
    position: fixed;
    flex: none;
    margin-left: 0;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 1.35rem 1rem 1.5rem;
    margin: 0;
    border-radius: 0 0 20px 20px;
    border: none;
    background:
      linear-gradient(180deg, rgba(1, 33, 105, 0.96) 0%, rgba(5, 10, 22, 0.98) 55%, rgba(200, 16, 46, 0.14) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    max-height: min(85vh, calc(100dvh - var(--header-h)));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      visibility 0s linear 0.4s,
      opacity 0.35s ease,
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav::after {
    content: "65,000+ channels · Sport · Movies · 4K";
    display: block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--uk-silver-dim);
    text-align: center;
    line-height: 1.35;
    padding-bottom: 0.75rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid rgba(var(--glow-silver-rgb), 0.12);
  }
  .nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      visibility 0s,
      opacity 0.35s ease,
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav a:not(.nav-cta):not(.nav-reseller)::before {
    content: "";
    flex-shrink: 0;
    width: 3px;
    height: 1.1rem;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--uk-blue-bright), var(--uk-red));
    opacity: 0.35;
    transition: opacity var(--transition), height var(--transition);
  }
  .nav a:not(.nav-cta):not(.nav-reseller):hover::before,
  .nav a:not(.nav-cta):not(.nav-reseller).active::before {
    opacity: 1;
    height: 1.35rem;
  }
  .nav a:not(.nav-cta):not(.nav-reseller).active {
    background: linear-gradient(90deg, rgba(1, 33, 105, 0.65), rgba(200, 16, 46, 0.12));
    border-color: rgba(var(--glow-silver-rgb), 0.22);
    box-shadow: inset 3px 0 0 var(--uk-red);
  }
  .nav-reseller {
    margin-left: 0;
    margin-top: 0.35rem;
    justify-content: center;
    text-align: center;
    padding: 0.95rem 1.25rem !important;
    font-size: 0.9rem !important;
    border: 2px solid rgba(201, 162, 39, 0.5) !important;
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.25);
  }
  .nav-reseller::before {
    display: none;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.25rem !important;
    font-size: 0.92rem !important;
    background: linear-gradient(135deg, var(--uk-red-bright), var(--uk-red), var(--uk-blue-mid)) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow:
      0 8px 32px rgba(var(--glow-red-rgb), 0.5),
      0 0 0 1px rgba(1, 33, 105, 0.5);
  }
  .nav-cta::before {
    display: none;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 900px) {
  .reseller-panel-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .reseller-panel-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .reseller-perks {
    justify-content: center;
  }
  .pricing-reseller-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .pricing-reseller-cta-copy p {
    margin-inline: auto;
  }
  .pricing-reseller-cta .btn-reseller {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .hero .stats-row,
  .page-hero .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero .stat-item:nth-child(5),
  .page-hero .stat-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.35rem);
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-content {
    width: min(920px, 96vw);
    padding-inline: 1rem;
  }
  .countdown-wrap {
    padding: 1.25rem 1rem;
  }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { width: 100%; }
  .hero .stat-item,
  .page-hero .stat-item {
    min-height: 5.5rem;
  }
}

/* Pricing toolbar + Multi-écrans */
.pricing-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.btn-multi {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  background: rgba(18, 20, 28, 0.8);
  border: 1px solid rgba(var(--glow-rgb), 0.45);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow:
    0 0 24px rgba(var(--glow-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.btn-multi:hover {
  border-color: rgba(var(--glow-rgb), 0.75);
  box-shadow:
    0 0 40px rgba(var(--glow-rgb), 0.45),
    0 0 80px rgba(var(--glow-rgb), 0.2);
  transform: translateY(-2px);
}
.btn-multi-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: #ffffff;
}

/* Multi-écrans panel */
.multi-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.multi-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.multi-panel {
  position: relative;
  width: min(540px, 100%);
  max-height: min(92vh, 860px);
  overflow-y: auto;
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: rgba(12, 14, 22, 0.92);
  border: 1px solid rgba(var(--glow-rgb), 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 60px rgba(var(--glow-rgb), 0.15),
    0 0 120px rgba(var(--glow-rgb), 0.08),
    0 24px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.multi-overlay.is-open .multi-panel {
  transform: scale(1) translateY(0);
}
.multi-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--uk-blue), var(--uk-white), var(--uk-red));
  opacity: 0.35;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.multi-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.multi-close:hover {
  color: var(--text);
  border-color: rgba(var(--glow-rgb), 0.5);
  box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.3);
}
.multi-panel-head {
  margin-bottom: 1.75rem;
  padding-right: 2.5rem;
}
.multi-panel-head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.multi-panel-head p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.multi-field {
  margin-bottom: 1.5rem;
}
.multi-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.multi-field label strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.multi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}
.multi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.65);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.multi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}
.multi-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.65);
  cursor: pointer;
}
.multi-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: rgba(156, 163, 184, 0.5);
}
.multi-select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.multi-select:hover,
.multi-select:focus {
  outline: none;
  border-color: rgba(var(--glow-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--glow-rgb), 0.15);
}
.multi-bonus {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--accent-wc);
  padding: 0.25rem 0.6rem;
  background: rgba(var(--glow-rgb), 0.1);
  border-radius: 6px;
  border: 1px solid rgba(var(--glow-rgb), 0.3);
}
.multi-bonus[hidden] { display: none; }
.multi-total-wrap {
  margin: 1rem 0 0;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  box-shadow:
    0 0 40px rgba(var(--glow-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.multi-total-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.multi-total-price {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 45%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(var(--glow-rgb), 0.55));
  transition: transform 0.3s ease;
}
.multi-total-price.is-updating {
  transform: scale(1.04);
}
.multi-total-detail {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.multi-cta {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}
.multi-panel-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--uk-silver);
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.5rem;
  border-radius: 999px;
  background: rgba(var(--glow-rgb), 0.2);
  border: 1px solid rgba(var(--glow-silver-rgb), 0.2);
}
.multi-mode-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0.3rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}
.multi-mode-tab {
  flex: 1;
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.multi-mode-tab:hover {
  color: var(--uk-white);
}
.multi-mode-tab.is-active {
  color: var(--uk-white);
  background: linear-gradient(135deg, rgba(var(--glow-rgb), 0.45), rgba(1, 33, 105, 0.8));
  box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.25);
}
.multi-form-section {
  margin-top: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.multi-form-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}
.multi-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.multi-form-field {
  margin-bottom: 0.85rem;
  text-align: left;
}
.multi-form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.multi-form-field label span {
  color: var(--uk-red-bright);
}
.multi-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}
.multi-input:hover,
.multi-input:focus {
  outline: none;
  border-color: rgba(var(--glow-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--glow-rgb), 0.12);
}
.multi-input.is-invalid {
  border-color: rgba(var(--glow-red-rgb), 0.65);
  box-shadow: 0 0 0 3px rgba(var(--glow-red-rgb), 0.15);
}
.multi-phone-row {
  display: flex;
  gap: 0.5rem;
}
.multi-select-dial {
  width: 108px;
  flex-shrink: 0;
  padding: 0.75rem 0.5rem;
}
.multi-phone-row .multi-input {
  flex: 1;
  min-width: 0;
}
.multi-field-error {
  display: block;
  font-size: 0.72rem;
  color: var(--uk-red-bright);
  margin-top: 0.35rem;
}
.multi-field-error[hidden] {
  display: none;
}
.multi-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.88rem;
  text-align: left;
}
.multi-check input {
  margin-top: 0.15rem;
  accent-color: var(--uk-blue-bright);
}
.multi-form-note {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}
.multi-checkout-link {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--uk-blue-bright);
  text-align: center;
  transition: color var(--transition);
}
.multi-checkout-link:hover {
  color: var(--uk-white);
}
@media (max-width: 520px) {
  .multi-form-row {
    grid-template-columns: 1fr;
  }
  .multi-panel {
    padding: 1.5rem 1.15rem 1.75rem;
  }
}
body.multi-open { overflow: hidden; }

/* Exit-intent offer */
.exit-offer-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(3, 5, 10, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.exit-offer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.exit-offer-panel {
  position: relative;
  width: min(440px, 100%);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--glow-red-rgb), 0.45);
  background: linear-gradient(165deg, rgba(1, 33, 105, 0.5) 0%, rgba(8, 10, 18, 0.96) 45%, rgba(200, 16, 46, 0.15) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(var(--glow-red-rgb), 0.25);
  transform: scale(0.9) translateY(16px);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  text-align: center;
}
.exit-offer-overlay.is-open .exit-offer-panel {
  transform: scale(1) translateY(0);
}
.exit-offer-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.exit-offer-close:hover {
  color: var(--uk-white);
  border-color: rgba(var(--glow-rgb), 0.45);
}
.exit-offer-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffe8a8;
  background: linear-gradient(135deg, rgba(227, 24, 55, 0.35), rgba(1, 33, 105, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}
.exit-offer-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.exit-offer-lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.exit-offer-price {
  padding: 1.25rem 1rem;
  margin-bottom: 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(var(--glow-rgb), 0.3);
}
.exit-offer-compare {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(227, 24, 55, 0.8);
  margin-bottom: 0.2rem;
}
.exit-offer-hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.05rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.exit-offer-currency {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: var(--uk-silver);
}
.exit-offer-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #7dffb8 40%, var(--uk-blue-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.exit-offer-period {
  display: block;
  font-size: 0.9rem;
  color: var(--uk-silver);
  margin-bottom: 0.4rem;
}
.exit-offer-bonus {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #7dffb8;
  background: rgba(61, 175, 92, 0.15);
  border: 1px solid rgba(61, 175, 92, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.exit-offer-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.exit-offer-perks li::before {
  content: "✓ ";
  color: #7dffb8;
  font-weight: 700;
}
.exit-offer-cta {
  width: 100%;
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 8px 32px rgba(var(--glow-red-rgb), 0.45);
}
.exit-offer-dismiss {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.exit-offer-dismiss:hover {
  color: var(--uk-white);
}
body.exit-offer-open {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .exit-offer-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .exit-offer-panel {
    width: 100%;
    max-width: none;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1.75rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
  }
  .exit-offer-overlay.is-open .exit-offer-panel {
    transform: translateY(0);
  }
  .exit-offer-cta {
    font-size: 1.1rem;
    padding: 1.05rem 1.25rem;
    min-height: 52px;
  }
  .exit-offer-dismiss {
    padding: 0.75rem;
    min-height: 44px;
  }
}

/* Performance — Core Web Vitals helpers */
img {
  max-width: 100%;
  height: auto;
}
.footer img.logo-img,
.header img.logo-img {
  loading: eager;
}
@supports (content-visibility: auto) {
  .section:not(.hero):not(.page-hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 480px;
  }
}
/* SEO content, trust & FAQ */
.seo-keyword-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.seo-keyword-grid .card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--uk-white);
}
.seo-keyword-grid .card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}
.seo-keyword-grid .card a {
  color: var(--uk-blue-gloss);
  font-weight: 600;
  font-size: 0.88rem;
}
.seo-keyword-grid .card a:hover {
  color: var(--uk-white);
}
.trust-badges {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.trust-badges li {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: var(--radius);
}
.trust-badges li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--uk-blue-gloss);
  margin-bottom: 0.35rem;
}
.trust-badges li span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--uk-white);
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--uk-blue-gloss);
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 1.15rem 1.15rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item a {
  color: var(--uk-blue-gloss);
}
.faq-item a:hover {
  color: var(--uk-white);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
