/* TOP SITE IPTV — palette tricolore (argent · bleu · rouge) */
@import url("icons.css");
: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: #ffffff;
  --bg-card: #ffffff;
  --bg-elevated: #f0f4fa;
  --accent: var(--uk-blue-gloss);
  --accent-2: var(--uk-red-bright);
  --accent-gold: var(--uk-blue-mid);
  --accent-wc: var(--uk-red);
  --text: #0b1220;
  --text-muted: #3d5066;
  --text-soft: #5c6f85;
  --border: rgba(1, 33, 105, 0.18);
  --border-strong: rgba(1, 33, 105, 0.32);
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-muted: #e9eef5;
  --glow: 0 4px 24px rgba(61, 111, 190, 0.12);
  --glow-red: 0 4px 20px rgba(227, 24, 55, 0.15);
  --glow-blue: 0 4px 24px rgba(1, 33, 105, 0.1);
  --glow-rgb: 61, 111, 190;
  --glow-red-rgb: 227, 24, 55;
  --glow-silver-rgb: 180, 190, 210;
  --gradient-logo: linear-gradient(90deg, var(--uk-blue) 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: 98px;
  --logo-bar-h: 68px;
  --nav-bar-h: 54px;
  --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(180deg, #ffffff 0%, #f8fafc 45%, #f0f4f8 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.08), transparent 55%),
    radial-gradient(ellipse 55% 42% at 88% 15%, rgba(var(--glow-red-rgb), 0.06), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(var(--glow-silver-rgb), 0.12), transparent 45%);
  pointer-events: none;
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(1, 33, 105, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 33, 105, 0.04) 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-blue-mid);
  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(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 22px rgba(1, 33, 105, 0.09);
}
.glass-strong {
  background: var(--surface);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-strong);
  box-shadow: 0 10px 32px rgba(1, 33, 105, 0.11);
}

/* 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, 2vw, 1.25rem);
  box-sizing: border-box;
  transition: height var(--transition), var(--transition);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 24px rgba(1, 33, 105, 0.07);
}
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--uk-blue) 0%, var(--uk-blue) 33%, var(--uk-white) 33%, var(--uk-white) 66%, var(--uk-red) 66%, var(--uk-red) 100%);
  opacity: 0.85;
  pointer-events: none;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 28px rgba(1, 33, 105, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  min-height: calc(var(--header-h) - 3px);
  box-sizing: border-box;
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(680px, 52vw);
  margin-right: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}
.logo-img {
  display: block;
  width: 680px;
  height: 92px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.header .logo-img {
  width: auto;
  height: var(--logo-bar-h);
  max-width: 100%;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--uk-blue);
}
.logo-text span {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand .logo-img {
  width: 680px;
  height: 92px;
  max-width: 100%;
}
.header-right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  gap: 0.85rem;
  margin-left: auto;
  justify-content: flex-end;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  justify-content: flex-end;
  width: auto;
  min-width: 0;
  max-width: none;
  gap: 0.12rem;
  padding: 0.48rem 0.52rem;
  min-height: var(--nav-bar-h);
  height: auto;
  box-sizing: border-box;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(1, 33, 105, 0.11);
  box-shadow: 0 2px 12px rgba(1, 33, 105, 0.07);
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.header-offres-btn {
  flex: 0 0 auto;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.25rem;
  min-height: var(--nav-bar-h);
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, var(--uk-red-bright), var(--uk-red));
  box-shadow: 0 3px 14px rgba(var(--glow-red-rgb), 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-offres-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(var(--glow-red-rgb), 0.32);
}

.header-offres-btn.is-active {
  background: linear-gradient(135deg, var(--uk-blue), var(--uk-blue-mid));
  box-shadow: 0 4px 16px rgba(1, 33, 105, 0.25);
}

.header-offres-btn-short {
  display: none;
}

.header-offres-btn-long {
  display: inline;
}
.nav a {
  position: relative;
  z-index: 1;
  font-size: 0.94rem;
  font-weight: 600;
  color: #334155;
  padding: 0.56rem 0.82rem;
  border-radius: 11px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.25;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-t-short { display: none; }
.nav a:not(.nav-cta):not(.nav-reseller):hover {
  color: var(--uk-blue);
  background: rgba(1, 33, 105, 0.07);
}
.nav a:not(.nav-cta):not(.nav-reseller).active {
  color: var(--uk-white);
  background: linear-gradient(135deg, var(--uk-blue) 0%, var(--uk-blue-mid) 100%);
  box-shadow: 0 1px 6px rgba(1, 33, 105, 0.18);
}
.nav-cta {
  margin-left: 0.15rem;
  padding: 0.56rem 1.05rem !important;
  background: linear-gradient(135deg, var(--uk-red-bright), var(--uk-red), var(--uk-red-dark)) !important;
  color: var(--uk-white) !important;
  border-radius: 11px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow:
    0 3px 12px rgba(var(--glow-red-rgb), 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 4px 14px rgba(var(--glow-red-rgb), 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: var(--uk-white) !important;
}
.nav-reseller {
  margin-left: 0.1rem;
  padding: 0.56rem 0.95rem !important;
  background: linear-gradient(135deg, #fffdf5 0%, #f3e4b8 100%) !important;
  color: #5c4208 !important;
  border-radius: 11px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.02em;
  border: 1px solid rgba(201, 162, 39, 0.4) !important;
  box-shadow: 0 1px 6px rgba(201, 162, 39, 0.14);
  white-space: nowrap;
}
.nav-reseller:hover {
  transform: translateY(-1px);
  color: #4a3606 !important;
  border-color: rgba(201, 162, 39, 0.55) !important;
  box-shadow: 0 3px 10px rgba(201, 162, 39, 0.22);
}
.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: 40px;
  height: 40px;
  margin-left: auto;
  padding: 9px;
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 999px;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(1, 33, 105, 0.08);
  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: var(--uk-blue);
  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(255, 255, 255, 0.82);
  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-blue);
  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-blue-mid);
  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: #ffffff;
  color: var(--uk-blue);
  border: 1px solid rgba(1, 33, 105, 0.2);
}
.btn-secondary:hover {
  background: rgba(1, 33, 105, 0.06);
  border-color: var(--uk-blue-bright);
  box-shadow: 0 0 24px rgba(var(--glow-rgb), 0.12);
}
.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.06) 0%, #ffffff 55%, rgba(201, 162, 39, 0.06) 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(--text-muted);
}
.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.08) 0%, #ffffff 50%, rgba(201, 162, 39, 0.06) 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: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.35);
  color: #7a5c0a;
}
.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 var(--border);
  background: #f8fafc;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.reseller-plan-option strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}
.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.12), rgba(1, 33, 105, 0.06));
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.12);
}
.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: #9a7b1a;
  margin-bottom: 0.35rem;
}
.reseller-plan-summary-detail {
  font-size: 0.88rem;
  color: var(--text-muted);
  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: #7a5c0a;
  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(--text-muted);
  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: #f5f7fb;
  border: 1px solid var(--border);
}
.countdown-item span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--uk-blue);
  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;
}

/* Hero — UK sport IPTV panel */
.hero-sport-panel {
  margin-top: 0.85rem;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.06) 0%, #ffffff 45%, rgba(200, 16, 46, 0.04) 100%);
  box-shadow: 0 8px 32px rgba(1, 33, 105, 0.08);
}
.hero-sport-panel-inner {
  padding: clamp(1.15rem, 3vw, 1.5rem);
}
.hero-sport-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--uk-red-bright);
  margin-bottom: 0.65rem;
}
.hero-sport-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--uk-red-bright);
  box-shadow: 0 0 12px rgba(227, 24, 55, 0.45);
  animation: hero-sport-pulse 1.8s ease-in-out infinite;
}
@keyframes hero-sport-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.hero-sport-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.hero-sport-desc {
  font-size: clamp(0.88rem, 2.2vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 36rem;
}
.hero-sport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.hero-sport-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(1, 33, 105, 0.08);
  border: 1px solid rgba(1, 33, 105, 0.14);
  color: var(--uk-blue-mid);
  white-space: nowrap;
}
.hero-sport-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}
.hero-sport-stat {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius);
  background: #f5f7fb;
  border: 1px solid var(--border);
}
.hero-sport-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--uk-blue);
  line-height: 1;
}
.hero-sport-stat span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-sport-stat-accent {
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.08), rgba(1, 33, 105, 0.1));
  border-color: rgba(var(--glow-red-rgb), 0.25);
}
.hero-sport-stat-accent strong {
  background: linear-gradient(90deg, var(--uk-blue), var(--uk-red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sport-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--uk-white);
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uk-red-bright), var(--uk-blue-mid));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 24px rgba(var(--glow-red-rgb), 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-sport-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(var(--glow-red-rgb), 0.5);
  color: var(--uk-white);
}

