/* Euro IPTV — Complete redesign · Euro Stream */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;800&display=swap");

:root {
  --euro-navy: #0d1b2a;
  --euro-blue: #1b6ef3;
  --euro-blue-soft: #e8f1fe;
  --euro-red: #e5273a;
  --euro-red-dark: #c41e2f;
  --euro-red-soft: #fff0f2;
  --euro-gold: #f4b400;
  --euro-gold-soft: #fff8e6;
  --euro-green: #10b981;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --text: #0d1b2a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 27, 42, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
  --header-h: 96px;
  --promo-h: 36px;
  --sticky-h: 64px;
  --transition: 0.25s ease;
  /* Override dark theme vars */
  --fr-blue: var(--euro-blue);
  --fr-blue-bright: #3b82f6;
  --fr-blue-dark: #0d47a1;
  --fr-red: var(--euro-red);
  --fr-red-dark: var(--euro-red-dark);
  --fr-gold: var(--euro-gold);
  --bg-deep: var(--bg);
  --bg-card: var(--surface);
  --bg-elevated: var(--surface-2);
  --accent: var(--euro-blue);
  --accent-2: var(--euro-red);
  --text-muted: #64748b;
  --border: #e2e8f0;
  --glow: none;
  --glow-red: none;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font);
  background: var(--bg) !important;
  color: var(--text) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before { display: none !important; }
.bg-mesh, .bg-grid { display: none !important; }
body.has-sticky-order { padding-bottom: var(--sticky-h); }

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}
.container-narrow { width: min(760px, 92vw); margin-inline: auto; }

/* Promo bar */
.euro-promo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--promo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, var(--euro-navy), var(--euro-blue));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
}
.euro-promo strong { color: var(--euro-gold); }
.euro-promo a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Header — transparent (black logo) */
.header {
  position: fixed;
  top: var(--promo-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent !important;
  backdrop-filter: none;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  border-image: none !important;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.35) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.25) !important;
  border-image: none !important;
  box-shadow: none !important;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1140px, 92vw);
  margin-inline: auto;
}
.logo-img {
  height: auto;
  width: auto;
  filter: none !important;
}
.header .logo-img {
  height: 84px !important;
  max-width: 260px !important;
}
.footer-brand .logo-img {
  height: 48px !important;
  max-width: 220px !important;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav a {
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
}
.nav a:hover {
  color: var(--euro-blue) !important;
  background: var(--euro-blue-soft);
}
.nav a.active {
  color: var(--euro-red) !important;
  background: var(--euro-red-soft);
}
.nav-cta {
  background: var(--euro-red) !important;
  color: #fff !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 10px !important;
  margin-left: 0.25rem;
  box-shadow: 0 4px 16px rgba(229, 39, 58, 0.3) !important;
}
.nav-cta:hover { background: var(--euro-red-dark) !important; color: #fff !important; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--euro-navy);
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: var(--euro-blue);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.btn-primary {
  background: var(--euro-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(229, 39, 58, 0.35);
}
.btn-primary:hover {
  background: var(--euro-red-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--surface);
  color: var(--euro-blue);
  border: 2px solid var(--euro-blue);
}
.btn-secondary:hover { background: var(--euro-blue-soft); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn-plan {
  background: rgba(27, 110, 243, 0.12);
  color: var(--euro-blue);
  border: 1.5px solid rgba(27, 110, 243, 0.28);
  width: 100%;
  margin-top: auto;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: none;
}
.btn-plan:hover {
  background: rgba(27, 110, 243, 0.22);
  border-color: rgba(27, 110, 243, 0.45);
  color: #0d47a1;
  transform: translateY(-1px);
}
.btn-plan-primary {
  background: rgba(27, 110, 243, 0.12) !important;
  color: var(--euro-blue) !important;
  border: 1.5px solid rgba(27, 110, 243, 0.28) !important;
  box-shadow: none !important;
}
.btn-plan-primary:hover {
  background: rgba(27, 110, 243, 0.22) !important;
  border-color: rgba(27, 110, 243, 0.45) !important;
  color: #0d47a1 !important;
  filter: none;
  transform: translateY(-1px);
}
.pricing-section .btn-plan,
.pricing-section .btn-plan-primary {
  background: rgba(27, 110, 243, 0.12);
  color: var(--euro-blue);
  border: 1.5px solid rgba(27, 110, 243, 0.28);
  box-shadow: none;
}
.pricing-section .btn-plan:hover,
.pricing-section .btn-plan-primary:hover {
  background: rgba(27, 110, 243, 0.22);
  border-color: rgba(27, 110, 243, 0.45);
  color: #0d47a1;
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--euro-blue);
  background: var(--euro-blue-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--euro-navy);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 620px;
  margin-inline: auto;
}
.section-cta { text-align: center; margin-top: 2rem; }
.section-cta--spaced { margin-top: 2.5rem; }

.gradient {
  background: linear-gradient(135deg, var(--euro-blue), var(--euro-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass → white cards */
.glass, .glass-strong {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: none !important;
}

/* ── HERO ── */
.euro-hero {
  padding-top: calc(var(--header-h) + var(--promo-h) + 2rem);
  padding-bottom: 3rem;
  overflow: hidden;
}
.euro-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.euro-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--euro-red);
  background: var(--euro-red-soft);
  border: 1px solid #fecdd3;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.euro-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--euro-navy);
  margin-bottom: 1rem;
}
.euro-hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 480px;
}
.euro-hero-wc {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 520px;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, #0d2818 0%, #14532d 55%, #166534 100%);
  border: 1px solid rgba(250, 204, 21, 0.35);
  box-shadow: 0 8px 24px rgba(13, 40, 24, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.euro-hero-wc:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.6);
  box-shadow: 0 12px 28px rgba(13, 40, 24, 0.24);
}
.euro-hero-wc-icon {
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1;
}
.euro-hero-wc-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.euro-hero-wc-body strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fef9c3;
  line-height: 1.25;
}
.euro-hero-wc-body span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}
.euro-hero-wc-link {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fde047;
  white-space: nowrap;
}
.euro-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.euro-hero-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.euro-plan-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.85rem 0.5rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
}
.euro-plan-pill:hover {
  border-color: var(--euro-blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.euro-plan-pill.is-best {
  border-color: var(--euro-red);
  background: linear-gradient(180deg, #fff, var(--euro-red-soft));
  position: relative;
}
.euro-plan-pill.is-best::before {
  content: "★ Top";
  position: absolute;
  top: -9px;
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  background: var(--euro-red);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.euro-plan-pill span:first-child {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--euro-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.euro-plan-pill strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--euro-red);
  line-height: 1.2;
}
.euro-plan-pill em {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  background: var(--euro-red);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.35rem;
}
.euro-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.euro-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.08) saturate(1.05);
}
.euro-hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.6) 60%, rgba(248,250,252,0.95) 100%);
  pointer-events: none;
}
.euro-hero-float {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.euro-hero-float span {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--euro-navy);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Stats */
.euro-stats {
  background: linear-gradient(90deg, var(--euro-blue-soft) 0%, #ffffff 35%, #ffffff 65%, var(--euro-red-soft) 100%);
  padding: 2.25rem 0;
  border-top: 1px solid #c8ddf0;
  border-bottom: 1px solid #fecdd3;
}
.euro-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.euro-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--euro-blue);
}
.euro-stat:nth-child(2) { border-top-color: #ffffff; }
.euro-stat:nth-child(3) { border-top-color: #ffffff; }
.euro-stat:nth-child(4) { border-top-color: var(--euro-red); }
.euro-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #334155;
}
.euro-stat span {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

/* Bento features */
.euro-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.euro-bento-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.euro-bento-card:hover {
  border-color: var(--euro-blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.euro-bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.euro-bento-card:nth-child(1) .euro-bento-icon { background: var(--euro-blue-soft); }
.euro-bento-card:nth-child(2) .euro-bento-icon { background: var(--euro-red-soft); }
.euro-bento-card:nth-child(3) .euro-bento-icon { background: var(--euro-gold-soft); }
.euro-bento-card:nth-child(4) .euro-bento-icon { background: #ecfdf5; }
.euro-bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--euro-navy);
  margin-bottom: 0.4rem;
}
.euro-bento-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Pricing */
.pricing-section { background: var(--surface-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
.price-card {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--euro-blue) !important;
}

/* Flag-themed pricing cards — FR · BE · CH · ES · PT · CA · DE */
@keyframes flag-cycle {
  0%, 13.99% { background-position: 0% 0; }
  14%, 27.99% { background-position: 16.666% 0; }
  28%, 41.99% { background-position: 33.333% 0; }
  42%, 55.99% { background-position: 50% 0; }
  56%, 69.99% { background-position: 66.666% 0; }
  70%, 83.99% { background-position: 83.333% 0; }
  84%, 99.99% { background-position: 100% 0; }
}
@keyframes flag-shimmer {
  0% { left: -50%; opacity: 0; }
  15% { opacity: 0.65; }
  50% { left: 120%; opacity: 0.65; }
  85% { opacity: 0; }
  100% { left: 120%; opacity: 0; }
}
.pricing-grid .price-card[class*="flag-"] {
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0 !important;
  border-top: none !important;
}
.pricing-grid .price-card[class*="flag-"] > * {
  position: relative;
  z-index: 1;
}
.pricing-grid .price-card[class*="flag-"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    /* France */
    #0055a4 0%,
    #0055a4 4.76%,
    #ffffff 4.76%,
    #ffffff 9.52%,
    #ef4135 9.52%,
    #ef4135 14.28%,
    /* Belgium */
    #000000 14.28%,
    #000000 19.05%,
    #fdda24 19.05%,
    #fdda24 23.81%,
    #ef3340 23.81%,
    #ef3340 28.57%,
    /* Switzerland */
    #da291c 28.57%,
    #da291c 42.85%,
    /* Spain */
    #aa151b 42.85%,
    #aa151b 47.62%,
    #f1bf00 47.62%,
    #f1bf00 52.38%,
    #aa151b 52.38%,
    #aa151b 57.14%,
    /* Portugal */
    #006600 57.14%,
    #006600 61.9%,
    #da291c 61.9%,
    #da291c 71.42%,
    /* Canada */
    #d80621 71.42%,
    #d80621 76.19%,
    #ffffff 76.19%,
    #ffffff 80.95%,
    #d80621 80.95%,
    #d80621 85.71%,
    /* Germany */
    #000000 85.71%,
    #000000 90.48%,
    #dd0000 90.48%,
    #dd0000 95.24%,
    #ffce00 95.24%,
    #ffce00 100%
  );
  background-size: 700% 100%;
  animation: flag-cycle 14s steps(1, end) infinite;
}
.pricing-grid .price-card[class*="flag-"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 12px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  animation: flag-shimmer 2s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
.pricing-grid .price-card:nth-child(1)::after { animation-delay: 0s; }
.pricing-grid .price-card:nth-child(2)::after { animation-delay: 0.5s; }
.pricing-grid .price-card:nth-child(3)::after { animation-delay: 1s; }
.pricing-grid .price-card:nth-child(4)::after { animation-delay: 1.5s; }

/* France */
.flag-fr {
  background: linear-gradient(180deg, rgba(0, 85, 164, 0.06) 0%, #ffffff 24%) !important;
  box-shadow: 0 8px 28px rgba(0, 85, 164, 0.1), inset 5px 0 0 #0055a4, inset -5px 0 0 #ef4135;
}
.flag-fr .price-amount { color: #0055a4; }
/* Belgium */
.flag-be {
  background: linear-gradient(180deg, rgba(253, 218, 36, 0.08) 0%, #ffffff 24%) !important;
  box-shadow: 0 8px 28px rgba(239, 51, 64, 0.1), inset 5px 0 0 #000000, inset -5px 0 0 #ef3340;
}
.flag-be .price-amount { color: #ef3340; }
/* Switzerland — featured */
.flag-ch.featured {
  transform: scale(1.03);
  background: linear-gradient(180deg, rgba(218, 41, 28, 0.07) 0%, #ffffff 24%) !important;
  box-shadow: 0 12px 36px rgba(218, 41, 28, 0.18), inset 5px 0 0 #da291c, inset -5px 0 0 #da291c;
}
.flag-ch .price-plan-name { margin-top: 0.35rem; }
.flag-ch .price-amount {
  color: #da291c;
  text-shadow: 0 2px 10px rgba(218, 41, 28, 0.12);
}
.flag-ch .price-badge-popular {
  background: linear-gradient(135deg, #da291c, #b91c1c) !important;
  box-shadow: 0 4px 14px rgba(218, 41, 28, 0.35);
}
/* Elite — France + Belgium + Switzerland */
.flag-all {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(0, 85, 164, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(253, 218, 36, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(218, 41, 28, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 26%) !important;
  box-shadow: 0 10px 32px rgba(13, 27, 42, 0.1), inset 5px 0 0 #0055a4, inset -5px 0 0 #da291c;
}
.flag-all .price-amount { color: var(--euro-navy); }
.flag-all .price-badge-elite {
  background: linear-gradient(135deg, #0055a4, #da291c) !important;
  box-shadow: 0 4px 14px rgba(0, 85, 164, 0.25);
}
.price-plan-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--euro-navy);
}
.price-tagline { font-size: 0.82rem; color: var(--text-muted); margin: 0.25rem 0 0.75rem; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--euro-red);
}
.price-amount small { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.price-bonus { font-size: 0.82rem; color: var(--euro-green); font-weight: 700; margin-bottom: 0.5rem; }
.price-features { margin: 1rem 0; flex: 1; }
.price-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: static;
}
.price-features li::before {
  content: "✓";
  position: static;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
  color: #10b981;
  font-weight: 700;
  line-height: 1;
}
.pricing-section .price-features li::before { color: #10b981; }
.price-badge-slot { margin-bottom: 0.75rem; }
.price-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.price-badge-popular { background: var(--euro-red) !important; }
.price-badge-elite { background: var(--euro-navy) !important; }
.price-guarantee { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }
.pricing-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.pricing-trust-item {
  text-align: center;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pricing-trust-item strong { display: block; font-size: 0.88rem; color: var(--euro-navy); margin-bottom: 0.2rem; }
.pricing-trust-item span { font-size: 0.78rem; color: var(--text-muted); }
.pricing-promo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pricing-promo-btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 680px;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px dashed rgba(27, 110, 243, 0.35);
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(27, 110, 243, 0.1);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-promo-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 110, 243, 0.55);
  box-shadow: 0 10px 32px rgba(27, 110, 243, 0.16);
}
.pricing-promo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 0.75rem 0.55rem;
  background: linear-gradient(180deg, var(--euro-blue), #0d47a1);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-promo-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(90deg, rgba(27, 110, 243, 0.04) 0%, #ffffff 50%, rgba(229, 39, 58, 0.04) 100%);
}
.pricing-promo-deal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
}
.pricing-promo-deal-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--euro-red);
}
.pricing-promo-deal-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--euro-navy);
  line-height: 1.25;
}
.pricing-promo-deal-label small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-promo-divider {
  width: 1px;
  align-self: stretch;
  min-height: 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(27, 110, 243, 0.25), transparent);
}
.pricing-promo-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem 1.1rem;
  background: rgba(27, 110, 243, 0.1);
  color: var(--euro-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-left: 1.5px dashed rgba(27, 110, 243, 0.25);
  transition: background var(--transition), color var(--transition);
}
.pricing-promo-action-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.pricing-promo-btn:hover .pricing-promo-action {
  background: var(--euro-blue);
  color: #ffffff;
}
@media (max-width: 640px) {
  .pricing-promo-btn {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .pricing-promo-badge {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 0.5rem 1rem;
    width: 100%;
  }
  .pricing-promo-body {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  .pricing-promo-divider {
    width: 80%;
    height: 1px;
    min-height: 0;
    align-self: center;
    background: linear-gradient(90deg, transparent, rgba(27, 110, 243, 0.25), transparent);
  }
  .pricing-promo-action {
    flex-direction: row;
    border-left: none;
    border-top: 1.5px dashed rgba(27, 110, 243, 0.25);
    padding: 0.85rem 1rem;
  }
}

/* Channels marquee */
.euro-marquee {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.channels-track {
  display: flex;
  gap: 1rem;
  animation: euro-scroll 35s linear infinite;
  width: max-content;
}
.channels-track:hover { animation-play-state: paused; }
@keyframes euro-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.channel-pill {
  flex-shrink: 0;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
}
.channel-pill.sport { background: var(--euro-red-soft); color: var(--euro-red-dark); border-color: #fecdd3; }
.channel-pill.cinema { background: var(--euro-blue-soft); color: var(--euro-blue); border-color: #bfdbfe; }
.channel-pill.news { background: var(--surface-2); color: var(--text-muted); }

/* Devices */
.devices-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  min-width: 110px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--euro-navy);
  border-radius: var(--radius);
  transition: var(--transition);
}
.device-item:hover { border-color: var(--euro-blue); transform: translateY(-3px); }

/* FAQ */
.faq-item {
  margin-bottom: 0.75rem;
  border-radius: var(--radius) !important;
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--euro-navy);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Reviews */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review-card {
  padding: 1.5rem;
  border-left: 4px solid var(--euro-gold) !important;
}
.review-text { font-size: 0.92rem; color: var(--text-muted); margin: 0.75rem 0; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--euro-blue-soft);
  color: var(--euro-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.review-author strong { display: block; font-size: 0.88rem; color: var(--euro-navy); }
.review-author span { font-size: 0.78rem; color: var(--text-muted); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg) !important; }
.blog-card-thumb {
  background: linear-gradient(135deg, var(--euro-blue), var(--euro-navy));
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  padding: 1.5rem;
  text-align: center;
}
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 0.72rem; font-weight: 700; color: var(--euro-blue); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--euro-navy); margin: 0.4rem 0; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.blog-card-link { font-size: 0.85rem; font-weight: 700; color: var(--euro-red); margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.3rem; }

/* CTA panel */
.euro-cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 180, 0, 0.12) 0%, transparent 40%, transparent 60%, rgba(229, 39, 58, 0.1) 100%),
    linear-gradient(160deg, #152238 0%, var(--euro-navy) 50%, #0a1420 100%);
  border: 1px solid rgba(244, 180, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.2);
}

.euro-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244, 180, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.euro-cta-band > * {
  position: relative;
  z-index: 1;
}

.euro-cta-band .section-title {
  color: #fff;
}

.euro-cta-band .section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 0.65rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--euro-gold), rgba(244, 180, 0, 0.4));
}

.euro-cta-band .section-desc {
  color: #cbd5e1;
}

.euro-cta-band .btn-primary {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--euro-gold) 0%, #d9a000 100%);
  color: var(--euro-navy);
  border: none;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(244, 180, 0, 0.35);
}