/* 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;
}
/* Homepage — 4 feature cards in one row */
.cards-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
  align-items: stretch;
}
.cards-grid--4 .card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.15rem, 1.8vw, 1.65rem);
  height: 100%;
}
.cards-grid--4 .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 0.85rem;
}
.cards-grid--4 .card h3 {
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}
.cards-grid--4 .card p {
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  line-height: 1.45;
  flex: 1;
}
@media (max-width: 720px) {
  .cards-grid--4 {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.85rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .cards-grid--4 .card {
    flex: 0 0 min(72vw, 240px);
    scroll-snap-align: start;
  }
}
.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: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 0;
  margin-bottom: 1.25rem;
  background: linear-gradient(145deg, #012169 0%, #1d4ed8 52%, #c8102e 130%);
  box-shadow: 0 6px 18px rgba(1, 33, 105, 0.22);
}
.card-icon:not([class*="icon-"]) {
  background: linear-gradient(145deg, rgba(1, 33, 105, 0.12), rgba(61, 111, 190, 0.18));
  box-shadow: none;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.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 marquee — centered pill row */
.channel-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 0.85rem;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0.5rem 0 0.25rem;
}
.channel-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.channel-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--uk-silver-dim);
  opacity: 0.85;
}
.channel-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 33, 105, 0.1);
}
.channel-pill.sport {
  border-color: rgba(var(--glow-red-rgb), 0.55);
  color: var(--uk-red-bright);
  background: linear-gradient(135deg, #fff8f9 0%, #ffffff 100%);
}
.channel-pill.sport::before { background: var(--uk-red-bright); box-shadow: 0 0 8px rgba(var(--glow-red-rgb), 0.45); }
.channel-pill.news {
  border-color: rgba(1, 33, 105, 0.2);
  color: var(--uk-blue-mid);
  background: linear-gradient(135deg, #f4f7fb 0%, #ffffff 100%);
}
.channel-pill.news::before { background: var(--uk-blue-mid); }
.channel-pill.cinema {
  border-color: rgba(var(--glow-rgb), 0.35);
  color: var(--uk-blue);
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
}
.channel-pill.cinema::before { background: var(--uk-blue-bright); }
.channel-pill.kids {
  border-color: rgba(90, 143, 217, 0.4);
  color: #1a5f8a;
  background: linear-gradient(135deg, #eef8ff 0%, #ffffff 100%);
}
.channel-pill.kids::before { background: linear-gradient(135deg, #3d9ee8, #7b5cff); }

/* Featured streaming pill — Netflix & Prime */
.channel-pill--featured {
  position: relative;
  padding: 0.7rem 1.35rem 0.7rem 1.1rem;
  border: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, #b20710 0%, #1a237e 52%, #00a8e1 100%);
  background-size: 200% 200%;
  animation: channel-pill-shine 6s ease infinite;
  box-shadow:
    0 4px 18px rgba(178, 7, 16, 0.28),
    0 2px 10px rgba(0, 168, 225, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.channel-pill--featured::before {
  content: "▶";
  width: 1.15rem;
  height: 1.15rem;
  font-size: 0.55rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 1;
  box-shadow: none;
}
.channel-pill--featured:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 28px rgba(178, 7, 16, 0.35),
    0 4px 16px rgba(0, 168, 225, 0.28);
}
.channel-pill-brands {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.channel-pill-brand {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.channel-pill-brand--n {
  background: rgba(0, 0, 0, 0.35);
  color: #e50914;
  text-shadow: 0 0 12px rgba(229, 9, 20, 0.6);
}
.channel-pill-brand--p {
  background: rgba(0, 168, 225, 0.25);
  color: #7ee8ff;
}
.channel-pill-join {
  opacity: 0.9;
  font-weight: 600;
  font-size: 0.82rem;
}
@keyframes channel-pill-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* 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(1, 33, 105, 0.35);
  box-shadow: 0 8px 32px rgba(1, 33, 105, 0.14), 0 0 0 1px rgba(200, 16, 46, 0.15);
  transform: scale(1.02);
  background: linear-gradient(180deg, rgba(1, 33, 105, 0.07) 0%, #ffffff 48%);
}
.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.06) 0%, #ffffff 55%, rgba(200, 16, 46, 0.04) 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.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #7a5c0a;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.35);
  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 {
  display: inline-flex;
  align-items: baseline;
  gap: 0.06em;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(26, 35, 50, 0.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(227, 24, 55, 0.65);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.price-compare::before {
  content: "€";
  font-weight: 600;
}
.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, var(--uk-blue) 0%, var(--uk-blue-mid) 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, var(--uk-blue) 0%, var(--uk-blue-bright) 45%, var(--uk-red-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(var(--glow-rgb), 0.15));
}
.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-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--uk-blue-mid);
  background: rgba(1, 33, 105, 0.08);
  border: 1px solid rgba(1, 33, 105, 0.14);
  border-radius: 999px;
}
.price-split::before {
  content: "≈";
  font-weight: 700;
  line-height: 1;
}
.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, var(--uk-blue) 0%, #2d8a5e 35%, var(--uk-blue-bright) 70%, var(--uk-red-bright) 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-blue);
}
.price-amount small { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-features { flex: 1; margin: 1.25rem 0; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.38rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.price-features li::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 0.12em;
  background: var(--accent);
  mask: var(--icon-mask-check) center / contain no-repeat;
  -webkit-mask: var(--icon-mask-check) center / contain no-repeat;
}
.price-card .btn { width: 100%; margin-top: auto; }
.price-card-actions .btn,
.price-card-actions button.btn {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.pricing-section { scroll-margin-top: 5rem; }
.pricing-section-first {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, rgba(1, 33, 105, 0.04) 0%, transparent 100%);
}
.pricing-section-first .section-header {
  margin-bottom: 1.75rem;
}
.pricing-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.2vw, 1rem);
  align-items: stretch;
}
/* Homepage #plans — keep 4 plans in one row on desktop */
#plans .pricing-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
#plans .pricing-grid-4 .price-card {
  padding: clamp(1.1rem, 1.6vw, 1.65rem);
  min-width: 0;
}
#plans .pricing-grid-4 .price-card h3 {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
}
#plans .pricing-grid-4 .price-features {
  margin: 0.75rem 0;
  font-size: clamp(0.7rem, 0.82vw, 0.8rem);
}
#plans .pricing-grid-4 .price-features li {
  padding: 0.2rem 0;
  gap: 0.35rem;
}
#plans .pricing-grid-4 .price-split,
#plans .pricing-grid-4 .price-flash {
  font-size: clamp(0.75rem, 0.88vw, 0.85rem);
}
#plans .pricing-grid-4 .btn {
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  padding: 0.65rem 0.85rem;
}
@media (max-width: 1100px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #plans .pricing-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  #plans .pricing-grid.pricing-grid-4 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.85rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
  }
  #plans .pricing-grid-4 .price-card {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: start;
  }
  #plans .pricing-grid-4 .price-card.featured {
    transform: none;
  }
}
@media (max-width: 640px) {
  .pricing-grid.pricing-grid-4 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.85rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0 0.75rem;
    margin: 0 -0.25rem;
  }
  .pricing-grid-4::-webkit-scrollbar { display: none; }
  .pricing-grid-4 .price-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: center;
    padding: 1.65rem 1.25rem 1.5rem;
    min-height: 100%;
  }
  .pricing-grid-4 .price-card.featured {
    transform: none;
    border-width: 2px;
  }
  .pricing-section-first { padding-top: 1.75rem; }
}
@media (max-width: 560px) {
  .pricing-grid-4:not(.pricing-grid) { grid-template-columns: 1fr; }
}
.section-compact {
  padding-top: 0;
  padding-bottom: 2rem;
}
.section-compact .stats-row {
  margin-bottom: 1.5rem;
}
.section-compact .hero-sport-panel {
  margin-top: 0;
}
.hero-compact {
  padding-bottom: 2rem;
}
.pricing-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
  margin: 0 auto 1rem;
  background: #f5f7fb;
  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: var(--uk-blue); background: rgba(1, 33, 105, 0.08); }