.euro-cta-band .btn-primary:hover {
  background: linear-gradient(135deg, #ffc107 0%, var(--euro-gold) 100%);
  color: var(--euro-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(244, 180, 0, 0.45);
}

.euro-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: #e2e8f0;
  font-weight: 600;
}

.euro-cta-trust span {
  color: #e2e8f0;
}

/* SEO — 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 rgba(244, 180, 0, 0.22);
  background:
    linear-gradient(165deg, rgba(244, 180, 0, 0.05) 0%, #ffffff 42%, rgba(27, 110, 243, 0.04) 100%);
  box-shadow: 0 10px 36px rgba(13, 27, 42, 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(--euro-blue);
}

.seo-france-domain {
  color: var(--euro-red);
  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(--euro-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);
  background: linear-gradient(135deg, rgba(229, 39, 58, 0.08) 0%, rgba(244, 180, 0, 0.08) 100%);
  border: 1px solid rgba(229, 39, 58, 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(--euro-red), var(--euro-navy));
}

.seo-france-alert strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--euro-navy);
}

.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(--euro-navy);
}

.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(--euro-gold);
}

.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(--euro-navy);
  border-radius: 6px;
  background: rgba(13, 27, 42, 0.05);
  border: 1px solid rgba(244, 180, 0, 0.2);
}

.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(--euro-blue);
  text-decoration: none;
}

.seo-france-link:hover {
  text-decoration: underline;
  color: var(--euro-navy);
}

@media (max-width: 768px) {
  .seo-france-grid {
    grid-template-columns: 1fr;
  }
}

/* Page hero (inner pages) */
.page-hero {
  padding-top: calc(var(--header-h) + var(--promo-h) + 2rem);
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, var(--euro-blue-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--euro-navy);
  margin: 0.5rem 0;
}
.page-hero p { color: var(--text-muted); max-width: 640px; }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.breadcrumb a:hover { color: var(--euro-blue); }
.page-hero-brand { width: min(200px, 50vw); margin-bottom: 1rem; }

/* Cards grid (legacy) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.card { padding: 1.5rem; transition: var(--transition); }
.card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--euro-navy); margin-bottom: 0.5rem; }
.card p { font-size: 0.88rem; color: var(--text-muted); }
.card:hover { border-color: var(--euro-blue) !important; transform: translateY(-4px); }

/* Sticky order */
.sticky-order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface);
  border-top: 3px solid var(--euro-red);
  box-shadow: 0 -8px 30px rgba(13, 27, 42, 0.12);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-order-bar.visible { transform: translateY(0); }