.pricing-promo {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.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-red-bright);
  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: #f5f7fb;
  border: 1px solid var(--border);
  color: var(--uk-blue);
  cursor: pointer;
  transition: var(--transition);
}
.btn-plan:hover {
  border-color: rgba(var(--glow-rgb), 0.45);
  background: rgba(1, 33, 105, 0.08);
}
.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: #f8fafc;
  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 — single horizontal row */
.devices-row,
.devices-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 1.25rem;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.devices-row::-webkit-scrollbar,
.devices-grid::-webkit-scrollbar {
  display: none;
}
.device-item {
  text-align: center;
  padding: 0.85rem 0.5rem 1rem;
  min-width: 0;
  flex: 1 1 0;
  max-width: none;
  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 8px 28px rgba(1, 33, 105, 0.1);
}
.device-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-icon svg {
  width: 70%;
  height: 70%;
  max-width: 44px;
  max-height: 44px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(1, 33, 105, 0.12));
}
.device-item .device-icon {
  border-radius: 14px;
  background: linear-gradient(145deg, #012169 0%, #1d4ed8 55%, #c8102e 130%);
  box-shadow: 0 6px 18px rgba(1, 33, 105, 0.22);
}
.device-item span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.25;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .devices-row,
  .devices-grid {
    gap: 0.75rem;
    overflow-x: visible;
  }
  .device-item {
    padding: 1rem 0.65rem 1.15rem;
  }
  .device-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0.65rem;
  }
  .device-item span {
    font-size: 0.82rem;
  }
}
@media (min-width: 900px) {
  .device-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 0.85rem;
  }
  .device-item span {
    font-size: 0.88rem;
  }
}
.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(1, 33, 105, 0.04); }
.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: #f8fafc;
  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: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.85;
}
.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 — compact FAB, easy to tap without dominating */
.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: 44px;
  padding: 0 0.65rem 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: 44px;
  height: 44px;
  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: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.whatsapp-float-icon svg {
  width: 22px;
  height: 22px;
  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.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.whatsapp-float-copy small {
  font-size: 0.58rem;
  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; }
}