.sticky-order-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  min-height: var(--sticky-h);
  width: min(1140px, 92vw);
  margin-inline: auto;
}
.sticky-order-text strong { display: block; font-size: 0.95rem; color: var(--euro-navy); }
.sticky-order-text span { font-size: 0.78rem; color: var(--euro-red); font-weight: 700; }

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 180, 0, 0.06) 0%, transparent 35%),
    linear-gradient(165deg, #0a1420 0%, var(--euro-navy) 45%, #152238 100%);
  color: #94a3b8;
  padding: 3rem 0 1.5rem;
  border-top: 2px solid rgba(244, 180, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 180, 0, 0.5), transparent);
  pointer-events: none;
}

.footer h4 {
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(244, 180, 0, 0.2);
}

.footer a {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--euro-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 0.75rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer ul li { margin-bottom: 0.4rem; }

.footer-keywords {
  font-size: 0.72rem;
  color: #64748b;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(244, 180, 0, 0.12);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 180, 0, 0.12);
  color: #64748b;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
body.has-sticky-order .whatsapp-float { bottom: calc(var(--sticky-h) + 1rem); }
.whatsapp-float:hover { transform: scale(1.08); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Checkout page */
.checkout-page {
  padding-top: var(--promo-h);
  background: var(--bg);
  min-height: 100vh;
}
.checkout-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.35rem 0;
  position: sticky;
  top: var(--promo-h);
  z-index: 50;
}
.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(1140px, 92vw);
  margin-inline: auto;
  padding-inline: 1rem;
  min-height: var(--header-h);
}
.checkout-header .logo-img {
  height: 66px !important;
  max-width: 210px !important;
  width: auto;
  display: block;
}
.checkout-back {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--euro-blue);
  white-space: nowrap;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 110, 243, 0.2);
  background: rgba(27, 110, 243, 0.06);
  transition: background var(--transition), border-color var(--transition);
}
.checkout-back:hover {
  background: rgba(27, 110, 243, 0.12);
  border-color: rgba(27, 110, 243, 0.35);
}
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}
.checkout-step {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.checkout-step.is-active {
  background: var(--euro-blue);
  color: #fff;
  border-color: var(--euro-blue);
}
.checkout-title { text-align: center; margin-bottom: 2rem; }
.checkout-title h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--euro-navy); }
.checkout-title p { color: var(--text-muted); font-size: 0.92rem; }
.checkout-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.checkout-tabs-inner {
  display: inline-flex;
  padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.tab-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.tab-active {
  background: var(--euro-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(27, 110, 243, 0.3);
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
  width: min(1140px, 92vw);
  margin-inline: auto;
  padding-bottom: 3rem;
}
.plan-card {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}
.plan-card:hover { border-color: var(--euro-blue); transform: translateY(-2px); }
.plan-card.plan-selected {
  border-color: var(--euro-red);
  background: linear-gradient(180deg, var(--euro-red-soft), var(--surface) 50%);
  box-shadow: 0 4px 20px rgba(229, 39, 58, 0.15);
}
.plan-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--euro-navy); }
.plan-card .plan-meta { font-size: 0.82rem; color: var(--text-muted); }
.plan-card .plan-price { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--euro-red); }
.plan-badge {
  position: absolute;
  top: -10px;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  background: var(--euro-red);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.checkout-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1rem;
}
.checkout-form-card h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--euro-navy); margin-bottom: 1rem; }
.checkout-form-card label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.35rem; }
.checkout-form-card input,
.checkout-form-card select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.92rem;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
}
.checkout-form-card input:focus,
.checkout-form-card select:focus {
  outline: none;
  border-color: var(--euro-blue);
  box-shadow: 0 0 0 3px rgba(27, 110, 243, 0.15);
}
.checkout-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-wrap { margin-bottom: 0; }
.field-error { color: var(--euro-red); font-size: 0.75rem; margin-top: 0.25rem; }
.field-error.hidden { display: none; }
.checkout-checkbox {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 1rem;
  cursor: pointer;
}
.checkout-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--promo-h) + 4rem);
  background: var(--surface);
  border: 2px solid var(--euro-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.checkout-sidebar-head {
  background: linear-gradient(135deg, var(--euro-blue), #0d47a1);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.checkout-sidebar-body { padding: 1.5rem; }
#summary-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--euro-navy); }
#summary-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--euro-red); }
#summary-bonus { color: var(--euro-green); font-weight: 700; font-size: 0.88rem; }
#summary-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: static;
}
#summary-features li::before {
  content: "✓";
  position: static;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
  color: #10b981;
  font-weight: 700;
  line-height: 1;
}
.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--euro-red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 1.25rem;
  box-shadow: 0 4px 20px rgba(229, 39, 58, 0.35);
  transition: var(--transition);
  font-family: var(--font);
}
.btn-checkout:hover { background: var(--euro-red-dark); transform: translateY(-2px); }
.checkout-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  width: min(1140px, 92vw);
  margin-inline: auto;
}
.checkout-trust-item {
  text-align: center;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.checkout-trust-item strong { display: block; font-size: 0.85rem; color: var(--euro-navy); }
.checkout-trust-item span { font-size: 0.75rem; color: var(--text-muted); }
.checkout-trust-icon { margin-bottom: 0.5rem; color: var(--euro-blue); }
.checkout-alert {
  max-width: 1140px;
  margin: 2rem auto;
  padding: 1.25rem;
  background: var(--euro-gold-soft);
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  text-align: center;
}
.checkout-alert h3 { color: var(--euro-navy); font-weight: 700; margin-bottom: 0.5rem; }
.checkout-alert p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.checkout-alert a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
}
#multi-panel {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--euro-blue-soft);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
}
#multi-panel.hidden { display: none; }
#multi-panel label { font-weight: 600; font-size: 0.88rem; color: var(--euro-navy); }
#screens-count { width: 100%; accent-color: var(--euro-blue); margin-top: 0.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }
.checkout-mobile-submit { display: block; }
#submit-btn { display: none; }
#submit-note-desktop { display: none; }
@media (min-width: 1024px) {
  .checkout-mobile-submit { display: none; }
  #submit-btn { display: flex !important; align-items: center; justify-content: center; gap: 0.5rem; }
  #submit-note-desktop { display: block !important; }
}
.spinner { animation: euro-spin 0.7s linear infinite; }
@keyframes euro-spin { to { transform: rotate(360deg); } }
.checkout-footer { text-align: center; padding: 2rem; font-size: 0.82rem; color: var(--text-muted); border-top: 1px solid var(--border); }

/* Checkout popup — commande rapide sans changement de page */
body.cko-open { overflow: hidden; }

.cko-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(13, 27, 42, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cko-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cko-dialog {
  position: relative;
  width: min(440px, 100%);
  max-height: min(92vh, 680px);
  overflow-y: auto;
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cko-overlay.is-open .cko-dialog {
  transform: translateY(0) scale(1);
}

.cko-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.cko-close:hover {
  color: var(--euro-navy);
  border-color: var(--euro-blue);
}

.cko-head { padding-right: 2rem; margin-bottom: 1rem; }

.cko-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--euro-green);
  background: rgba(34, 197, 94, 0.12);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.cko-head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--euro-navy);
  margin-bottom: 0.75rem;
}

.cko-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cko-summary-row strong {
  display: block;
  font-size: 1rem;
  color: var(--euro-navy);
}

.cko-bonus {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--euro-green);
  margin-top: 0.15rem;
}

.cko-bonus.hidden { display: none; }

.cko-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--euro-red);
  line-height: 1;
}

.cko-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.cko-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.cko-mode {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--euro-navy);
  cursor: pointer;
  transition: var(--transition);
}

.cko-mode:hover { border-color: var(--euro-blue); }

.cko-mode.is-active {
  background: linear-gradient(135deg, var(--euro-navy), var(--euro-blue));
  border-color: transparent;
  color: #fff;
}