/* Live subscription activity (illustration — bottom-left social proof) */
.live-subscription-feed {
  position: fixed;
  bottom: clamp(16px, 3vw, 22px);
  left: clamp(12px, 2.5vw, 20px);
  z-index: 970;
  max-width: min(340px, calc(100vw - 24px));
  pointer-events: none;
}
.live-subscription-feed > * {
  pointer-events: auto;
}
.live-subscription-feed.is-dismissed {
  display: none;
}
.live-subscription-hide {
  position: absolute;
  top: -10px;
  right: -6px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.2s, border-color 0.2s;
}
.live-subscription-hide:hover {
  color: var(--text);
  border-color: rgba(1, 33, 105, 0.25);
}
.live-subscription-toast {
  cursor: pointer;
  opacity: 0;
  transform: translateX(calc(-100% - 12px));
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.15, 0.64, 1);
  filter: drop-shadow(0 8px 24px rgba(1, 33, 105, 0.12));
}
.live-subscription-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.live-subscription-toast.is-leaving {
  opacity: 0;
  transform: translateX(calc(-100% - 8px));
}
.live-subscription-toast:focus-visible {
  outline: 2px solid var(--uk-blue-gloss);
  outline-offset: 3px;
}
.live-subscription-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 0.85rem;
  padding: 0.85rem 0.95rem 0.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #ffffff;
  backdrop-filter: blur(12px);
}
.live-subscription-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #0a1630;
  background: linear-gradient(135deg, #7dffb8, #5aa8ff);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.live-subscription-body {
  flex: 1;
  min-width: 160px;
}
.live-subscription-who {
  margin: 0 0 0.15rem;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.35;
}
.live-subscription-who strong {
  font-weight: 700;
}
.live-subscription-action {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.live-subscription-action span {
  color: var(--uk-blue-mid);
  font-weight: 600;
}
.live-subscription-plan {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}
.live-subscription-time {
  width: 100%;
  text-align: right;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--uk-red-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.live-subscription-demo {
  width: 100%;
  margin: 0.35rem 0 0;
  padding-top: 0.45rem;
  border-top: 1px solid var(--border);
  font-size: 0.62rem;
  line-height: 1.35;
  color: var(--text-muted);
  opacity: 0.75;
}
.live-subscription-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: #f8fafc;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.live-subscription-feed.has-active-toast .live-subscription-pulse .live-subscription-pulse-dot {
  background: #7dffb8;
  animation: sub-pulse 1.2s ease-in-out infinite;
}
.live-subscription-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(125, 255, 184, 0.5);
}
@keyframes sub-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@media (max-width: 640px) {
  .live-subscription-feed {
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    max-width: calc(100vw - 80px);
  }
  .live-subscription-card {
    padding: 0.75rem 0.8rem 0.6rem;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    padding: 0;
    min-height: 44px;
    width: 44px;
    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;
}

/* SEO — meilleur abonnement IPTV France */
.seo-france-section {
  scroll-margin-top: 5rem;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
.seo-france-panel {
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(165deg, rgba(1, 33, 105, 0.04) 0%, #ffffff 40%, rgba(var(--glow-red-rgb), 0.03) 100%);
  box-shadow: 0 10px 36px rgba(1, 33, 105, 0.08);
}
.seo-france-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: start;
  margin-bottom: 1.25rem;
}
.seo-france-intro .section-title {
  text-align: left;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.seo-france-highlight {
  color: var(--uk-blue);
}
.seo-france-domain {
  color: var(--uk-red-bright);
  font-weight: 800;
}
.seo-france-lead {
  margin: 0;
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 62ch;
}
.seo-france-lead a {
  color: var(--uk-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.seo-france-alert {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(227, 24, 55, 0.08) 0%, rgba(1, 33, 105, 0.06) 100%);
  border: 1px solid rgba(227, 24, 55, 0.2);
}
.seo-france-alert-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--uk-red-bright), var(--uk-blue));
}
.seo-france-alert strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--text);
}
.seo-france-alert p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.seo-france-body p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.seo-france-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  margin: 0.5rem 0 0.85rem;
  color: var(--text);
}
.seo-france-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.seo-france-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.seo-france-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--uk-blue-bright);
}
.seo-france-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.seo-france-keywords span {
  padding: 0.28rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--uk-blue-mid);
  border-radius: 6px;
  background: rgba(1, 33, 105, 0.06);
  border: 1px solid rgba(1, 33, 105, 0.1);
}
.seo-france-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.seo-france-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--uk-blue);
  text-decoration: none;
}
.seo-france-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .seo-france-grid {
    grid-template-columns: 1fr;
  }
  .seo-france-intro .section-title {
    text-align: center;
  }
  .seo-france-lead {
    text-align: center;
    margin: 0 auto;
  }
  .seo-france-cta {
    justify-content: center;
  }
  .seo-france-keywords {
    justify-content: center;
  }
}

/* Sport / entertainment promo banner (homepage) */
.wo-banner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.07) 0%, #ffffff 45%, rgba(var(--glow-red-rgb), 0.05) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: 0 6px 28px rgba(1, 33, 105, 0.08);
}
.wo-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  margin: 0 auto 0.75rem;
  max-width: 28ch;
  line-height: 1.2;
  color: var(--text);
}
.wo-banner p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.55;
}
.wo-banner .btn {
  display: inline-flex;
  margin: 0 auto;
}

/* IPTV box showcase (homepage) */
.nav-box {
  position: relative;
}
.nav-box::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  right: -0.35rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
}
.nav-box.active::after { display: none; }
.iptv-box-section {
  scroll-margin-top: 5.5rem;
  padding-top: 0.5rem;
}
.iptv-box-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(1, 33, 105, 0.12);
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(1, 33, 105, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(var(--glow-red-rgb), 0.08), transparent 50%),
    linear-gradient(165deg, #f8faff 0%, #ffffff 42%, #fff8f9 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px rgba(1, 33, 105, 0.1);
}
.iptv-box-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.iptv-box-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: iptv-box-aurora 14s ease-in-out infinite;
}
.iptv-box-aurora span:nth-child(1) {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -60px;
  background: rgba(1, 33, 105, 0.25);
}
.iptv-box-aurora span:nth-child(2) {
  width: 220px;
  height: 220px;
  bottom: -40px;
  right: 10%;
  background: rgba(var(--glow-red-rgb), 0.2);
  animation-delay: -5s;
}
.iptv-box-aurora span:nth-child(3) {
  width: 160px;
  height: 160px;
  top: 40%;
  left: 42%;
  background: rgba(37, 211, 102, 0.15);
  animation-delay: -9s;
}
@keyframes iptv-box-aurora {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.08); }
}
.iptv-box-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
.iptv-box-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.iptv-box-ribbon {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--uk-blue) 0%, var(--uk-blue-bright) 55%, rgba(var(--glow-red-rgb), 0.9) 100%);
  box-shadow: 0 4px 16px rgba(1, 33, 105, 0.25);
  animation: iptv-box-ribbon-glow 3s ease-in-out infinite;
}
@keyframes iptv-box-ribbon-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(1, 33, 105, 0.25); }
  50% { box-shadow: 0 6px 22px rgba(1, 33, 105, 0.38), 0 0 20px rgba(var(--glow-red-rgb), 0.15); }
}
.iptv-box-frame {
  position: relative;
  padding: 1.25rem;
}
.iptv-box-frame-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(1, 33, 105, 0.15);
  animation: iptv-box-spin 28s linear infinite;
}
@keyframes iptv-box-spin {
  to { transform: rotate(360deg); }
}
.iptv-box-frame img {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(1, 33, 105, 0.18));
  animation: iptv-box-float 5s ease-in-out infinite;
}
@keyframes iptv-box-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.iptv-box-orbit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  max-width: 340px;
}
.iptv-box-orbit-chip {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(1, 33, 105, 0.12);
  background: #fff;
  color: var(--uk-blue);
  box-shadow: 0 4px 12px rgba(1, 33, 105, 0.08);
}
.iptv-box-orbit-chip--ram { border-color: rgba(37, 211, 102, 0.35); color: #0d7a4a; }
.iptv-box-orbit-chip--storage { border-color: rgba(1, 33, 105, 0.25); }
.iptv-box-orbit-chip--4k {
  background: linear-gradient(135deg, var(--uk-blue), var(--uk-blue-bright));
  color: #fff;
  border: none;
}
.iptv-box-panel .section-label { display: block; margin-bottom: 0.5rem; }
.iptv-box-panel .section-title {
  margin-bottom: 0.85rem;
  text-align: left;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.15;
}
.iptv-box-title-accent {
  background: linear-gradient(120deg, var(--uk-blue) 0%, var(--uk-blue-bright) 50%, #c41e3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.iptv-box-panel .section-desc {
  margin-bottom: 1rem;
  text-align: left;
  max-width: none;
  font-size: clamp(0.9rem, 1.7vw, 1rem);
  line-height: 1.6;
}
.iptv-box-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.iptv-box-kw {
  padding: 0.28rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--uk-blue-mid);
  border-radius: 6px;
  background: rgba(1, 33, 105, 0.06);
  border: 1px solid rgba(1, 33, 105, 0.1);
}
.iptv-box-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.iptv-box-spec-card {
  padding: 0.65rem 0.5rem;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(1, 33, 105, 0.1);
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.iptv-box-spec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(1, 33, 105, 0.1);
}
.iptv-box-spec-val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 800;
  color: var(--uk-blue);
  line-height: 1.1;
}
.iptv-box-spec-lbl {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}
.iptv-box-perks {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.iptv-box-perks li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.iptv-box-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #25d366;
}
.iptv-box-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.iptv-box-cta-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.btn-whatsapp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-whatsapp::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  width: 1.2rem;
  height: 1.2rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn-whatsapp {
  position: relative;
  padding-left: 2.75rem;
}
.btn-whatsapp-label { font-size: 0.95rem; line-height: 1.2; }
.btn-whatsapp-sub {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.92;
}
.btn-whatsapp--pulse {
  animation: iptv-box-wa-pulse 2.5s ease-in-out infinite;
}
@keyframes iptv-box-wa-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 0 0 6px rgba(37, 211, 102, 0.12); }
}
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
  animation: none;
}
@media (max-width: 900px) {
  .iptv-box-spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .iptv-box-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .iptv-box-panel .section-title,
  .iptv-box-panel .section-desc { text-align: center; }
  .iptv-box-keywords { justify-content: center; }
  .iptv-box-cta { align-items: center; width: 100%; }
  .btn-whatsapp { width: 100%; max-width: 340px; }
  .iptv-box-cta-note { text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .iptv-box-aurora span,
  .iptv-box-frame-ring,
  .iptv-box-frame img,
  .iptv-box-ribbon,
  .btn-whatsapp--pulse { animation: none; }
}

/* 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.06), #ffffff, rgba(var(--glow-red-rgb), 0.05));
  border: 1px solid var(--border);
  margin: 1rem 0;
  box-shadow: 0 4px 20px rgba(1, 33, 105, 0.06);
}
.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 — desktop / tablet bar sizing */
@media (min-width: 901px) {
  :root {
    --header-h: 120px;
    --logo-bar-h: 92px;
    --nav-bar-h: 60px;
  }
  .menu-toggle {
    display: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  :root {
    --header-h: 112px;
    --logo-bar-h: 84px;
    --nav-bar-h: 56px;
  }
  .logo {
    max-width: min(600px, 50vw);
  }
  .nav a { font-size: 0.88rem; padding: 0.5rem 0.68rem; }
  .nav-cta { font-size: 0.86rem !important; padding: 0.5rem 0.85rem !important; }
  .nav-reseller { font-size: 0.86rem !important; padding: 0.5rem 0.78rem !important; }
  .header-offres-btn { font-size: 0.9rem; padding: 0.52rem 1.1rem; }
  .nav-t-full { display: none; }
  .nav-t-short { display: inline; }
  .nav-cta-long { display: none; }
  .nav-cta-short { display: inline; }
}

@media (min-width: 1281px) {
  :root {
    --header-h: 128px;
    --logo-bar-h: 96px;
    --nav-bar-h: 64px;
  }
  .logo {
    max-width: min(720px, 54vw);
  }
  .header-inner {
    gap: 3rem;
    max-width: 1400px;
  }
  .nav {
    padding: 0.52rem 0.6rem;
  }
  .nav a { font-size: 0.98rem; padding: 0.58rem 0.88rem; }
  .nav-cta { font-size: 0.96rem !important; padding: 0.58rem 1.12rem !important; }
  .header-offres-btn { font-size: 0.98rem; padding: 0.58rem 1.35rem; }
  .nav-cta-short { display: none; }
  .nav-cta-long { display: inline; }
}

/* Responsive */
@media (max-width: 900px) {
  :root {
    --header-h: 88px;
    --logo-bar-h: 60px;
    --nav-bar-h: 44px;
  }
  .header-inner {
    gap: 0.55rem;
    justify-content: flex-start;
  }
  .logo {
    flex: 1 1 auto;
    max-width: none;
    margin-right: auto;
  }
  .header-right {
    flex: 0 0 auto;
    margin-left: 0;
    gap: 0.45rem;
  }
  .header-offres-btn {
    padding: 0.48rem 0.9rem;
    font-size: 0.86rem;
    min-height: var(--nav-bar-h);
    border-radius: 999px;
  }
  .header-offres-btn-long {
    display: none;
  }
  .header-offres-btn-short {
    display: inline;
  }
  .header .logo-img {
    width: auto;
    height: var(--logo-bar-h);
    max-width: min(360px, calc(100vw - 9rem));
  }
  .nav {
    position: fixed;
    flex: none;
    margin-left: 0;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 999;
    width: auto;
    max-width: none;
    border-radius: 0 0 20px 20px;
    min-height: 0;
    max-height: min(85vh, calc(100dvh - var(--header-h)));
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 1.35rem 1rem 1.5rem;
    margin: 0;
    border: none;
    background: #ffffff;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 12px 40px rgba(1, 33, 105, 0.12);
    overflow-x: hidden;
    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(--text-muted);
    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: #f8fafc;
    border: 1px solid var(--border);
  }
  .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;
    color: #6b4f0a !important;
    background: linear-gradient(135deg, #fff8e7 0%, #f5e6b8 100%) !important;
    border: 2px solid rgba(201, 162, 39, 0.45) !important;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.18);
  }
  .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;
    align-self: center;
  }
  .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); }
  .hero-sport-stats {
    grid-template-columns: 1fr;
  }
  .hero-sport-tags {
    justify-content: center;
  }
  .hero-sport-panel {
    text-align: center;
  }
  .hero-sport-desc {
    margin-inline: auto;
  }
  .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(--uk-blue);
  background: #ffffff;
  border: 1px solid rgba(1, 33, 105, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(1, 33, 105, 0.08);
}
.btn-multi:hover {
  border-color: rgba(var(--glow-rgb), 0.55);
  box-shadow: 0 8px 28px rgba(1, 33, 105, 0.12);
  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(255, 255, 255, 0.78);
  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(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(1, 33, 105, 0.04) inset,
    0 8px 40px rgba(1, 33, 105, 0.12),
    0 24px 60px rgba(1, 33, 105, 0.08);
  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: #f5f7fb;
  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(1, 33, 105, 0.1);
  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: #f8fafc;
  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: #f5f7fb;
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.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, var(--uk-blue) 0%, var(--accent) 45%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(var(--glow-rgb), 0.15));
  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-blue-mid);
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.5rem;
  border-radius: 999px;
  background: rgba(1, 33, 105, 0.08);
  border: 1px solid var(--border);
}
.multi-mode-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0.3rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: #f5f7fb;
  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-blue);
}
.multi-mode-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--uk-blue-bright), var(--uk-blue));
  box-shadow: 0 4px 16px rgba(var(--glow-rgb), 0.2);
}
.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: #f8fafc;
  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: #f8fafc;
  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-blue);
}
@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; }