.cko-multi-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--euro-navy);
  margin-bottom: 0.5rem;
}

.cko-forfait {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.cko-screens-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.cko-screen {
  padding: 0.55rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--euro-navy);
  cursor: pointer;
  transition: var(--transition);
}

.cko-screen:hover { border-color: var(--euro-blue); }

.cko-screen.is-active {
  background: var(--euro-red);
  border-color: var(--euro-red);
  color: #fff;
}

.cko-slider-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.cko-slider-label.hidden,
.cko-multi input[type="range"].hidden { display: none; }

.cko-durations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.cko-dur {
  padding: 0.55rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--euro-navy);
  cursor: pointer;
  transition: var(--transition);
}

.cko-dur:hover { border-color: var(--euro-blue); }

.cko-dur.is-active {
  background: var(--euro-navy);
  border-color: var(--euro-navy);
  color: #fff;
}

.cko-multi {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.cko-multi label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--euro-navy);
  margin-bottom: 0.5rem;
}

.cko-multi input[type="range"] { width: 100%; accent-color: var(--euro-blue); }

.cko-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cko-form input,
.cko-form select {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cko-form input:focus,
.cko-form select:focus {
  outline: none;
  border-color: var(--euro-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.cko-form input.cko-invalid {
  border-color: var(--euro-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.cko-phone {
  display: flex;
  gap: 0.5rem;
}

.cko-phone select { width: 108px; flex-shrink: 0; }
.cko-phone input { flex: 1; }

.cko-adult {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}

.cko-adult input { width: auto; }

.cko-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.cko-submit:hover:not(:disabled) {
  background: #1ebe57;
  transform: translateY(-1px);
}

.cko-submit:disabled { opacity: 0.75; cursor: wait; }

.cko-trust {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

@media (max-width: 480px) {
  .cko-durations { grid-template-columns: repeat(2, 1fr); }
  .cko-dialog { padding: 1.25rem 1rem 1rem; }
}

/* Conversion widgets */
.cv-promo-banner {
  background:
    linear-gradient(90deg, rgba(244, 180, 0, 0.14) 0%, transparent 28%, transparent 72%, rgba(229, 39, 58, 0.12) 100%),
    linear-gradient(180deg, #152238 0%, var(--euro-navy) 55%, #0a1420 100%) !important;
  border-bottom: 2px solid rgba(244, 180, 0, 0.4);
  box-shadow: 0 4px 18px rgba(13, 27, 42, 0.35);
  color: #fff;
}

.cv-promo-banner .cv-promo-main {
  color: var(--euro-gold);
}

.cv-promo-banner .cv-promo-bonus {
  background: rgba(244, 180, 0, 0.22) !important;
  border-color: rgba(244, 180, 0, 0.45) !important;
  color: #fff;
}

.cv-promo-banner .cv-promo-bonus--elite {
  background: rgba(27, 110, 243, 0.28) !important;
  border-color: rgba(27, 110, 243, 0.5) !important;
}

.cv-promo-banner a.cv-promo-cta {
  color: var(--euro-gold) !important;
  text-decoration: none;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.18);
  border: 1px solid rgba(244, 180, 0, 0.45);
}

.cv-promo-banner a.cv-promo-cta:hover {
  color: #fff !important;
  background: rgba(244, 180, 0, 0.35);
}

.cv-promo-banner .cv-promo-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 180, 0, 0.25);
}

.cv-promo-banner .cv-promo-close:hover {
  background: rgba(244, 180, 0, 0.25);
  color: #fff;
}

.seo-related-links { padding-top: 0; padding-bottom: 2rem; }
.seo-related-title { font-size: 1.35rem; margin-bottom: 1rem; }
.seo-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
}
.seo-link-grid a {
  font-size: 0.9rem;
  color: var(--euro-blue);
  text-decoration: none;
  font-weight: 600;
}
.seo-link-grid a:hover { text-decoration: underline; color: var(--euro-navy); }

/* Responsive */
@media (max-width: 1024px) {
  .euro-hero-grid { grid-template-columns: 1fr; }
  .euro-hero-visual { order: -1; }
  .euro-hero-visual img { min-height: 220px; }
  .euro-bento, .pricing-grid, .pricing-grid-4, .cards-grid, .reviews-slider, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: calc(var(--header-h) + var(--promo-h));
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: #ffffff !important;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    gap: 0.25rem;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    color: var(--euro-navy) !important;
  }
  .nav a:hover { color: var(--euro-blue) !important; }
  .nav a.active { color: var(--euro-red) !important; }
  .euro-hero-plans { grid-template-columns: repeat(2, 1fr); }
  .euro-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .euro-bento, .pricing-grid, .pricing-grid-4, .cards-grid, .reviews-slider, .blog-grid, .pricing-trust, .checkout-trust-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .sticky-order-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .euro-hero-wc {
    flex-wrap: wrap;
    gap: 0.65rem;
  }
  .euro-hero-wc-link {
    margin-left: 0;
    width: 100%;
    padding-top: 0.25rem;
  }
}

@media (max-width: 380px) {
  .euro-hero-plans { grid-template-columns: 1fr; }
  .euro-promo { font-size: 0.7rem; }
}

/* Offres page — structure type topsiteiptv */
.offres-mode-tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 0 auto 2rem;
  gap: 4px;
}
.offres-mode-tab {
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.offres-mode-tab.is-active {
  background: var(--euro-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(27, 110, 243, 0.25);
}
.offres-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.offres-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--euro-navy);
  margin-bottom: 0.5rem;
}
.offres-intro p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}
.offres-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.65rem;
  margin: 0.75rem 0 0.25rem;
}
.offres-price-was {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.75;
}
.offres-price-now {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--euro-red);
  line-height: 1;
}
.offres-price-month {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--euro-blue);
  text-align: center;
  margin-bottom: 0.35rem;
}
.offres-screen-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--euro-navy);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.5rem;
}
.offres-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.offres-trust-item {
  text-align: center;
  padding: 1rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.offres-trust-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--euro-navy);
  margin-bottom: 0.2rem;
}
.offres-trust-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.offres-pack {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.offres-pack-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.offres-pack-head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--euro-navy);
  margin-bottom: 0.35rem;
}
.offres-pack-head p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}
.offres-configurator {
  margin-top: 3rem;
  padding: 1.75rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(27, 110, 243, 0.08), rgba(229, 39, 58, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.offres-configurator h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--euro-navy);
  margin-bottom: 0.5rem;
}
.offres-configurator p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.offres-features li:last-child {
  font-weight: 600;
  color: var(--euro-navy);
}
#offres-multi[hidden],
#offres-single[hidden] { display: none !important; }