/* —— Checkout popup (creative) —— */
.checkout-popup-panel {
  width: min(920px, 100%);
  max-height: min(94vh, 720px);
  padding: 0;
  overflow: hidden;
}
.checkout-popup-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 420px;
}
.checkout-popup-visual {
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(160deg, rgba(1, 33, 105, 0.07) 0%, rgba(200, 16, 46, 0.04) 45%, #ffffff 100%);
  border-right: 1px solid var(--border);
  overflow-y: auto;
}
.checkout-popup-main {
  padding: 1.75rem 1.65rem 1.5rem;
  overflow-y: auto;
}
.checkout-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #2d8a5e;
  background: rgba(45, 138, 94, 0.1);
  border: 1px solid rgba(45, 138, 94, 0.3);
  border-radius: 999px;
}
.checkout-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3daf5c;
  box-shadow: 0 0 8px #3daf5c;
  animation: welcome-pulse 1.4s ease infinite;
}
.checkout-visual-lead {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.45;
}
.checkout-popup-visual .multi-panel-head,
.checkout-popup-visual h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  padding: 0;
}
.checkout-mode-tabs {
  margin-bottom: 1rem;
}
.checkout-duration-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.popup-plan-picks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.popup-plan-pick {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  padding: 0.55rem 0.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.popup-plan-pick:hover {
  border-color: rgba(1, 33, 105, 0.35);
}
.popup-plan-pick.is-active {
  border-color: var(--uk-blue);
  background: linear-gradient(180deg, rgba(1, 33, 105, 0.08) 0%, #fff 100%);
  box-shadow: 0 4px 16px rgba(1, 33, 105, 0.12);
  transform: translateY(-2px);
}
.popup-plan-tag {
  position: absolute;
  top: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.52rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  background: var(--uk-red);
  color: #fff;
  white-space: nowrap;
}
.popup-plan-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--uk-blue);
}
.popup-plan-term {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 600;
}
.checkout-multi-block {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(1, 33, 105, 0.2);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.checkout-multi-block.is-glow {
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 0 24px rgba(200, 16, 46, 0.08);
}
.checkout-multi-block[hidden] { display: none; }
.checkout-multi-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
  text-align: center;
}
.checkout-multi-label strong {
  color: var(--uk-red-bright);
  font-size: 1.15rem;
}
.popup-device-stack {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.5rem 0.5rem;
  border-radius: 14px;
  background: rgba(1, 33, 105, 0.04);
  border: 1px solid rgba(1, 33, 105, 0.08);
}
.popup-device-stack-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 3.25rem;
}
.popup-device-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.popup-device-slot {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f0f4fa;
  border: 1px solid var(--border);
  opacity: 0.4;
  transform: scale(0.9);
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.popup-device-slot svg {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
  pointer-events: none;
}
.popup-device-slot.is-active {
  opacity: 1;
  transform: scale(1);
  background: linear-gradient(145deg, #012169, #1d4ed8);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(1, 33, 105, 0.25);
  filter: none;
}
.popup-device-slot.is-active svg {
  filter: brightness(0) invert(1);
}
.popup-device-slot.is-off {
  display: none;
}
.popup-device-overflow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.65rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--uk-red), var(--uk-red-bright));
  border: none;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.35);
}
.popup-device-overflow[hidden] {
  display: none !important;
}
.checkout-screens-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkout-screen-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--uk-blue);
  cursor: pointer;
  transition: var(--transition);
}
.checkout-screen-btn:hover {
  border-color: var(--uk-blue);
  background: rgba(1, 33, 105, 0.06);
}
.checkout-slider {
  flex: 1;
}
.checkout-multi-hint {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.checkout-total-card {
  margin-top: 0.5rem;
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(1, 33, 105, 0.08);
}
.checkout-plan-line {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--uk-blue-mid);
}
.checkout-compare-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(26, 35, 50, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(227, 24, 55, 0.65);
}
.checkout-math-line {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--uk-blue-mid);
  padding: 0.25rem 0.6rem;
  background: rgba(1, 33, 105, 0.06);
  border-radius: 999px;
}
.checkout-math-line[hidden] { display: none; }
.checkout-bonus-pill {
  display: inline-block;
  margin-top: 0.5rem;
}
.checkout-submit-btn {
  box-shadow: 0 8px 28px rgba(45, 138, 94, 0.35);
}
.checkout-popup-form .multi-form-section {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.checkout-popup-panel .multi-close {
  z-index: 2;
}

/* Homepage multi-device pricing banner */
.pricing-multi-banner {
  margin-top: 1.75rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(1, 33, 105, 0.15);
  background: linear-gradient(125deg, rgba(1, 33, 105, 0.06) 0%, #ffffff 40%, rgba(200, 16, 46, 0.05) 100%);
}
.pricing-multi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 1.5rem;
}
.pricing-multi-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--uk-red-dark);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.pricing-multi-copy h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}
.pricing-multi-copy p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 0.85rem;
  line-height: 1.5;
}
.pricing-multi-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pricing-multi-perks li::before {
  content: "✓ ";
  color: var(--uk-red-bright);
  font-weight: 700;
}
.pricing-multi-demo {
  text-align: center;
}
.pricing-multi-devices {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pricing-multi-device {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #012169, #3d6fbe);
  box-shadow: 0 6px 18px rgba(1, 33, 105, 0.2);
  animation: pricing-device-float 3s ease-in-out infinite;
}
.pricing-multi-device:nth-child(2) { animation-delay: 0.4s; }
.pricing-multi-device:nth-child(3) { animation-delay: 0.8s; }
.pricing-multi-device:nth-child(4) { animation-delay: 1.2s; }
@keyframes pricing-device-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.pricing-multi-example {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.pricing-multi-example strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--uk-blue);
}
.pricing-multi-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.pricing-multi-actions .btn {
  width: 100%;
  max-width: 280px;
}
.price-card .btn-multi-link {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--uk-blue);
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.price-card .btn-multi-link:hover {
  color: var(--uk-red-bright);
}