/* ── Box IPTV section (homepage) ── */
.euro-box-section {
  background: linear-gradient(180deg, var(--bg) 0%, #eef4fc 50%, var(--bg) 100%);
}
.euro-box-headline {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--euro-navy) !important;
}
.euro-box-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 0.5rem;
}
.euro-box-visual {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.euro-box-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.euro-box-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.euro-box-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.euro-box-spec {
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.euro-box-spec-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
  color: var(--euro-blue);
}
.euro-box-spec strong {
  display: block;
  font-size: 0.82rem;
  color: var(--euro-navy);
  margin-bottom: 0.15rem;
}
.euro-box-spec span {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.euro-box-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.euro-box-features li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-size: 0.9rem;
  color: var(--euro-navy);
  border-bottom: 1px solid var(--border);
}
.euro-box-features li:last-child { border-bottom: none; }
.euro-box-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}
.euro-box-offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border: 1.5px dashed rgba(27, 110, 243, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(27, 110, 243, 0.05), rgba(229, 39, 58, 0.04));
}
.euro-box-offer-badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--euro-red);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.euro-box-offer-badge--wc {
  background: linear-gradient(135deg, #c4121a, var(--euro-red));
  animation: euro-box-badge-pulse 2.5s ease-in-out infinite;
}
@keyframes euro-box-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 39, 58, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(229, 39, 58, 0); }
}
.euro-box-price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.euro-box-price-was {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--euro-red);
  text-decoration-thickness: 2px;
  opacity: 0.75;
}
.euro-box-price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--euro-blue);
  line-height: 1;
}
.euro-box-price-save {
  width: 100%;
  font-size: 0.82rem;
  color: var(--euro-navy);
  margin: 0;
}
.euro-box-price-save strong { color: var(--euro-red); }
.euro-box-price-note {
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.euro-box-cta-was {
  font-size: 0.78em;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.65;
  margin-left: 0.15rem;
}
.euro-box-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.euro-box-trust {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.euro-box-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.euro-box-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
@media (max-width: 900px) {
  .euro-box-grid { grid-template-columns: 1fr; }
  .euro-box-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .euro-box-specs { grid-template-columns: 1fr 1fr; }
  .euro-box-actions { flex-direction: column; }
  .euro-box-actions .btn { width: 100%; text-align: center; }
}
@media (max-width: 900px) {
  .offres-trust-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .offres-trust-row { grid-template-columns: 1fr; }
  .offres-mode-tabs { flex-direction: column; width: 100%; border-radius: var(--radius); }
  .offres-mode-tab { width: 100%; text-align: center; }
}