@media (max-width: 768px) {
  .checkout-popup-layout {
    grid-template-columns: 1fr;
    max-height: 94vh;
    overflow-y: auto;
  }
  .checkout-popup-visual {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.35rem 1.15rem 1rem;
  }
  .checkout-popup-main {
    padding: 1.25rem 1.15rem 1.5rem;
  }
  .checkout-popup-panel {
    max-height: 96vh;
    overflow-y: auto;
  }
  .pricing-multi-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pricing-multi-perks {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .popup-plan-picks {
    grid-template-columns: repeat(2, 1fr);
  }
  .popup-plan-pick:nth-child(3) { grid-column: 1; }
}

/* 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(255, 255, 255, 0.78);
  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: #ffffff;
  border: 1px solid var(--border);
  box-shadow:
    0 12px 40px rgba(1, 33, 105, 0.12),
    0 0 40px rgba(var(--glow-red-rgb), 0.08);
  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 var(--border);
  border-radius: 10px;
  background: #f5f7fb;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.exit-offer-close:hover {
  color: var(--text);
  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: var(--uk-red-dark);
  background: rgba(227, 24, 55, 0.08);
  border: 1px solid rgba(227, 24, 55, 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: #f5f7fb;
  border: 1px solid var(--border);
}
.exit-offer-compare {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(26, 35, 50, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(227, 24, 55, 0.75);
  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-blue-mid);
}
.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, var(--uk-blue) 0%, #2d8a5e 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(--text-muted);
  margin-bottom: 0.4rem;
}
.exit-offer-bonus {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--uk-red-bright);
  background: rgba(61, 175, 92, 0.12);
  border: 1px solid rgba(61, 175, 92, 0.3);
  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: var(--uk-red-bright);
  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-blue);
}
body.exit-offer-open {
  overflow: hidden;
}

/* Welcome offer — on-site entry popup */
.welcome-offer-overlay {
  position: fixed;
  inset: 0;
  z-index: 2080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.welcome-offer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.welcome-offer-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(94vh, 640px);
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow:
    0 8px 40px rgba(1, 33, 105, 0.12),
    0 24px 60px rgba(1, 33, 105, 0.08);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.34, 1.25, 0.64, 1);
}
.welcome-offer-overlay.is-open .welcome-offer-panel {
  transform: scale(1) translateY(0);
}
.welcome-offer-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: #f8fafc;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.welcome-offer-close:hover {
  color: var(--text);
  border-color: rgba(var(--glow-rgb), 0.45);
}
.welcome-offer-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  min-height: 320px;
}
.welcome-offer-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.25rem 1.15rem 1.5rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(227, 24, 55, 0.07) 0%, rgba(1, 33, 105, 0.1) 55%, #f8fafc 100%);
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.welcome-offer-figure {
  margin: 0 0 0.85rem;
  width: 100%;
  max-width: 100%;
}
.welcome-offer-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(42vh, 220px);
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  filter: drop-shadow(0 10px 28px rgba(1, 33, 105, 0.18));
}
.welcome-box-promo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 0.75rem;
  padding: 0.65rem 0.55rem 0.45rem 0.45rem;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  border: 1px solid rgba(1, 33, 105, 0.14);
  background: linear-gradient(135deg, #ffffff 0%, rgba(37, 211, 102, 0.06) 100%);
  box-shadow: 0 6px 18px rgba(1, 33, 105, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.welcome-box-promo:hover,
.welcome-box-promo:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.15);
  outline: none;
}
.welcome-box-promo-badge {
  position: absolute;
  top: -0.45rem;
  left: 0.5rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--uk-blue), #25d366);
}
.welcome-box-photo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(1, 33, 105, 0.12));
}
.welcome-box-promo-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
  text-align: left;
  line-height: 1.2;
}
.welcome-box-promo-copy strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--uk-blue);
}
.welcome-box-promo-copy small {
  font-size: 0.62rem;
  color: var(--text-muted);
}
.welcome-box-promo-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #25d366;
}
.welcome-offer-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7dffb8;
  box-shadow: 0 0 12px #7dffb8;
  animation: welcome-spark 2.5s ease-in-out infinite;
}
.welcome-offer-spark--1 { top: 18%; left: 22%; animation-delay: 0s; }
.welcome-offer-spark--2 { top: 55%; right: 20%; animation-delay: 0.8s; }
.welcome-offer-spark--3 { bottom: 22%; left: 35%; animation-delay: 1.4s; }
@keyframes welcome-spark {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.welcome-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #2d8a5e;
  background: rgba(61, 175, 92, 0.1);
  border: 1px solid rgba(61, 175, 92, 0.35);
  border-radius: 999px;
}
.welcome-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3daf5c;
  box-shadow: 0 0 8px #3daf5c;
  animation: welcome-pulse 1.4s ease infinite;
}
@keyframes welcome-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.welcome-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--uk-blue-mid);
  margin: 0 0 1rem;
}
.welcome-discount-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(227, 24, 55, 0.1), rgba(1, 33, 105, 0.12));
  border: 2px solid var(--border);
  box-shadow: 0 8px 28px rgba(1, 33, 105, 0.1);
  animation: welcome-badge-float 3s ease-in-out infinite;
}
@keyframes welcome-badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.welcome-discount-value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, var(--uk-blue) 0%, var(--uk-red-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.welcome-discount-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #9a7b1a;
}
.welcome-discount-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.welcome-visual-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.welcome-offer-main {
  padding: 1.75rem 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.welcome-eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--uk-red-dark);
}
.welcome-offer-main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.welcome-lead {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 0.85rem;
}
.welcome-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.welcome-perks li::before {
  content: "✓ ";
  color: var(--uk-red-bright);
  font-weight: 700;
}
.welcome-plan-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}
.welcome-plan-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.welcome-plan-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.65rem 0.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.welcome-plan-btn:hover {
  border-color: rgba(var(--glow-rgb), 0.45);
}
.welcome-plan-btn.is-active {
  border-color: rgba(45, 138, 94, 0.55);
  background: rgba(45, 138, 94, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 33, 105, 0.1);
}
.welcome-plan-tag {
  position: absolute;
  top: -0.45rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
}
.welcome-plan-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}
.welcome-plan-term {
  font-size: 0.65rem;
  color: var(--text-muted);
}
.welcome-plan-extra {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--uk-red-bright);
}
.welcome-cta {
  width: 100%;
  font-size: 1.05rem;
  padding: 0.95rem 1rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 32px rgba(var(--glow-red-rgb), 0.4);
}
.welcome-plans-link {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--uk-blue-gloss);
  margin-bottom: 0.35rem;
}
.welcome-plans-link:hover {
  color: var(--uk-blue);
}
.welcome-dismiss {
  display: block;
  width: 100%;
  padding: 0.45rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  transition: color var(--transition);
}
.welcome-dismiss:hover {
  color: var(--uk-blue);
}
body.welcome-offer-open {
  overflow: hidden;
}
@media (max-width: 680px) {
  .welcome-offer-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .welcome-offer-panel {
    width: 100%;
    max-height: 94vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
  }
  .welcome-offer-overlay.is-open .welcome-offer-panel {
    transform: translateY(0);
  }
  .welcome-offer-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .welcome-offer-visual {
    padding: 1.25rem 1rem 1rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .welcome-offer-photo {
    max-height: min(36vh, 180px);
  }
  .welcome-box-promo {
    max-width: 100%;
  }
  .welcome-box-photo {
    width: 52px;
    height: 52px;
  }
  .welcome-discount-badge {
    width: 7.5rem;
    height: 7.5rem;
  }
  .welcome-discount-value {
    font-size: 2.1rem;
  }
  .welcome-offer-main {
    padding: 1.25rem 1.15rem calc(1.25rem + env(safe-area-inset-bottom, 0));
  }
  .welcome-plan-picks {
    gap: 0.4rem;
  }
  .welcome-cta {
    min-height: 52px;
  }
}

@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(--text);
}
.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-blue);
}
.footer-brand .logo {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.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(--text);
  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-blue);
}

/* Blog hub & article pages */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.blog-card h2 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0;
}
.blog-card h2 a {
  color: var(--text);
  text-decoration: none;
}
.blog-card h2 a:hover {
  color: var(--uk-blue-gloss);
}
.blog-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}
.blog-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--uk-blue-gloss);
}
.blog-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--uk-blue-gloss);
}
.blog-card-link:hover {
  color: var(--uk-blue);
}
.blog-cta-banner {
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
}
.blog-cta-banner h2 {
  margin: 0 0 0.5rem;
}
.blog-cta-banner p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}
.blog-cta-banner .btn {
  margin: 0 0.35rem;
}
.blog-home-more {
  text-align: center;
  margin-top: 2rem;
}
.article-page .page-hero {
  padding-bottom: 1.5rem;
}
.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}
.article-body {
  padding: 2rem 1.75rem;
  margin: 0 auto 3rem;
  max-width: 800px;
}
.article-body h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.25rem;
}
.article-body p,
.article-body li {
  color: var(--text-muted);
  line-height: 1.7;
}
.article-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.article-list li {
  margin-bottom: 0.5rem;
}
.article-body a {
  color: var(--uk-blue-gloss);
}
.article-nav {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.breadcrumb a {
  color: var(--uk-blue-gloss);
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.88rem;
}
.article-table th,
.article-table td {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.article-table th {
  color: var(--text);
  font-weight: 600;
  background: #f5f7fb;
}
.article-table a {
  color: var(--uk-blue-gloss);
  word-break: break-word;
}

/* Light theme — surfaces & overlays */
.multi-overlay,
.welcome-offer-overlay,
.exit-offer-overlay {
  background: rgba(255, 255, 255, 0.75);
}
.reseller-programme,
.reseller-panel-cta,
.hero-reseller-banner {
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.06) 0%, #ffffff 55%, rgba(201, 162, 39, 0.06) 100%) !important;
}
.reseller-programme-inner,
.reseller-panel-card {
  background: #ffffff !important;
  border-color: var(--border) !important;
}
.exit-offer-panel,
.welcome-offer-panel {
  background: #ffffff !important;
  border-color: var(--border) !important;
  box-shadow: 0 16px 48px rgba(1, 33, 105, 0.12) !important;
  color: var(--text);
}
.welcome-offer-panel .welcome-lead,
.welcome-offer-panel .welcome-visual-note,
.exit-offer-lead,
.exit-offer-period {
  color: var(--text-muted) !important;
}
.welcome-offer-panel h2,
.exit-offer-panel h2,
.welcome-brand {
  color: var(--text) !important;
}
.hero-badge {
  color: var(--uk-blue) !important;
  background: rgba(1, 33, 105, 0.08) !important;
  border-color: var(--border) !important;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(1, 33, 105, 0.06) 0%, #ffffff 45%) !important;
}
.feature-card h3,
.review-card .review-author,
.blog-card h2 a,
.faq details summary {
  color: var(--text);
}
.compare-table th {
  color: var(--text);
  background: #f5f7fb;
}
.compare-table td {
  color: var(--text-muted);
}
.live-subscription-card {
  background: #ffffff !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}
.article-keywords {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

/* Light theme — hard contrast pass */
body {
  color: var(--text);
  background: var(--surface);
}
.section-title,
.page-hero h1,
.hero h1,
.price-card h3,
.card h3,
.blog-card h2 a,
.faq-item summary {
  color: var(--text);
}
.section-desc,
.hero-sub,
.card p,
.review-text {
  color: var(--text-muted);
}
.nav {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-color: var(--border-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 14px rgba(1, 33, 105, 0.08);
}
.nav a:not(.nav-cta):not(.nav-reseller) {
  color: #1e3a5f;
  font-weight: 600;
}
.channel-pill {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(1, 33, 105, 0.06);
}
.channel-pill.sport {
  background: #fff5f6;
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--uk-red-dark);
}
.channel-pill.cinema:not(.channel-pill--featured) {
  background: #f0f5ff;
  border-color: rgba(1, 33, 105, 0.28);
  color: var(--uk-blue);
}
.channel-pill--featured.cinema {
  background: linear-gradient(120deg, #b20710 0%, #1a237e 52%, #00a8e1 100%);
  background-size: 200% 200%;
  color: #fff;
}
.channel-pill.news {
  background: #f4f7fb;
}
.stat-item.glass,
.step-card.glass,
.review-card.glass {
  background: var(--surface);
  border-color: var(--border-strong);
}
.pricing-promo {
  color: var(--uk-blue);
  font-weight: 600;
}
.price-guarantee {
  color: var(--text-soft);
}
.hero-sport-panel {
  border-color: var(--border-strong);
  box-shadow: 0 8px 28px rgba(1, 33, 105, 0.1);
}
.hero-sport-tags span {
  background: var(--surface-soft);
  border-color: var(--border-strong);
  color: var(--uk-blue);
  font-weight: 700;
}
.hero-sport-stat {
  background: var(--surface-soft);
  border-color: var(--border-strong);
}
.compare-table th {
  background: var(--surface-muted);
  color: var(--uk-blue);
  font-weight: 700;
}
.compare-table td {
  color: var(--text);
}
.compare-table .highlight {
  color: var(--uk-red-bright);
  font-weight: 700;
}
.footer {
  background: var(--surface-soft);
  border-top-color: var(--border-strong);
}
.footer h4 {
  color: var(--text);
}
.footer ul a {
  color: var(--text-muted);
}
.footer ul a:hover {
  color: var(--uk-blue);
}
.device-item {
  background: var(--surface);
  border: 1px solid var(--border);
}
.device-item span {
  color: var(--text);
  font-weight: 700;
}

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