:root {
  --blue-950: #071633;
  --blue-900: #0a2250;
  --blue-800: #12357a;
  --blue-700: #1a4ea9;
  --blue-500: #2f73ef;
  --blue-300: #9fc4ff;
  --red-700: #0649b8;
  --red-600: #0757d6;
  --red-500: #149eea;
  --red-300: #a7d8ff;
  --white: #ffffff;
  --ink-900: #0f1a31;
  --ink-700: #2e3a57;
  --ink-500: #5f6c8a;
  --line-soft: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(23, 58, 126, 0.22);
  --surface-a: #f4f8ff;
  --surface-b: #e8f0ff;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(9, 27, 64, 0.12);
  --shadow-strong: 0 24px 48px rgba(5, 17, 45, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 115, 239, 0.18), transparent 38%),
    radial-gradient(circle at 89% 0%, rgba(11, 125, 240, 0.16), transparent 34%),
    linear-gradient(180deg, #f7faff 0%, #ecf3ff 48%, #f7f9ff 100%);
  line-height: 1.55;
}


a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-head {
  margin-bottom: 26px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-700);
  background: rgba(47, 115, 239, 0.12);
  border: 1px solid rgba(47, 115, 239, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
}

.section h2,
.section h3,
.section h1 {
  margin: 0;
  line-height: 1.1;
}

.section h2 {
  margin-top: 14px;
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.section p {
  margin: 14px 0 0;
  color: var(--ink-700);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--red-600), var(--red-500));
  color: var(--white);
  box-shadow: 0 14px 24px rgba(7, 87, 214, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 18px 28px rgba(7, 87, 214, 0.4);
}

.btn-secondary {
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  box-shadow: 0 14px 24px rgba(26, 78, 169, 0.34);
}

.btn-ghost {
  background: rgba(15, 35, 78, 0.06);
  color: var(--blue-800);
  border: 1px solid rgba(15, 35, 78, 0.14);
}

.top-alert {
  background: linear-gradient(110deg, #081f4a, #163f94 62%, #be1735);
  color: #f6f9ff;
  font-size: 0.92rem;
}

.top-alert-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  flex-wrap: wrap;
}

.timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 2px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(244, 248, 255, 0.88);
  border-bottom: 1px solid rgba(17, 54, 119, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

img.brand-logo {
  width: auto;
  height: 55px;
  max-width: min(52vw, 230px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(10, 33, 78, 0.2));
}

.brand-name {
  display: block;
  font-size: 0.98rem;
  line-height: 1.08;
  color: var(--blue-900);
}

.brand-sub {
  display: block;
  margin-top: 1px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  font-weight: 600;
  color: var(--blue-900);
  font-size: 0.93rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-600, #285ecc), var(--red-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger i {
  font-size: 0.72em;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger i,
.nav-dropdown:focus-within .nav-dropdown-trigger i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 20;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(18, 53, 122, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(8, 26, 61, 0.16);
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(47, 115, 239, 0.08);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(22, 62, 130, 0.25);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 3px;
}

.hero {
  padding-top: 86px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -180px;
  left: -120px;
  background: rgba(26, 78, 169, 0.2);
}

.hero::after {
  width: 320px;
  height: 320px;
  right: -130px;
  bottom: -140px;
  background: rgba(7, 87, 214, 0.18);
}

.hero-shell {
  display: grid;
  gap: 26px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-image: url("https://abonnement-iptv-france24.fr/wp-content/uploads/2026/04/abonnement-iptv-france-24-hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.hero-shell > * {
  position: relative;
  z-index: 1;
}

.hero-top {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26, 78, 169, 0.14), rgba(7, 87, 214, 0.08));
  border: 1px solid rgba(18, 53, 122, 0.22);
  color: var(--blue-900);
  font-weight: 700;
  font-size: 0.84rem;
}

.hero-top h1 {
  margin-top: 16px;
  font-size: clamp(2.15rem, 4.1vw, 4rem);
  line-height: 1.08;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

.hero-top h1 span.part-1 {
  display: inline-block;
  margin-top: 6px;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--red-600);
}

.hero-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(18, 53, 122, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 255, 0.84));
  box-shadow: 0 16px 32px rgba(8, 26, 61, 0.1);
  padding: 24px;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -88px;
  right: -72px;
  border-radius: 32px;
  transform: rotate(18deg);
  background: linear-gradient(135deg, rgba(26, 78, 169, 0.26), rgba(7, 87, 214, 0.16));
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--blue-500), var(--red-500));
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-copy-kicker {
  margin: 0;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-800);
}

.hero-copy-title {
  margin: 10px 0 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.72rem);
  line-height: 1.25;
  color: var(--blue-900);
}

.hero-copy .lead {
  margin-top: 12px;
  font-size: 1.08rem;
  color: var(--ink-700);
  line-height: 1.5;
}

.hero-review {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.73rem;
  font-weight: 800;
  margin-right: -8px;
  border: 2px solid #fff;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--red-600));
  box-shadow: 0 8px 18px rgba(13, 40, 91, 0.22);
  overflow: hidden;
}

.hero-avatars span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-review-text strong {
  display: block;
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1.03rem;
}

.hero-review-text span {
  display: block;
  margin-top: 2px;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-mini-stats {
  margin: 26px auto 0;
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-mini-stats article {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 53, 122, 0.13);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 12px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hero-mini-stats article:nth-child(1) {
  border-top-color: var(--blue-500);
}

.hero-mini-stats article:nth-child(2) {
  border-top-color: var(--red-500);
}

.hero-mini-stats article:nth-child(3) {
  border-top-color: var(--blue-700);
}

.hero-mini-stats article:nth-child(4) {
  border-top-color: var(--red-600);
}

.hero-mini-stats strong {
  display: block;
  font-size: 1.44rem;
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.hero-mini-stats span {
  display: block;
  margin-top: 3px;
  font-size: 0.88rem;
  color: var(--ink-700);
}

.hero-media {
  position: relative;
  padding-bottom: 44px;
}

.hero-media-badge {
  position: absolute;
  top: -14px;
  left: -14px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(7, 87, 214, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(9, 29, 70, 0.14);
}

.hero-media-badge strong {
  display: block;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--blue-900);
  font-size: 0.9rem;
}

.hero-media-badge span {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
  color: var(--ink-700);
}

.hero-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 122, 0.13);
  box-shadow: var(--shadow-strong);
  min-height: 360px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px !important;
}

.hero-media-offer {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-900);
  border-radius: 16px;
  padding: 11px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(18, 53, 122, 0.14);
  box-shadow: 0 12px 24px rgba(8, 26, 61, 0.14);
}

.hero-media-offer-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-600);
}

.hero-media-offer strong {
  display: block;
  margin-top: 2px;
  font-size: 0.88rem;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.hero-media-offer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  background: linear-gradient(120deg, var(--red-600), var(--red-500));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-900);
  background: linear-gradient(120deg, rgba(236, 243, 255, 0.95), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(18, 53, 122, 0.14);
}

.hero-tags span:nth-child(2) {
  color: var(--red-700);
  border-color: rgba(7, 87, 214, 0.3);
  background: linear-gradient(120deg, rgba(255, 240, 244, 0.95), rgba(255, 255, 255, 0.92));
}

.about-section {
  padding-top: 34px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.about-copy {
  background: transparent;
  border-radius: 24px;
  padding: 24px;
  box-shadow: none;
}

.about-copy p {
  margin-top: 12px;
}

.about-points {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-points span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 53, 122, 0.15);
}

.about-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 53, 122, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px !important;
}

.about-card-body {
  padding: 18px;
}

.about-card-body h3 {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--blue-900);
  font-size: 1.1rem;
}

.about-card-body p {
  margin-top: 8px;
  color: var(--ink-700);
}

.about-mini-stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.about-mini-stats article {
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(18, 53, 122, 0.12);
  background: rgba(241, 247, 255, 0.9);
  padding: 10px 8px;
}

.about-mini-stats strong {
  display: block;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  color: var(--blue-900);
}

.about-mini-stats span {
  display: block;
  margin-top: 2px;
  font-size: 0.76rem;
  color: var(--ink-700);
}

.google-reviews-section {
  padding-top: 22px;
}

.google-reviews-section .container {
  background: transparent;
  border-radius: 28px;
  padding: 34px 28px;
}

.google-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.google-stars {
  color: #f0ac00;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.google-reviews-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.google-review-card {
  background: rgba(250, 252, 255, 0.95);
  border-radius: 22px;
  padding: 18px 16px;
  box-shadow: 0 14px 28px rgba(8, 26, 61, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.google-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(8, 26, 61, 0.12);
}

.google-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.google-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

img.google-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px !important;
  object-fit: cover;
  border: 2px solid #fff;
  outline: 2px solid rgba(26, 78, 169, 0.24);
  box-shadow: 0 9px 16px rgba(9, 29, 70, 0.16);
}

.google-logo {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.google-review-head h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.google-review-head span {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--ink-700);
}

.google-review-meta {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-review-meta .google-stars {
  margin: 0;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  letter-spacing: 0;
}

.google-time {
  font-size: 0.85rem;
  color: var(--ink-700);
}

.google-review-text {
  margin: 10px 0 0;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.55;
}

.google-verified {
  margin: 14px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blue-700);
  font-weight: 700;
}

.google-verified i {
  color: #1a73e8;
  font-size: 0.92rem;
}

.tarifs-section {
  padding-top: 18px;
}

.tarifs-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.tarifs-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.tarif-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 255, 0.96));
  border-radius: 22px;
  padding: 24px 14px 14px;
  box-shadow: 0 14px 28px rgba(8, 26, 61, 0.09);
  overflow: visible;
}

.tarif-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: -4px;
  height: 100px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--blue-500), var(--red-500));
}

.tarif-card.is-popular {
  background: linear-gradient(180deg, rgba(230, 242, 255, 0.98), rgba(221, 237, 255, 0.94));

}

.tarif-card.is-value {
  background: linear-gradient(180deg, rgba(255, 244, 223, 0.98), rgba(255, 236, 199, 0.96));
  
}

.tarif-badge {
  position: absolute;
  top: 0;
  right: 12px;
  transform: translateY(-50%);
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 8px 16px rgba(8, 26, 61, 0.18);
}

.tarif-card.is-value .tarif-badge {
  color: #4c2c02;
  background: linear-gradient(120deg, #f9c248, #f0a20a);
}

.tarif-card h3 {
  margin: 0;
  min-height: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.15;
  color: var(--blue-900);
}

.tarif-offer {
  margin: 8px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-900);
  background: rgba(47, 115, 239, 0.14);
}

.tarif-card.is-value .tarif-offer {
  background: rgba(240, 162, 10, 0.16);
  color: #744503;
}

.tarif-note {
  margin: 10px 0 0;
  min-height: 44px;
  border-radius: 12px;
  padding: 9px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.7);
}

.tarif-note i {
  margin-right: 6px;
  color: var(--red-500);
}

.tarif-price {
  margin: 12px 0 0;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.tarif-price span {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-700);
}

.tarif-card.is-value .tarif-price span {
  color: #c96f02;
}

.tarif-features {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.tarif-features li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--ink-700);
}

.tarif-features i {
  margin-top: 2px;
  color: var(--blue-500);
}

.tarif-card.is-value .tarif-features i {
  color: #d7830a;
}

.tarif-guarantee {
  margin: 14px 0 0;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #177c4c;
  background: rgba(31, 169, 108, 0.12);
}

.tarif-guarantee i {
  margin-right: 6px;
}

.tarif-btn {
  margin-top: 12px;
  min-height: 44px;
  border-radius: 12px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 10px 22px rgba(20, 66, 147, 0.26);
}

.tarif-btn i {
  transition: transform 0.2s ease;
}

.tarif-btn:hover i {
  transform: translateX(2px);
}

.tarif-card.is-popular .tarif-btn {
  background: linear-gradient(120deg, #1b5fe3, #18a5d9);
}

.tarif-card.is-value .tarif-btn {
  color: #4d2e00;
  background: linear-gradient(120deg, #f8b11f, #f0d24a);
  box-shadow: 0 10px 22px rgba(192, 124, 9, 0.24);
}

.multi-connex-wrap {
  margin-top: 30px;
  scroll-margin-top: 110px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 53, 122, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.tarifs-quick-action {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.tarifs-quick-action .btn {
  min-width: min(100%, 260px);
}

.multi-connex-head {
  text-align: center;
}

.multi-connex-head h3 {
  margin: 12px 0 0;
  font-size: clamp(1.24rem, 2vw, 1.62rem);
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.multi-connex-head p {
  margin: 12px auto 0;
  color: var(--ink-700);
  max-width: 70ch;
  font-size: 0.94rem;
}

.multi-connex-tabs {
  margin: 18px auto 0;
  display: flex;
  gap: 10px;
  border-radius: 999px;
  background: rgba(18, 53, 122, 0.08);
  padding: 6px;
  width: fit-content;
}

.multi-connex-tab {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 17px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue-900);
  background: transparent;
  cursor: pointer;
}

.multi-connex-tab.is-active {
  color: #fff;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 10px 18px rgba(23, 66, 147, 0.24);
}

.multi-connex-panel {
  margin-top: 16px;
}

.multi-connex-panel[hidden] {
  display: none;
}

.multi-connex-grid {
  margin-top: 0;
}

.multi-connex-grid .tarif-btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.surface {
  background: transparent;
  border-radius: var(--radius-xl);
  box-shadow: none;
}

.pricing-grid,
.feature-grid,
.device-grid,
.testimonial-grid,
.offer-grid,
.plan-groups {
  display: grid;
  gap: 16px;
}

.pricing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card h3 {
  font-size: 1.1rem;
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.plan-card .plan-price {
  font-size: 1.72rem;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  color: var(--red-600);
}

.plan-card .plan-note {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.plan-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-700);
  font-size: 0.9rem;
  display: grid;
  gap: 6px;
}

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

.plan-card.featured {
  border: 2px solid rgba(7, 87, 214, 0.45);
  box-shadow: 0 20px 36px rgba(7, 87, 214, 0.18);
  transform: translateY(-6px);
}

.plan-card .badge {
  align-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(7, 87, 214, 0.13);
  color: var(--red-700);
  border: 1px solid rgba(7, 87, 214, 0.26);
}

.plans-action {
  margin-top: 22px;
  text-align: center;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.device-card,
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.feature-card h3,
.device-card h3,
.testimonial-card h3 {
  font-size: 1.02rem;
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.feature-card p,
.device-card p,
.testimonial-card p {
  margin-top: 10px;
  font-size: 0.93rem;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 1.12rem;
  color: var(--white);
  background: linear-gradient(130deg, var(--blue-700), var(--red-600));
}

.advantages-section .section-head {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.advantages-section .feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.advantages-section .feature-card {
  position: relative;
  padding: 22px;
  border-radius: 20px;
  border: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.94));
  box-shadow: 0 14px 32px rgba(8, 26, 61, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.advantages-section .feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    height: 100%;
    border-radius: 20px;
    z-index: -1 !important;
    background: linear-gradient(90deg, var(--blue-500), var(--red-500));
}


.advantages-section .feature-card:hover {
  box-shadow: 0 18px 34px rgba(8, 26, 61, 0.14);
}

.advantages-section .feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 1.12rem;
  box-shadow: 0 10px 20px rgba(10, 39, 92, 0.24);
}

.advantages-section .feature-card h3 {
  font-size: 1.14rem;
  line-height: 1.2;
}

.advantages-section .feature-card p {
  margin-top: 10px;
}

.feature-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue-800);
}

.feature-meta i {
  color: var(--red-600);
}

.advantages-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.advantages-strip span {
  min-height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 9px 18px rgba(8, 26, 61, 0.08);
}

.advantages-strip i {
  color: var(--blue-700);
}

.compat-section .section-head {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.compat-orbit {
  position: relative;
  margin-top: 18px;
  min-height: 560px;
  border-radius: 28px;
  padding: 30px;
  background: radial-gradient(circle at 50% 50%, rgba(229, 241, 255, 0.9), rgba(238, 246, 255, 0.64) 45%, rgba(248, 251, 255, 0.88) 100%);
  overflow: hidden;
}

.compat-orbit::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px dashed rgba(24, 73, 155, 0.2);
}

.compat-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(470px, 72%);
  border-radius: 24px;
  padding: 24px 22px;
  text-align: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.95));
  box-shadow: 0 18px 38px rgba(9, 31, 72, 0.14);
}

.compat-center-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-800);
  background: rgba(47, 115, 239, 0.14);
}

.compat-center h3 {
  margin: 12px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.compat-center p {
  margin-top: 10px;
  color: var(--ink-700);
}

.compat-center-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.compat-center-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--blue-900);
}

.compat-center-list i {
  color: var(--red-600);
}

.compat-device {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(18, 53, 122, 0.14);
  box-shadow: 0 12px 24px rgba(10, 31, 71, 0.12);
}

.compat-device i {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--white);
  background: linear-gradient(130deg, var(--blue-700), var(--red-600));
}

.device-tv {
  top: 34px;
  left: 10%;
}

.device-android {
  top: 34px;
  right: 10%;
}

.device-mobile {
  top: 232px;
  left: 2%;
}

.device-pc {
  top: 232px;
  right: 2%;
}

.device-fire {
  bottom: 34px;
  left: 14%;
}

.device-tablet {
  bottom: 34px;
  right: 14%;
}

.experience-fixed-section {
  padding: 200px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(5, 13, 34, 0.86), rgba(9, 22, 54, 0.72) 48%, rgba(169, 22, 58, 0.56)),
    url("https://iptv-smarters.app/wp-content/uploads/2026/05/heureaux-couple-francaise-regarde-iptv-smarters-pro.webp") center right / cover no-repeat fixed;
}

.experience-fixed-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(76, 142, 255, 0.26), transparent 42%),
    radial-gradient(circle at 80% 78%, rgba(11, 125, 240, 0.24), transparent 44%);
  pointer-events: none;
}

.experience-fixed-section > .container {
  position: relative;
  z-index: 1;
}

.experience-fixed-card {
  max-width: min(700px, 100%);
  border-radius: 28px;
  padding: 38px 36px;
  background: linear-gradient(150deg, rgba(6, 18, 46, 0.85), rgba(10, 30, 74, 0.76));
  border: 1px solid rgba(173, 205, 255, 0.26);
  box-shadow: 0 24px 44px rgba(4, 11, 29, 0.42);
  backdrop-filter: blur(4px);
}

.experience-kicker {
  color: #d9ebff;
  background: rgba(121, 170, 255, 0.18);
  border-color: rgba(178, 207, 255, 0.36);
}

.experience-fixed-card h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 2.35rem);
  color: #f7fbff;
  line-height: 1.03;
  max-width: 100%;
}

.experience-fixed-card h2 span {
  color: var(--red-500);
}

.experience-fixed-card p {
  margin-top: 16px;
  max-width: 58ch;
  color: rgba(230, 239, 255, 0.92);
  font-size: 1.1rem;
}

.experience-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.experience-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f1f7ff;
  font-size: 1.05rem;
  font-weight: 700;
}

.experience-list i {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #0b5b3b;
  background: linear-gradient(145deg, #66f0b5, #39c98f);
  box-shadow: 0 8px 16px rgba(57, 201, 143, 0.34);
}

.compare-section {
  padding-top: 34px;
}

.compare-head {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.compare-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.compare-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 78, 169, 0.16);
  box-shadow: 0 8px 14px rgba(8, 26, 61, 0.07);
}

.compare-pills i {
  color: var(--blue-700);
}

.how-it-works-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #081a3d 0%, #0b2557 54%, #162d63 100%);
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(58, 120, 255, 0.22), transparent 38%),
    radial-gradient(circle at 82% 82%, rgba(11, 125, 240, 0.2), transparent 42%);
  pointer-events: none;
}

.how-it-works-section > .container {
  position: relative;
  z-index: 1;
}

.how-it-works-head {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-section .section-kicker {
  color: #d7e7ff;
  background: rgba(80, 141, 255, 0.2);
  border-color: rgba(145, 183, 255, 0.35);
}

.how-it-works-head h2 {
  color: #f5f8ff;
}

.how-it-works-head p {
  color: rgba(229, 238, 255, 0.86);
}

.how-it-works-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.how-step-card {
  position: relative;
  border-radius: 20px;
  padding: 22px 18px 18px;
  background: linear-gradient(160deg, rgba(14, 39, 87, 0.9), rgba(10, 31, 74, 0.92));
  border: 1px solid rgba(152, 188, 255, 0.18);
  box-shadow: 0 16px 32px rgba(3, 11, 30, 0.4);
}

.how-step-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -4px;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
    background: linear-gradient(90deg, var(--blue-500), var(--red-500));
}

.how-step-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 10px 18px rgba(16, 51, 114, 0.28);
}

.how-step-card h3 {
  margin: 14px 0 0;
  font-size: 1.42rem;
  color: #f5f8ff;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.how-step-card p {
  margin-top: 10px;
  color: rgba(220, 233, 255, 0.84);
}

.how-step-points {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.how-step-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8f1ff;
  font-size: 0.88rem;
  font-weight: 600;
}

.how-step-points i {
  color: #89b7ff;
  font-size: 0.95rem;
}

.how-it-works-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.how-it-works-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  min-width: 250px;
  padding: 13px 22px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--blue-500), var(--red-500));
  box-shadow: 0 14px 28px rgba(16, 52, 117, 0.42);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.how-it-works-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(16, 52, 117, 0.5);
}

.how-it-works-btn i {
  transition: transform 0.2s ease;
}

.how-it-works-btn:hover i {
  transform: translateX(2px);
}

.home-apps-section {
  padding-top: 76px;
}

.home-apps-head {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-app-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(20, 62, 140, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
  box-shadow: 0 14px 28px rgba(8, 30, 75, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(9, 33, 86, 0.16);
  border-color: rgba(37, 94, 197, 0.28);
}

.home-app-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-app-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(20, 62, 140, 0.12);
  padding: 8px;
  flex-shrink: 0;
}

.home-app-meta h3 {
  margin: 0;
  font-size: 1.22rem;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--blue-900);
}

.home-app-meta p {
  margin: 4px 0 0;
  color: var(--ink-700);
  font-size: 0.94rem;
}

.home-app-specs {
  margin-top: 8px !important;
  font-size: 0.82rem !important;
  line-height: 1.45;
  color: var(--ink-500) !important;
}

.home-app-specs strong {
  color: var(--blue-900);
  font-weight: 700;
}

.home-app-rating {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-app-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f6b400;
  font-size: 0.92rem;
}

.home-app-rating strong {
  color: var(--blue-900);
  font-size: 0.95rem;
}

.home-app-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.home-app-actions .btn {
  width: 100%;
  padding: 11px 12px;
  font-size: 0.86rem;
}

.home-app-download-btn {
  width: 46px !important;
  height: 46px;
  min-width: 46px;
  padding: 0 !important;
  border-radius: 50%;
  justify-self: start;
}

.home-app-download-btn i {
  font-size: 0.98rem;
}

.home-app-install-btn {
  min-height: 46px;
  width: 100%;
  font-size: 0.95rem;
  padding: 11px 16px !important;
}

.device-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card .rating {
  color: #f0ac00;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-card .author {
  margin-top: 14px;
  color: var(--blue-800);
  font-weight: 700;
  font-size: 0.9rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 22px;
  align-items: stretch;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(242, 247, 255, 0.96));
  border: 1px solid rgba(18, 53, 122, 0.13);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(9, 29, 70, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(9, 29, 70, 0.12);
}

.faq-item.is-open {
  border-color: rgba(7, 87, 214, 0.28);
  box-shadow: 0 14px 30px rgba(15, 32, 74, 0.14);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-size: 1.04rem;
  line-height: 1.35;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  color: var(--blue-900);
}

.faq-question:focus-visible {
  outline: 2px solid rgba(47, 115, 239, 0.55);
  outline-offset: -2px;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-toggle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--red-600);
  background: rgba(7, 87, 214, 0.12);
  border: 1px solid rgba(7, 87, 214, 0.2);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.faq-item.is-open .faq-toggle {
  color: #fff;
  background: linear-gradient(130deg, var(--red-600), var(--red-500));
  border-color: rgba(7, 87, 214, 0.6);
  transform: scale(1.03);
}

.faq-answer {
  padding: 0 18px 16px;
  border-top: 1px dashed rgba(18, 53, 122, 0.13);
  color: var(--ink-700);
  font-size: 0.95rem;
}

.faq-answer p {
  margin: 12px 0 0;
}

.faq-side {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0b285e, #0d2e6b 56%, #c31738);
  color: var(--white);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 34px rgba(7, 22, 52, 0.2);
}

.faq-side::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.faq-side > * {
  position: relative;
  z-index: 1;
}

.faq-side .faq-side-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-side h3 {
  margin-top: 12px;
  font-size: 1.36rem;
  line-height: 1.15;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.faq-side .faq-side-lead {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.6;
  text-shadow: 0 1px 0 rgba(4, 11, 30, 0.2);
}

.faq-side-meta {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.faq-side-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.faq-side-meta i {
  color: #ffd56a;
}

.faq-side-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.faq-side-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
}

.faq-side-list i {
  margin-top: 2px;
  color: #78ffd9;
}

.faq-side-actions {
  margin-top: auto;
  padding-top: 16px;
  display: grid;
  gap: 10px;
}

.faq-side-btn {
  width: 100%;
  min-height: 46px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
  font-weight: 800;
}

.faq-side-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.faq-whatsapp-btn {
  background: linear-gradient(135deg, #1dbf62, #25d366);
  border: 1px solid rgba(27, 173, 87, 0.95);
  box-shadow: 0 10px 20px rgba(17, 114, 57, 0.32);
  color: #fff;
}

.faq-whatsapp-btn i {
  font-size: 1.04rem;
}

.faq-whatsapp-btn:hover {
  background: linear-gradient(135deg, #17b45a, #20ca60);
  border-color: rgba(21, 159, 79, 0.98);
  box-shadow: 0 12px 22px rgba(14, 97, 48, 0.34);
}

.faq-side-link {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}

.faq-side-link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 8% 12%, rgba(134, 180, 255, 0.28), transparent 34%),
    radial-gradient(circle at 96% 90%, rgba(255, 120, 164, 0.28), transparent 38%),
    linear-gradient(130deg, #071a45 0%, #184195 44%, #4b2b89 70%, #cc2b5e 100%);
  color: var(--white);
  padding: 14px;
  box-shadow: 0 26px 56px rgba(6, 17, 44, 0.28);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 18px);
  opacity: 0.16;
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

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

.cta-content {
  display: grid;
  gap: 14px;
  align-content: start;
  margin: 8px 0 8px 8px;
  padding: 30px 26px;
  border-radius: 28px;
  z-index: 2 !important;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, rgb(245, 249, 255), rgb(236, 244, 255));
  box-shadow: 0 20px 46px rgba(8, 24, 64, 0.24);
  background: #fff;
}

.cta-content::before {
    content: "";
    position: absolute;
    left: 4px;
    right: 0;
    top: -4px;
    height: 100%;
    z-index: -1 !important;
    border-radius: 26px;
    opacity: 0.2;
    background: linear-gradient(90deg, var(--blue-500), var(--red-500));
}

.cta-band-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(24, 65, 149, 0.24);
  background: rgba(20, 72, 179, 0.12);
  color: #194287;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
}

.cta-content h2 {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.78rem, 2.8vw, 2.2rem);
  max-width: 18ch;
  line-height: 1.04;
  color: #0a2250;
}

.cta-content p {
  color: #31456d;
  max-width: 44ch;
  font-size: 1.03rem;
}

.cta-offer-highlight {
  display: grid;
  gap: 5px;
  border-radius: 18px;
  border: 1px solid rgba(23, 67, 150, 0.16);
  background: linear-gradient(140deg, #f7faff 0%, #edf4ff 55%, #fff4f7 100%);
  padding: 14px 14px 12px;
}

.cta-offer-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cta-offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: #a31733;
  background: rgba(11, 125, 240, 0.14);
}

.cta-offer-deal {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0d2a62;
}

.cta-offer-bonus {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #7a4400;
  background: linear-gradient(120deg, #ffe8b6, #ffd375);
  box-shadow: 0 8px 16px rgba(190, 123, 12, 0.2);
}

.cta-offer-bonus i {
  color: #c37400;
}

.cta-offer-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}

.cta-price-now {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.75rem, 2.9vw, 2.4rem);
  line-height: 1;
  font-weight: 900;
  color: #b61636;
}

.cta-price-old {
  font-size: 1.04rem;
  font-weight: 700;
  color: #5a6a89;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.cta-price-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(120deg, #0757d6, #149eea);
  box-shadow: 0 8px 16px rgba(7, 87, 214, 0.26);
}

.cta-offer-note {
  margin: 0;
  max-width: none;
  line-height: 22px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #243a64;
}

.cta-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.cta-time-box {
  border-radius: 12px;
  border: 1px solid rgba(19, 58, 129, 0.22);
  background: linear-gradient(180deg, #10306f, #153b84);
  padding: 10px 8px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-time-box strong {
  display: block;
  font-size: 1.36rem;
  line-height: 1;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.cta-time-box span {
  margin-top: 6px;
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(233, 240, 255, 0.88);
}

.cta-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: visible;
}

.cta-visual::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  bottom: -130px;
  right: 50%;
  transform: translateX(48%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 245, 255, 0.24), rgba(236, 245, 255, 0));
}

.cta-visual::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 64px;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 14, 40, 0.48), rgba(7, 14, 40, 0));
}

.cta-person {
  position: relative;
  z-index: 1;
  width: min(600px, 118%);
  max-height: 535px;
  object-fit: contain;
  transform: translateY(18px);
  filter: drop-shadow(0 30px 42px rgba(7, 13, 35, 0.54));
}

.cta-actions {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-band .btn-primary {
  box-shadow: 0 14px 24px rgba(211, 24, 67, 0.34);
  min-height: 48px;
}

.cta-band .btn-secondary {
  background: rgba(20, 72, 179, 0.1);
  border: 1px solid rgba(20, 72, 179, 0.28);
  color: #0a2250;
  box-shadow: none;
  min-height: 48px;
}

.site-footer {
  margin-top: 86px;
  color: rgba(235, 243, 255, 0.92);
  background:
    radial-gradient(circle at 8% 14%, rgba(73, 132, 255, 0.24), transparent 34%),
    radial-gradient(circle at 94% 0%, rgba(255, 91, 145, 0.2), transparent 34%),
    linear-gradient(160deg, #071735 0%, #081f46 52%, #0a1a39 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-wrap {
  padding: 44px 0 20px;
  display: grid;
  gap: 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-brand-col {
  padding-right: 8px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-brand-logo {
  width: min(240px, 76vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(5, 15, 36, 0.3) 
  ) contrast(0) brightness(2);

}

.footer-brand-text {
  display: grid;
  gap: 2px;
}

.footer-brand-text strong {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.06;
  color: #ffffff;
}

.footer-brand-text span {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(205, 223, 255, 0.82);
}

.footer-brand-col p {
  margin: 14px 0 0;
  max-width: 40ch;
  color: rgba(220, 232, 255, 0.86);
  font-size: 0.92rem;
}

.footer-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(173, 200, 247, 0.26);
  background: rgba(143, 179, 245, 0.12);
  color: rgba(236, 244, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-badges i {
  color: #9dffd0;
}

.footer-col {
  padding: 6px 0;
}

.footer-col h3 {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.1;
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(219, 232, 255, 0.86);
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-trust {
  padding: 14px 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(194, 214, 255, 0.24);
  background: rgba(122, 163, 243, 0.1);
}

.footer-trust p {
  margin: 10px 0 0;
  color: rgba(224, 236, 255, 0.9);
  font-size: 0.88rem;
}

.footer-trust-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(233, 242, 255, 0.95);
  font-size: 0.84rem;
  font-weight: 600;
}

.footer-trust-list i {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #9dffd0;
  font-size: 0.75rem;
}

.footer-bottom {
  min-height: 54px;
  padding-top: 14px;
  border-top: 1px solid rgba(210, 226, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(209, 225, 252, 0.82);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: rgba(227, 238, 255, 0.88);
}

.footer-legal a:hover {
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 25, 0.7);
}

.modal-card {
  position: relative;
  width: min(510px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink-500);
  cursor: pointer;
}

.modal-card h3 {
  margin: 2px 0 0;
  font-size: 1.35rem;
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.modal-card p {
  margin-top: 12px;
  color: var(--ink-700);
}

.modal-card .btn {
  margin-top: 18px;
}

.plans-page .page-hero {
  padding-top: 86px;
  padding-bottom: 26px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue-800);
}

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

.plans-page .plan-card {
  min-height: 100%;
}

.subscription-plan-page .plan-shell {
  padding: 72px 0 24px;
}

.plan-top {
  margin-bottom: 16px;
}

.plan-top .back-link {
  margin-bottom: 16px;
}

.plan-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.plan-main-card,
.plan-summary-card,
.block-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 53, 122, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.plans-page .block-card h2 {
  font-size: clamp(1.15rem, 1.35vw, 1.42rem);
  line-height: 1.2;
}

.plan-main-card h1 {
  font-size: clamp(1.72rem, 2.8vw, 2.35rem);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--blue-900);
}

.plan-main-card p {
  color: var(--ink-700);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(18, 53, 122, 0.09);
  border: 1px solid rgba(18, 53, 122, 0.14);
  color: var(--blue-900);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.plan-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.plan-list li {
  margin: 8px 0;
  color: var(--ink-700);
}

.plan-summary-card {
  background: linear-gradient(165deg, #0b2a63, #0f367e 57%, #ca1838 130%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.plan-summary-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  top: -100px;
  right: -70px;
}

.plan-summary-card > * {
  position: relative;
  z-index: 1;
}

.plan-summary-card h2 {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1.38rem;
}

.price-row {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-main {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 2.08rem;
  font-weight: 800;
}

.price-old {
  text-decoration: line-through;
  opacity: 0.7;
}

.price-sub {
  margin-top: 6px;
  font-size: 0.88rem;
  opacity: 0.86;
}

.countdown {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.time-box {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  text-align: center;
  padding: 10px 6px;
}

.time-box strong {
  display: block;
  font-size: 1.05rem;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.time-box span {
  font-size: 0.66rem;
  opacity: 0.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-points {
  margin: 14px 0 0;
  padding-left: 18px;
}

.summary-points li {
  margin: 7px 0;
  font-size: 0.9rem;
}

.summary-points li::marker {
  color: #fff;
}

.plan-summary-card .btn {
  margin-top: 16px;
  width: 100%;
  color: var(--blue-900);
  background: var(--white);
}

.meta-line {
  margin-top: 10px;
  font-size: 0.78rem;
  opacity: 0.82;
}

.quick-facts {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fact-card {
  background: var(--white);
  border: 1px solid rgba(18, 53, 122, 0.13);
  border-radius: var(--radius-md);
  padding: 14px;
}

.fact-card h3 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.fact-card p {
  margin: 7px 0 0;
  font-size: 0.88rem;
  color: var(--ink-700);
}

.comparison-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.comparison-wrap table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.comparison-wrap th,
.comparison-wrap td {
  padding: 12px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(18, 53, 122, 0.1);
}

.comparison-wrap th {
  background: rgba(18, 53, 122, 0.08);
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.comparison-wrap tr:last-child td {
  border-bottom: 0;
}

.table-offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(18, 53, 122, 0.18);
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-800);
}

.table-offer-btn.is-current {
  background: rgba(7, 87, 214, 0.14);
  border-color: rgba(7, 87, 214, 0.3);
  color: var(--red-700);
}

.footer-note {
  text-align: center;
  padding: 20px 10px 34px;
  color: var(--ink-700);
  font-size: 0.82rem;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 88;
  padding: 20px;
}

.checkout-modal.active {
  display: flex;
}

.checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 11, 30, 0.74);
}

.checkout-modal-dialog {
  position: relative;
  width: min(560px, 100%);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.modal-head h2 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--blue-900);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.modal-subtitle {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-form {
  margin-top: 16px;
  display: grid;
  gap: 13px;
}

.field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  color: var(--ink-700);
  font-weight: 700;
}

.field-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(18, 53, 122, 0.18);
  background: #fbfdff;
  padding: 11px 12px;
  font: inherit;
}

.field-input:focus {
  outline: 2px solid rgba(47, 115, 239, 0.24);
  border-color: rgba(47, 115, 239, 0.55);
}

.contact-methods {
  display: flex;
  gap: 8px;
}

.contact-method-btn {
  flex: 1;
  border: 1px solid rgba(18, 53, 122, 0.18);
  border-radius: 10px;
  background: #f2f7ff;
  color: var(--blue-900);
  padding: 10px;
  cursor: pointer;
  font-weight: 700;
}

.contact-method-btn.is-active {
  background: rgba(7, 87, 214, 0.14);
  border-color: rgba(7, 87, 214, 0.3);
  color: var(--red-700);
}

.plan-preview {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: rgba(18, 53, 122, 0.07);
  border: 1px solid rgba(18, 53, 122, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
}

.preview-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.preview-plan {
  margin: 4px 0 0;
  color: var(--blue-900);
  font-weight: 700;
  font-size: 0.86rem;
}

.preview-price {
  text-align: right;
}

.preview-price .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.preview-price .value {
  display: block;
  margin-top: 4px;
  font-size: 1.22rem;
  color: var(--red-600);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.modal-submit {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--red-600), var(--red-500));
  color: #fff;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.form-status {
  min-height: 19px;
  margin: 0;
  font-size: 0.82rem;
}

.form-status.is-error {
  color: #b50d2b;
}

.form-status.is-success {
  color: #0f6b3b;
}

.contact-warning {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: rgba(255, 199, 98, 0.18);
  border: 1px solid rgba(255, 199, 98, 0.4);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.79rem;
  color: #6d4d06;
}

.contact-warning strong {
  display: block;
  margin-bottom: 3px;
}

.order-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.order-confirm-modal.active {
  display: flex;
}

.order-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 36, 0.72);
  backdrop-filter: blur(3px);
}

.order-confirm-dialog {
  position: relative;
  width: min(560px, 100%);
  border-radius: 28px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(6, 17, 44, 0.35);
  display: grid;
  gap: 14px;
  text-align: center;
}

.order-confirm-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #7282a3;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.order-confirm-badge {
  justify-self: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d7f4a;
  background: rgba(41, 185, 114, 0.16);
  border: 1px solid rgba(41, 185, 114, 0.35);
}

.order-confirm-icon {
  width: 72px;
  height: 72px;
  margin: 4px auto 0;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  background: linear-gradient(140deg, #1a5fd8, #1a6bf0);
  box-shadow: 0 16px 30px rgba(20, 66, 147, 0.32);
}

.order-confirm-modal.is-email .order-confirm-icon {
  background: linear-gradient(140deg, #3267d6, #5990ff);
}

.order-confirm-modal.is-whatsapp .order-confirm-icon {
  background: linear-gradient(140deg, #20b95e, #25d366);
}

.order-confirm-dialog h3 {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.05rem);
  color: #0e203f;
}

.order-confirm-message {
  margin: 0 auto;
  max-width: 48ch;
  color: #4b5f82;
  font-size: 1.06rem;
  line-height: 1.6;
}

.order-confirm-steps {
  margin: 4px 0 0;
  padding: 16px;
  list-style: none;
  border-radius: 16px;
  border: 1px solid rgba(18, 53, 122, 0.14);
  background: rgba(246, 249, 255, 0.92);
  display: grid;
  gap: 10px;
  text-align: left;
}

.order-confirm-steps li {
  position: relative;
  padding-left: 34px;
  color: #364c73;
  font-size: 0.97rem;
  line-height: 1.5;
}

.order-confirm-steps li::before {
  content: counter(orderstep);
  counter-increment: orderstep;
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #1a4ea9;
  background: rgba(47, 115, 239, 0.16);
}

.order-confirm-steps {
  counter-reset: orderstep;
}

.order-confirm-action {
  margin-top: 4px;
  min-height: 64px;
  border-radius: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(9, 30, 70, 0.22);
}

.order-confirm-action-main {
  font-size: 1.28rem;
  line-height: 1.1;
}

.order-confirm-action-sub {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.order-confirm-action.is-whatsapp {
  background: linear-gradient(135deg, #1fb759, #26d366);
}

.order-confirm-action.is-email {
  background: linear-gradient(135deg, #2660d9, #3a80f5);
}

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

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .compat-orbit {
    min-height: 600px;
    padding: 22px;
  }

  .compat-center {
    width: min(430px, 76%);
  }

  .experience-fixed-card {
    max-width: 640px;
    padding: 32px 28px;
  }

  .experience-fixed-card h2 {
    max-width: 15ch;
  }

  .device-mobile {
    left: 1%;
  }

  .device-pc {
    right: 1%;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-band {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.85fr);
    padding: 14px;
  }

  .cta-content {
    padding: 24px 20px;
  }

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

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(330px, calc(100vw - 20px));
    max-height: calc(100vh - 130px);
    overflow: auto;
    background: rgba(249, 252, 255, 0.98);
    border: 1px solid rgba(18, 53, 122, 0.16);
    border-radius: 16px;
    box-shadow: 0 22px 40px rgba(8, 26, 61, 0.16);
    backdrop-filter: blur(10px);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    display: flex;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue-900);
    background: transparent;
    border: 1px solid transparent;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(47, 115, 239, 0.08);
    border-color: rgba(47, 115, 239, 0.16);
  }

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

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
  }

  .nav-dropdown-trigger i {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 6px;
    border-radius: 12px;
    background: rgba(47, 115, 239, 0.06);
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown-menu a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-main,
  .about-grid,
  .plan-overview,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .cta-visual {
    min-height: 340px;
    justify-content: center;
  }

  .cta-person {
    width: min(470px, 90vw);
    transform: translateY(12px);
  }

  .cta-content {
    margin: 0;
    padding: 22px 18px;
  }

  .experience-fixed-section {
    background-attachment: scroll;
    background-position: 62% center;
  }

  .experience-fixed-card {
    max-width: 100%;
    padding: 26px 20px;
  }

  .experience-fixed-card h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .experience-fixed-card p {
    font-size: 1rem;
  }

  .multi-connex-tabs {
    width: 100%;
    display: flex;
  }

  .multi-connex-tab {
    flex: 1;
    text-align: center;
  }

  .footer-wrap {
    padding: 34px 0 18px;
    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-brand-col {
    padding-right: 0;
  }

  .footer-trust {
    padding: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    max-width: none;
    padding: 22px;
  }

  .hero-top {
    text-align: left;
    margin: 0;
  }

  .hero-media-badge {
    left: 10px;
    top: 10px;
  }

  .hero-media-offer {
    left: 10px;
    right: 10px;
  }

  .hero-shell::before {
    opacity: 0.05;
  }

  .hero-mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .plans-page .offer-grid,
  .quick-facts,
  .device-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-side {
    padding: 22px 18px;
  }

  .faq-side-actions {
    margin-top: 14px;
  }

  .compat-orbit {
    min-height: 0;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border-radius: 20px;
  }

  .compat-orbit::before {
    display: none;
  }

  .compat-center {
    position: static;
    transform: none;
    width: 100%;
    grid-column: 1 / -1;
    padding: 20px 16px;
    margin-bottom: 4px;
  }

  .compat-device {
    position: static;
    width: 100%;
    animation: none;
    justify-content: flex-start;
  }

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

  .advantages-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 66px 0;
  }

  .brand-logo {
    height: 40px;
    max-width: 72vw;
  }

  .hero {
    padding-top: 64px;
  }

  .cta-band-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .cta-offer-highlight {
    padding: 12px 10px 10px;
  }

  .cta-offer-deal {
    font-size: 0.82rem;
  }

  .cta-offer-bonus {
    font-size: 0.74rem;
    padding: 5px 9px;
    gap: 6px;
  }

  .cta-price-old {
    font-size: 0.92rem;
  }

  .cta-price-save {
    min-height: 24px;
    font-size: 0.74rem;
    padding: 3px 8px;
  }

  .cta-offer-note {
    font-size: 0.82rem;
  }

  .order-confirm-dialog {
    border-radius: 22px;
    padding: 20px 16px;
    gap: 12px;
  }

  .order-confirm-badge {
    font-size: 0.72rem;
    min-height: 30px;
  }

  .order-confirm-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    font-size: 1.7rem;
  }

  .order-confirm-message {
    font-size: 0.96rem;
  }

  .order-confirm-steps {
    padding: 12px;
    gap: 8px;
  }

  .order-confirm-steps li {
    font-size: 0.9rem;
    padding-left: 30px;
  }

  .order-confirm-steps li::before {
    width: 22px;
    height: 22px;
    font-size: 0.74rem;
  }

  .order-confirm-action {
    min-height: 58px;
    border-radius: 14px;
  }

  .order-confirm-action-main {
    font-size: 1.1rem;
  }

  .order-confirm-action-sub {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

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

  .experience-fixed-card {
    border-radius: 20px;
    padding: 22px 14px;
  }

  .experience-fixed-card h2 {
    max-width: none;
  }

  .experience-list li {
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .cta-visual {
    min-height: 280px;
    justify-content: center;
  }

  .cta-person {
    width: min(390px, 95vw);
    transform: translateY(8px);
  }

  .cta-content {
    padding: 18px 14px;
  }

  .multi-connex-wrap {
    padding: 14px;
  }

  .multi-connex-head p {
    font-size: 0.92rem;
  }

  .footer-brand-logo {
    width: min(210px, 76vw);
  }

  .footer-brand-text strong {
    font-size: 0.94rem;
  }

  .footer-links {
    gap: 7px;
  }

  .footer-legal {
    width: 100%;
    justify-content: space-between;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .hero-copy .lead {
    font-size: 1.08rem;
  }

  .hero-copy-title {
    font-size: 1.2rem;
  }

  .about-copy,
  .about-card-body {
    padding: 16px;
  }

  .about-card img {
    height: 210px;
  }

  .google-reviews-section .container {
    padding: 24px 14px;
  }

  .google-reviews-grid {
    grid-template-columns: 1fr;
  }

  .advantages-section .feature-grid {
    grid-template-columns: 1fr;
  }

  .compare-pills span {
    width: 100%;
    justify-content: center;
  }

  .how-step-card {
    padding: 18px 14px 14px;
    border-radius: 18px;
  }

  .how-step-card h3 {
    font-size: 1.25rem;
  }

  .how-it-works-btn {
    width: 100%;
    min-width: 0;
  }

  .home-apps-grid {
    grid-template-columns: 1fr;
  }

  .home-app-actions {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .faq-question {
    font-size: 0.96rem;
    padding: 14px 14px;
    gap: 10px;
  }

  .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 14px 14px;
    font-size: 0.9rem;
  }

  .compat-orbit {
    grid-template-columns: 1fr;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .compat-center {
    border-radius: 20px;
    padding: 18px 14px;
  }

  .compat-center-list li {
    justify-content: flex-start;
  }

  .tarifs-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 18px;
  }

  .hero-review {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-tags span {
    width: 100%;
    justify-content: center;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 280px;
  }

  .hero-media {
    padding-bottom: 0;
  }

  .hero-media-offer {
    position: static;
    margin-top: 10px;
  }

  .cta-band,
  .plan-main-card,
  .plan-summary-card,
  .block-card {
    padding: 20px;
  }

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

/* Final IPTV Smarters Pro theme layer */
body {
  color: var(--brand-ink);
  background: linear-gradient(180deg, #f7fcff 0%, #eef8ff 42%, #ffffff 100%);
}

.top-alert {
  background: linear-gradient(100deg, var(--brand-navy), var(--brand-blue) 48%, var(--brand-red));
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 185, 239, 0.18);
  box-shadow: 0 12px 30px rgba(7, 20, 47, 0.06);
}

img.brand-logo {
  height: 62px;
  max-width: min(58vw, 270px);
  filter: drop-shadow(0 10px 18px rgba(7, 20, 47, 0.18));
}

.main-nav a {
  color: var(--brand-navy);
}

.main-nav a::after {
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-red), var(--brand-orange));
}

.btn-primary,
.hero-media-offer a,
.tarif-btn,
.how-it-works-btn {
  background: linear-gradient(120deg, var(--brand-red), var(--brand-orange));
  color: #fff;
  box-shadow: 0 14px 28px rgba(7, 87, 214, 0.28);
}

.btn-secondary,
.multi-connex-tab.is-active {
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-cyan));
  color: #fff;
}

.btn-ghost {
  color: var(--brand-blue);
  background: rgba(16, 185, 239, 0.09);
  border-color: rgba(18, 104, 214, 0.18);
}

.section-kicker,
.compat-center-badge {
  color: var(--brand-blue);
  background: rgba(16, 185, 239, 0.1);
  border-color: rgba(16, 185, 239, 0.22);
}

.hero {
  min-height: calc(100vh - 50px);
  padding: 68px 0 54px;
  color: #fff;
  background: linear-gradient(135deg, rgba(7, 20, 47, 0.96) 0%, rgba(9, 43, 92, 0.94) 52%, rgba(7, 87, 214, 0.86) 100%);
}

.hero::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.38;
}

.hero::after {
  display: none;
}

.hero-chip {
  color: #eaf9ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-top h1,
.hero-top h1 span.part-1,
.hero-copy-kicker,
.hero-copy-title,
.hero-review-text strong {
  color: #fff;
}

.hero-top h1 {
  letter-spacing: 0;
}

.hero-top h1 span.part-2 {
  color: #bdefff;
}

.hero-copy {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.hero-copy::before {
  background: linear-gradient(135deg, rgba(16, 185, 239, 0.25), rgba(11, 125, 240, 0.18));
}

.hero-copy::after {
  background: linear-gradient(180deg, var(--brand-cyan), var(--brand-red), var(--brand-orange));
}

.hero-copy .lead,
.hero-review-text span {
  color: #d7e8ff;
}

.hero-image-wrap {
  min-height: 380px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 255, 0.92));
  box-shadow: var(--shadow-strong);
}

.hero-image-wrap img {
  width: min(78%, 420px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: 0 !important;
}

.hero-mini-stats article,
.google-review-card,
.tarif-card,
.feature-card,
.device-card,
.testimonial-card,
.about-card,
.multi-connex-wrap,
.how-step-card,
.home-app-card,
.faq-item,
.cta-band {
  border: 1px solid rgba(18, 104, 214, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.about-card {
  display: grid;
  place-items: center;
  padding: 28px;
}

.about-card img,
.cta-person {
  width: min(78%, 360px);
  height: auto;
  object-fit: contain;
  border-radius: 0 !important;
}

.tarif-card::before,
.advantages-section .feature-card::before {
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-red), var(--brand-orange));
}

.tarif-badge {
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-cyan));
}

.tarif-card.is-value,
.tarif-card.is-popular {
  background: linear-gradient(180deg, #ffffff, #eef8ff);
}

.tarif-card.is-value .tarif-badge,
.tarif-card.is-value .tarif-btn {
  color: #fff;
  background: linear-gradient(120deg, var(--brand-red), var(--brand-orange));
}

.tarif-card.is-value .tarif-price span {
  color: var(--brand-red);
}

.feature-icon,
.compat-device i,
.how-step-number {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
}

.experience-fixed-section {
  background:
    linear-gradient(135deg, rgba(7, 20, 47, 0.82), rgba(18, 104, 214, 0.72)),
    url("https://iptv-smarters.app/wp-content/uploads/2026/05/heureaux-couple-francaise-regarde-iptv-smarters-pro.webp") center / min(420px, 72vw) no-repeat;
}

.experience-fixed-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 20, 47, 0.78);
  backdrop-filter: blur(10px);
}

.compat-orbit {
  background: linear-gradient(150deg, rgba(238, 248, 255, 0.98), rgba(255, 255, 255, 0.94));
}

.cta-band {
  background: linear-gradient(135deg, rgba(7, 20, 47, 0.98), rgba(18, 104, 214, 0.9) 56%, rgba(7, 87, 214, 0.86));
}

.cta-visual {
  display: grid;
  place-items: center;
}

.site-footer {
  background: var(--brand-navy);
}

.footer-brand-logo {
  width: min(250px, 72vw);
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.24));
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-main {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  img.brand-logo {
    height: 50px;
    max-width: 68vw;
  }

  .hero-top h1 {
    font-size: 2.05rem;
  }

  .hero-top h1 span.part-1 {
    font-size: 1.78rem;
  }

  .hero-media-offer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-media-offer a {
    width: 100%;
  }
}

/* Blue-only palette requested from IPTV Smarters Pro logo */
:root {
  --brand-blue: #1668ff;
  --brand-cyan: #12b7f5;
  --brand-deep-blue: #0757d6;
  --brand-sky-blue: #0b7df0;
  --brand-red: var(--brand-deep-blue);
  --brand-orange: var(--brand-sky-blue);
  --red-700: #0649b8;
  --red-600: var(--brand-deep-blue);
  --red-500: var(--brand-sky-blue);
  --red-300: #a7d8ff;
}

.top-alert,
.cta-band {
  background: linear-gradient(100deg, var(--brand-navy), var(--brand-blue) 52%, var(--brand-cyan));
}

.top-alert {
  background: linear-gradient(100deg, #fff4b8 0%, #ffd24a 48%, #ff6b35 100%);
  color: #07152f;
  font-weight: 800;
}

.top-alert p {
  color: #07152f;
  margin: 0;
}

.top-alert .timer {
  background: #07152f;
  border-color: #07152f;
  color: #ffffff;
}

@media (max-width: 560px) {
  .top-alert {
    font-size: 0.78rem;
  }

  .top-alert-inner {
    min-height: 40px;
    padding: 5px 10px;
    gap: 5px;
    line-height: 1.25;
  }

  .top-alert p {
    flex-basis: 100%;
    line-height: 1.25;
  }

  .top-alert .timer {
    min-width: 0;
    padding: 3px 12px;
    font-size: 0.78rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
}

.main-nav a::after,
.tarif-card::before,
.advantages-section .feature-card::before {
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-blue), var(--brand-deep-blue));
}

.btn-primary,
.hero-media-offer a,
.tarif-btn,
.how-it-works-btn,
.tarif-card.is-value .tarif-btn,
.tarif-card.is-value .tarif-badge {
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-deep-blue));
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 125, 240, 0.28);
}

.hero {
  background: linear-gradient(135deg, rgba(7, 20, 47, 0.97) 0%, rgba(10, 75, 172, 0.94) 48%, rgba(18, 183, 245, 0.88) 100%);
}

.hero-copy::before {
  background: linear-gradient(135deg, rgba(18, 183, 245, 0.24), rgba(7, 87, 214, 0.18));
}

.hero-copy::after {
  background: linear-gradient(180deg, var(--brand-cyan), var(--brand-blue), var(--brand-deep-blue));
}

.hero-avatars span,
.feature-icon,
.compat-device i,
.how-step-number {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-deep-blue));
}

.tarif-card.is-value .tarif-price span,
.hero-media-offer-kicker,
.feature-meta i,
.tarif-note i {
  color: var(--brand-deep-blue);
}

.experience-fixed-section {
  background:
    linear-gradient(135deg, rgba(7, 20, 47, 0.86), rgba(18, 104, 255, 0.74), rgba(7, 87, 214, 0.68)),
    url("https://iptv-smarters.app/wp-content/uploads/2026/05/heureaux-couple-francaise-regarde-iptv-smarters-pro.webp") center / min(420px, 72vw) no-repeat;
}

/* Hero single-column layout with background image */
.hero {
  min-height: calc(100vh - 50px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 16, 42, 0.9) 0%, rgba(7, 31, 79, 0.78) 46%, rgba(7, 87, 214, 0.38) 100%),
    url("https://iptv-smarters.app/wp-content/uploads/2026/05/heureaux-couple-francaise-regarde-iptv-smarters-pro.webp") center / cover no-repeat;
}

.hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.5;
}

.hero-shell {
  gap: 24px;
}

.hero-top {
  max-width: 900px;
  margin: 0;
  text-align: left;
}

.hero-main {
  grid-template-columns: minmax(0, 680px);
}

.hero-copy {
  max-width: 680px;
}

.hero-mini-stats {
  width: min(760px, 100%);
  margin: 22px 0 0;
}

.hero-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: #f8c64e;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.hero-rating-stars i {
  font-size: 0.9rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-rating-badges {
  width: min(900px, 100%);
  margin: 6px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-rating-badges img {
  width: min(190px, calc(50vw - 32px));
  height: 58px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(5, 16, 42, 0.9), rgba(7, 31, 79, 0.76)),
      url("https://abonnement-iptv-france24.fr/wp-content/uploads/2026/04/abonnement-iptv-france-24-hero-bg.webp") center / cover no-repeat;
  }

  .hero-top {
    text-align: center;
    margin: 0 auto;
  }

  .hero-main {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-mini-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-rating-badges {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .hero-rating-stars {
    width: 100%;
    justify-content: center;
  }

  .hero-rating-badges {
    gap: 10px;
    padding: 10px;
  }

  .hero-rating-badges img {
    width: calc(50% - 5px);
    height: 52px;
    padding: 5px 8px;
  }
}

/* Clean centered hero composition */
.hero {
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 16, 42, 0.82) 0%, rgba(7, 31, 79, 0.72) 48%, rgba(5, 16, 42, 0.86) 100%),
    url("https://abonnement-iptv-france24.fr/wp-content/uploads/2026/04/abonnement-iptv-france-24-hero-bg.webp") center / cover no-repeat;
}

.hero-shell {
  align-items: center;
  justify-items: center;
  gap: 22px;
}

.hero-top {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-main {
  display: block;
  width: min(820px, 100%);
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  color: #fff;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.hero-copy::before,
.hero-copy::after {
  display: none;
}

.hero-copy-kicker {
  color: #9edcff;
}

.hero-copy-title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.95rem, 4vw, 3.6rem);
}

.hero-copy .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-review {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-avatars {
  justify-content: center;
}

.hero-avatars span {
  width: 44px;
  height: 44px;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-review-text {
  text-align: left;
}

.hero-review-text strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-rating-stars {
  min-height: auto;
  padding: 0;
  gap: 3px;
  color: #f8c64e;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-rating-stars i {
  font-size: 0.88rem;
}

.hero-actions {
  justify-content: center;
}

.hero-rating-badges {
  width: min(860px, 100%);
  margin: 18px auto 0;
  padding: 0;
  gap: 12px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-rating-badges img {
  width: 158px;
  height: 54px;
  padding: 7px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 12px 26px rgba(0, 33, 82, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-rating-badges img:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 30px rgba(0, 65, 140, 0.26);
}

.hero-mini-stats {
  width: min(860px, 100%);
  margin: 12px auto 0;
}

@media (min-width: 1100px) {
  .hero {
    overflow: hidden;
  }

  .hero-shell {
    min-height: 680px;
    align-content: center;
  }

  .hero > .hero-mini-stats {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    margin: 0;
    display: block;
    pointer-events: none;
  }

  .hero > .hero-mini-stats article {
    position: absolute;
    width: 84px;
    height: 84px;
    min-height: 0;
    padding: 8px 6px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 18px 34px rgba(0, 25, 66, 0.22);
    backdrop-filter: blur(14px);
  }

  .hero > .hero-mini-stats article:nth-child(1) {
    left: max(calc((100vw - 1120px) / 2), 4vw);
    top: 32%;
  }

  .hero > .hero-mini-stats article:nth-child(2) {
    left: calc(max(calc((100vw - 1120px) / 2), 4vw) + 26px);
    bottom: 21%;
  }

  .hero > .hero-mini-stats article:nth-child(3) {
    right: calc(max(calc((100vw - 1120px) / 2), 4vw) + 26px);
    top: 32%;
  }

  .hero > .hero-mini-stats article:nth-child(4) {
    right: max(calc((100vw - 1120px) / 2), 4vw);
    bottom: 21%;
  }

  .hero > .hero-mini-stats strong {
    color: #fff;
    font-size: 0.88rem;
    line-height: 1.05;
  }

  .hero > .hero-mini-stats span {
    color: #d8ecff;
    font-size: 0.58rem;
    line-height: 1.2;
  }
}

@media (max-width: 1099px) {
  .hero-mini-stats article {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(238, 248, 255, 0.78));
    backdrop-filter: blur(10px);
  }
}

@media (max-width: 700px) {
  .hero-review {
    flex-direction: column;
  }

  .hero-review-text {
    text-align: center;
  }

  .hero-review-text strong {
    justify-content: center;
  }

  .hero-rating-badges img {
    width: calc(50% - 6px);
    max-width: 158px;
  }
}

/* Tight hero spacing under sticky header */
.site-header {
  position: relative;
  top: 0;
  z-index: 1000;
}

body > header[data-elementor-type="header"],
.elementor-location-header {
  position: static;
  top: auto;
  z-index: 10000;
}

.elementor-location-header .site-header,
header[data-elementor-type="header"] .site-header {
  position: relative;
  top: 0;
  z-index: 10000;
}

.site-header.is-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
}

.site-header.is-fixed + .site-header-spacer {
  display: block;
}

.site-header-spacer {
  display: none;
  height: var(--site-header-height, 78px);
}

body.admin-bar .elementor-location-header .site-header,
body.admin-bar header[data-elementor-type="header"] .site-header {
  top: 32px;
}

body.admin-bar .site-header.is-fixed {
  top: 32px !important;
}

@media (max-width: 782px) {
  body.admin-bar .elementor-location-header .site-header,
  body.admin-bar header[data-elementor-type="header"] .site-header {
    top: 46px;
  }

  body.admin-bar .site-header.is-fixed {
    top: 46px !important;
  }
}

.hero {
  min-height: calc(100vh - 128px);
  padding: 34px 0 48px;
  align-items: flex-start;
}

.hero-shell {
  min-height: 0 !important;
  padding-top: 28px;
  gap: 18px;
}

.hero-top h1 {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 28px;
  }

  .hero-shell {
    padding-top: 18px;
  }
}

/* Final about image polish */
.about-card {
  display: block !important;
  padding: 16px !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}

.about-card > img {
  width: 100% !important;
  max-width: none !important;
  height: 310px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 18px !important;
  margin: 0 !important;
}

.about-card-body {
  padding: 20px 2px 6px !important;
}

@media (max-width: 700px) {
  .about-card {
    padding: 12px !important;
  }

  .about-card > img {
    height: 230px !important;
    border-radius: 16px !important;
  }
}

/* Final CTA redesign: blue-only, image grounded to bottom */
.cta-band {
  min-height: 500px;
  align-items: stretch !important;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr) !important;
  gap: 10px !important;
  padding: 22px 22px 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 78% 82%, rgba(18, 183, 245, 0.24), transparent 34%),
    linear-gradient(135deg, #061b45 0%, #0757d6 54%, #12b7f5 100%) !important;
  box-shadow: 0 24px 54px rgba(7, 31, 79, 0.2) !important;
}

.cta-band::before,
.cta-band::after {
  display: none !important;
}

.cta-content {
  margin: 0 0 22px !important;
  align-self: center;
  grid-column: 2;
  grid-row: 1;
  padding: 24px 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.48) !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(238, 248, 255, 0.94), rgba(218, 238, 255, 0.86)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 36px rgba(0, 48, 116, 0.2) !important;
  backdrop-filter: blur(12px);
}

.cta-content::before {
  display: none !important;
}

.cta-band-kicker {
  color: #0757d6 !important;
  background: rgba(18, 183, 245, 0.16) !important;
  border-color: rgba(7, 87, 214, 0.24) !important;
}

.cta-content h2 {
  color: #061b45 !important;
}

.cta-offer-highlight {
  border-color: rgba(7, 87, 214, 0.18) !important;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(232, 246, 255, 0.82)) !important;
}

.cta-offer-bonus {
  color: #0649b8 !important;
  background: rgba(18, 183, 245, 0.16) !important;
  box-shadow: none !important;
}

.cta-offer-bonus i,
.cta-price-now {
  color: #0757d6 !important;
}

.cta-price-save,
.cta-time-box,
.cta-band .btn-primary {
  background: linear-gradient(135deg, #0757d6, #149eea) !important;
}

.cta-band .btn-primary {
  box-shadow: 0 14px 26px rgba(7, 87, 214, 0.28) !important;
}

.cta-band .btn-secondary {
  color: #0649b8 !important;
  background: rgba(255, 255, 255, 0.26) !important;
  border-color: rgba(7, 87, 214, 0.28) !important;
}

.cta-visual {
  min-height: auto !important;
  align-self: stretch;
  grid-column: 1;
  grid-row: 1;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
}

.cta-visual::before {
  display: block !important;
  width: 520px !important;
  height: 520px !important;
  right: auto !important;
  left: 50% !important;
  bottom: -235px !important;
  transform: translateX(-50%) !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 68%) !important;
}

.cta-visual::after {
  display: block !important;
  width: 430px !important;
  height: 54px !important;
  bottom: 0 !important;
  background: radial-gradient(circle, rgba(0, 44, 99, 0.34), rgba(0, 44, 99, 0) 70%) !important;
}

.cta-person {
  position: relative !important;
  z-index: 1 !important;
  width: min(545px, 108%) !important;
  max-height: 500px !important;
  align-self: flex-end !important;
  object-fit: contain !important;
  transform: translateY(0) !important;
  filter: drop-shadow(0 22px 32px rgba(3, 22, 57, 0.36)) !important;
}

.cta-gift-icon {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 28px rgba(3, 22, 57, 0.2);
  backdrop-filter: blur(10px);
}

.gift-one {
  width: 58px;
  height: 58px;
  top: 16%;
  left: 12%;
  font-size: 1.35rem;
  transform: rotate(-12deg);
}

.gift-two {
  width: 42px;
  height: 42px;
  top: 28%;
  right: 9%;
  font-size: 1rem;
  transform: rotate(10deg);
}

.gift-three {
  width: 70px;
  height: 70px;
  right: 18%;
  bottom: 16%;
  font-size: 1.55rem;
  transform: rotate(14deg);
}

.gift-four {
  width: 36px;
  height: 36px;
  left: 20%;
  bottom: 26%;
  font-size: 0.9rem;
  transform: rotate(-8deg);
}

@media (max-width: 920px) {
  .cta-band {
    min-height: 0;
    grid-template-columns: 1fr !important;
    padding: 16px 16px 0 !important;
  }

  .cta-visual {
    min-height: 300px !important;
    grid-column: auto;
    grid-row: auto;
  }

  .cta-content {
    grid-column: auto;
    grid-row: auto;
    margin: 0 0 18px !important;
  }

  .cta-person {
    width: min(430px, 90vw) !important;
    transform: translateY(0) !important;
  }

  .cta-gift-icon {
    opacity: 0.75;
  }
}

/* CTA as full-width section, not a card */
#contact {
  padding: 0 !important;
}

#contact > .container {
  width: 100% !important;
  max-width: none !important;
}

#contact .cta-band {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  box-shadow: none !important;
  padding-left: max(22px, calc((100vw - 1120px) / 2)) !important;
  padding-right: max(22px, calc((100vw - 1120px) / 2)) !important;
}

/* Final advantages redesign */
.advantages-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238, 248, 255, 0) 0%, rgba(238, 248, 255, 0.78) 42%, rgba(255, 255, 255, 0) 100%);
}

.advantages-section .container {
  position: relative;
}

.advantages-section .section-head {
  max-width: 720px !important;
  margin: 0 0 28px !important;
  text-align: left !important;
}

.advantages-section .feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.advantages-section .feature-card {
  position: relative;
  min-height: 300px;
  padding: 20px 18px !important;
  border: 1px solid rgba(7, 87, 214, 0.13) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.94)) !important;
  box-shadow: 0 14px 34px rgba(7, 31, 79, 0.08) !important;
  overflow: visible !important;
}

.advantages-section .feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  height: 100px;
  z-index: -1 !important;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(90deg, #12b7f5, #0757d6) !important;
}

.advantages-section .feature-card::after {
  content: "0" counter(advantage);
  counter-increment: advantage;
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(7, 87, 214, 0.08);
}

.advantages-section .feature-grid {
  counter-reset: advantage;
}

.advantages-section .feature-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 16px !important;
  margin-bottom: 18px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #0757d6, #12b7f5) !important;
  box-shadow: 0 12px 24px rgba(7, 87, 214, 0.22) !important;
}

.advantages-section .feature-card h3 {
  max-width: 13ch;
  font-size: 1.16rem !important;
}

.advantages-section .feature-card p {
  color: #334155;
}

.advantages-section .feature-meta {
  margin-top: auto;
  padding-top: 14px;
  color: #0757d6 !important;
}

.advantages-section .feature-meta i {
  color: #12b7f5 !important;
}

.advantages-strip {
  margin-top: 18px !important;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 87, 214, 0.1);
  box-shadow: 0 14px 34px rgba(7, 31, 79, 0.07);
}

.advantages-strip span {
  min-height: 54px !important;
  border: 1px solid rgba(7, 87, 214, 0.1);
  background: linear-gradient(180deg, #ffffff, #eef8ff) !important;
}

.advantages-strip i {
  color: #0757d6 !important;
}

@media (max-width: 980px) {
  .advantages-section .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .advantages-section .section-head {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .advantages-section .feature-grid,
  .advantages-strip {
    grid-template-columns: 1fr !important;
  }
}

/* Full-width fixed background for experience section */
.experience-fixed-section {
  width: 100% !important;
  min-height: 620px;
  padding: 160px 0 !important;
  background:
    linear-gradient(110deg, rgba(5, 16, 42, 0.9) 0%, rgba(7, 31, 79, 0.72) 48%, rgba(7, 87, 214, 0.36) 100%),
    url("https://iptv-smarters.app/wp-content/uploads/2026/05/heureaux-couple-francaise-regarde-iptv-smarters-pro.webp") center center / cover no-repeat fixed !important;
}

@media (max-width: 920px) {
  .experience-fixed-section {
    min-height: auto;
    padding: 90px 0 !important;
    background-attachment: scroll !important;
    background-position: center !important;
  }
}

/* Glass treatment for experience card */
.experience-fixed-card {
  position: relative;
  max-width: min(760px, 100%) !important;
  padding: clamp(28px, 4vw, 44px) !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background:
    linear-gradient(145deg, rgba(7, 20, 47, 0.62), rgba(7, 87, 214, 0.22)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 26px 56px rgba(0, 15, 44, 0.34) !important;
  backdrop-filter: blur(18px) saturate(135%) !important;
  overflow: hidden;
}

.experience-fixed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 183, 245, 0.22), transparent 34%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%);
}

.experience-fixed-card > * {
  position: relative;
  z-index: 1;
}

.experience-kicker {
  color: #bfeeff !important;
  background: rgba(18, 183, 245, 0.12) !important;
  border-color: rgba(18, 183, 245, 0.3) !important;
}

.experience-fixed-card h2 span {
  color: #12b7f5 !important;
}

.experience-list i {
  color: #042f2e !important;
  background: linear-gradient(145deg, #8cf5d1, #34d399) !important;
  box-shadow: 0 8px 18px rgba(52, 211, 153, 0.28) !important;
}

/* Final compatibility redesign: device board */
.compat-section {
  background: linear-gradient(180deg, #f7fcff 0%, #eef8ff 100%);
}

.compat-section .section-head {
  max-width: 760px !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
}

.compat-orbit {
  position: relative !important;
  min-height: 0 !important;
  margin-top: 20px !important;
  padding: 22px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  border: 1px solid rgba(7, 87, 214, 0.12) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 255, 0.74)) !important;
  box-shadow: 0 18px 44px rgba(7, 31, 79, 0.08) !important;
  overflow: visible !important;
}

.compat-orbit::before {
  display: none !important;
}

.compat-center {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  z-index: 1 !important;
  width: auto !important;
  min-height: 100%;
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 30px !important;
  text-align: left !important;
  border: 1px solid rgba(7, 87, 214, 0.14);
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(18, 183, 245, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff, #f4fbff) !important;
  box-shadow: 0 16px 38px rgba(7, 31, 79, 0.1) !important;
}

.compat-center h3 {
  max-width: 16ch;
  font-size: clamp(1.45rem, 2.4vw, 2rem) !important;
}

.compat-center p {
  max-width: 52ch;
}

.compat-center-list li {
  justify-content: flex-start !important;
}

.compat-device {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  min-height: 96px;
  justify-content: flex-start;
  border-radius: 20px !important;
  padding: 16px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(7, 87, 214, 0.12) !important;
  box-shadow: 0 12px 28px rgba(7, 31, 79, 0.08) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compat-device:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(7, 87, 214, 0.14) !important;
}

.compat-device i {
  width: 38px !important;
  height: 38px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #0757d6, #12b7f5) !important;
}

.compat-visual {
  position: relative;
  min-height: 100%;
  grid-column: span 1;
  grid-row: span 2;
  border: 1px solid rgba(7, 87, 214, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(18, 183, 245, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 248, 255, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.compat-screen {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #061b45, #0757d6 62%, #12b7f5);
  box-shadow: 0 18px 38px rgba(7, 31, 79, 0.22);
}

.compat-screen span {
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.6;
}

.compat-screen strong {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.compat-screen-tv {
  width: min(82%, 330px);
  height: 178px;
  left: 50%;
  top: 52px;
  transform: translateX(-50%);
  border-radius: 22px;
}

.compat-screen-phone {
  width: 96px;
  height: 166px;
  right: 42px;
  bottom: 88px;
  border-radius: 24px;
}

.compat-visual-tags {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compat-visual-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0757d6;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 87, 214, 0.14);
}

@media (max-width: 900px) {
  .compat-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .compat-center {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .compat-visual {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .compat-orbit {
    grid-template-columns: 1fr !important;
    padding: 14px !important;
  }

  .compat-center {
    padding: 24px 20px !important;
    text-align: center !important;
  }

  .compat-center h3,
  .compat-center p {
    margin-left: auto;
    margin-right: auto;
  }

  .compat-center-list li {
    justify-content: center !important;
  }

  .compat-screen-tv {
    width: 86%;
    height: 150px;
    top: 34px;
  }

  .compat-screen-phone {
    right: 24px;
    bottom: 84px;
  }
}

/* Final compare redesign: matrix rows */
.compare-section {
  background: linear-gradient(180deg, #ffffff 0%, #f1f8ff 100%);
}

.compare-matrix {
  position: relative;
  margin-top: 26px;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  padding: 14px;
  border-radius: 26px;
  border: 1px solid rgba(7, 87, 214, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(7, 31, 79, 0.08);
}

.compare-matrix-head,
.compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.compare-matrix-head {
  padding: 0 8px 4px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-matrix-head strong:nth-child(2) {
  color: #0757d6;
}

.compare-matrix-head strong:nth-child(3) {
  color: #b91c1c;
}

.compare-row {
  min-height: 92px;
}

.compare-criterion,
.compare-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  padding: 16px;
}

.compare-criterion {
  gap: 10px;
  color: #061b45;
  background: linear-gradient(180deg, #eef8ff, #ffffff);
  border: 1px solid rgba(7, 87, 214, 0.12);
  font-weight: 900;
}

.compare-criterion i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0757d6, #12b7f5);
}

.compare-cell {
  position: relative;
  border: 1px solid rgba(7, 87, 214, 0.1);
  background: #fff;
}

.compare-cell::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
}

.compare-cell.is-good {
  border-color: rgba(7, 87, 214, 0.24);
  background:
    linear-gradient(180deg, rgba(239, 248, 255, 0.98), rgba(236, 253, 247, 0.96));
  box-shadow: inset 4px 0 0 #0757d6;
}

.compare-cell.is-good::after {
  content: "\f00c";
  color: #047857;
  background: rgba(52, 211, 153, 0.18);
}

.compare-cell.is-bad {
  border-color: rgba(185, 28, 28, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(254, 242, 242, 0.92));
  box-shadow: inset 4px 0 0 #ef4444;
}

.compare-cell.is-bad::after {
  content: "\f00d";
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.14);
}

.compare-cell strong {
  color: #061b45;
  font-size: 1.02rem;
}

.compare-cell small {
  margin-top: 4px;
  color: #475569;
}

@media (max-width: 760px) {
  .compare-matrix-head {
    display: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }
}

/* Final how-it-works redesign: clean process timeline */
.how-it-works-section {
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%) !important;
  color: #061b45;
}

.how-it-works-section::before {
  display: none !important;
}

.how-it-works-head h2 {
  color: #061b45 !important;
}

.how-it-works-head p {
  color: #475569 !important;
}

.how-it-works-section .section-kicker {
  color: #0757d6 !important;
  background: rgba(18, 183, 245, 0.1) !important;
  border-color: rgba(18, 183, 245, 0.24) !important;
}

.how-it-works-grid {
  position: relative;
  margin-top: 34px !important;
  gap: 22px !important;
}

.how-it-works-grid::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #12b7f5, #0757d6);
}

.how-step-card {
  position: relative;
  padding: 72px 22px 22px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(7, 87, 214, 0.12) !important;
  background: #ffffff !important;
  box-shadow: 0 16px 36px rgba(7, 31, 79, 0.09) !important;
  overflow: visible;
}

.how-step-card::before {
  display: none !important;
}

.how-step-number {
  position: absolute;
  left: 22px;
  top: -2px;
  width: 76px !important;
  height: 76px !important;
  border-radius: 22px !important;
  font-size: 2rem !important;
  background: linear-gradient(135deg, #0757d6, #12b7f5) !important;
  box-shadow: 0 16px 28px rgba(7, 87, 214, 0.24) !important;
}

.how-step-card h3 {
  margin-top: 0 !important;
  color: #061b45 !important;
}

.how-step-card p {
  color: #475569 !important;
}

.how-step-points {
  margin-top: 16px !important;
}

.how-step-points li {
  color: #0f274f !important;
  font-weight: 700 !important;
}

.how-step-points i {
  color: #12b7f5 !important;
}

.how-it-works-btn {
  background: linear-gradient(135deg, #0757d6, #12b7f5) !important;
  box-shadow: 0 14px 28px rgba(7, 87, 214, 0.24) !important;
}

@media (max-width: 900px) {
  .how-it-works-grid::before {
    display: none;
  }
}

/* Final FAQ + support card redesign */
#faq {
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

#faq .section-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr) !important;
  gap: 26px !important;
  align-items: start !important;
}

.faq-list {
  counter-reset: faq;
  gap: 14px !important;
}

.faq-item {
  counter-increment: faq;
  position: relative;
  border-radius: 18px !important;
  border: 1px solid rgba(7, 87, 214, 0.12) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 12px 30px rgba(7, 31, 79, 0.07) !important;
}

.faq-item::before {
  content: counter(faq, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 17px;
  color: rgba(7, 87, 214, 0.34);
  font-size: 0.86rem;
  font-weight: 900;
}

.faq-question {
  min-height: 66px;
  padding: 18px 18px 18px 62px !important;
}

.faq-toggle {
  color: #0757d6 !important;
  background: rgba(18, 183, 245, 0.12) !important;
  border-color: rgba(7, 87, 214, 0.16) !important;
}

.faq-item.is-open {
  border-color: rgba(7, 87, 214, 0.28) !important;
}

.faq-item.is-open .faq-toggle {
  background: linear-gradient(135deg, #0757d6, #12b7f5) !important;
  color: #fff !important;
}

.faq-answer {
  margin-left: 62px;
  margin-right: 18px;
  padding: 0 0 18px !important;
  border-top: 0 !important;
}

.faq-answer p {
  padding-top: 0;
  color: #475569;
}

.faq-side {
  position: sticky;
  top: 110px;
  border-radius: 24px !important;
  padding: 26px !important;
  color: #fff !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(18, 183, 245, 0.32), transparent 36%),
    linear-gradient(145deg, #061b45, #0757d6 68%, #12b7f5) !important;
  box-shadow: 0 22px 44px rgba(7, 31, 79, 0.2) !important;
}

.faq-side::before {
  right: -70px !important;
  top: auto !important;
  bottom: -70px !important;
}

.faq-side .faq-side-kicker {
  color: #bfeeff !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.faq-side-meta span,
.faq-side-list li {
  color: rgba(255, 255, 255, 0.94) !important;
}

.faq-side-meta {
  grid-template-columns: 1fr 1fr;
}

.faq-side-meta span {
  min-height: 46px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.faq-side-meta i,
.faq-side-list i {
  color: #8cf5d1 !important;
}

.faq-whatsapp-btn {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
}

.faq-side-link {
  background: rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 920px) {
  .faq-side {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .faq-question {
    padding-left: 54px !important;
  }

  .faq-item::before {
    left: 16px;
  }

  .faq-answer {
    margin-left: 54px;
  }

  .faq-side-meta {
    grid-template-columns: 1fr;
  }
}

/* Final footer redesign and remove gap after FAQ */
#faq {
  padding-bottom: 42px !important;
}

.site-footer {
  margin-top: 0 !important;
  color: rgba(236, 244, 255, 0.92) !important;
  background:
    linear-gradient(180deg, #06142f 0%, #071b43 58%, #041126 100%) !important;
  border-top: 1px solid rgba(18, 183, 245, 0.18) !important;
}

.footer-wrap {
  padding: 52px 0 24px !important;
  gap: 28px !important;
}

.footer-main {
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(170px, 0.7fr)) minmax(260px, 0.95fr) !important;
  gap: 28px !important;
  align-items: start;
}

.footer-brand-logo {
  width: min(270px, 78vw) !important;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34)) brightness(1.4) !important;
}

.footer-brand-col p {
  max-width: 46ch !important;
  color: rgba(218, 232, 255, 0.84) !important;
}

.footer-badges span {
  border-color: rgba(18, 183, 245, 0.22) !important;
  background: rgba(18, 183, 245, 0.1) !important;
}

.footer-badges i,
.footer-trust-list i {
  color: #8cf5d1 !important;
}

.footer-col h3 {
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #12b7f5, #0757d6);
}

.footer-links {
  gap: 10px !important;
}

.footer-links a {
  color: rgba(218, 232, 255, 0.82) !important;
}

.footer-links a:hover {
  color: #ffffff !important;
}

.footer-trust {
  padding: 18px !important;
  border-radius: 20px !important;
  border-color: rgba(18, 183, 245, 0.2) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  border-top-color: rgba(18, 183, 245, 0.18) !important;
}

.footer-legal {
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
  }

  .footer-brand-col,
  .footer-trust {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr !important;
  }
}

/* Footer final: image overlay background, only right trust card */
.site-footer {
  background:
    linear-gradient(180deg, rgba(4, 17, 38, 0.92), rgba(4, 17, 38, 0.96)),
    url("https://abonnement-iptv-france24.fr/wp-content/uploads/2026/04/abonnement-iptv-france-24-hero-bg.webp") center / cover no-repeat fixed !important;
}

.footer-brand-col,
.footer-col {
  border: 0 !important;
  background: transparent !important;
  padding: 8px 0 !important;
  border-radius: 0 !important;
}

.footer-trust {
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
  padding: 20px !important;
}

@media (max-width: 920px) {
  .site-footer {
    background-attachment: scroll !important;
  }
}

/* Force only the right footer trust column to stay card-like */
.site-footer .footer-brand-col,
.site-footer .footer-main > .footer-col:not(.footer-trust) {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 8px 0 !important;
  border-radius: 0 !important;
}

.site-footer .footer-trust {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 20px !important;
}

/* Footer redesign v2 */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 183, 245, 0.18), transparent 32%),
    linear-gradient(180deg, #071b43 0%, #041126 100%) !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1120px) / 2));
  right: max(24px, calc((100vw - 1120px) / 2));
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 183, 245, 0.55), transparent);
}

.footer-wrap {
  position: relative;
  z-index: 1;
  padding-top: 64px !important;
}

.footer-main {
  grid-template-columns: minmax(0, 1.15fr) minmax(160px, 0.62fr) minmax(180px, 0.72fr) minmax(280px, 0.9fr) !important;
  gap: 22px !important;
}

.footer-brand-col {
  padding: 22px !important;
  border-radius: 24px;
  border: 1px solid rgba(18, 183, 245, 0.16);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
  width: min(245px, 72vw) !important;
}

.footer-badges span {
  min-height: 36px !important;
  padding: 7px 11px !important;
}

.footer-col {
  padding: 22px 10px !important;
}

.footer-col h3 {
  font-size: 1rem !important;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 999px;
  background: rgba(18, 183, 245, 0.64);
}

.footer-trust {
  padding: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)) !important;
}

.footer-trust-list li {
  min-height: 34px;
}

.footer-bottom {
  margin-top: 8px;
  padding: 18px 0 0 !important;
}

.footer-legal a {
  padding: 6px 0;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr !important;
  }

  .footer-col {
    padding: 8px 0 !important;
  }
}

/* Footer redesign v3 */
.site-footer {
  background: #06142f !important;
}

.site-footer::before {
  display: none !important;
}

.footer-wrap {
  padding: 48px 0 22px !important;
}

.footer-main {
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr !important;
  gap: 18px !important;
  align-items: stretch;
}

.footer-brand-col,
.footer-col,
.footer-trust {
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  padding: 20px !important;
}

.footer-brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28)) !important;
}

.footer-brand-col p {
  margin-top: 18px !important;
}

.footer-badges {
  gap: 7px !important;
}

.footer-badges span {
  background: rgba(18, 183, 245, 0.11) !important;
  border-color: rgba(18, 183, 245, 0.2) !important;
}

.footer-col h3::after {
  width: 42px !important;
}

.footer-links a::before {
  display: none !important;
}

.footer-links a {
  min-height: 32px;
  padding: 0 0 0 12px;
  border-left: 2px solid rgba(18, 183, 245, 0.22);
}

.footer-links a:hover {
  border-left-color: #12b7f5;
}

.footer-trust {
  box-shadow: none !important;
}

.footer-bottom {
  margin-top: 18px !important;
  min-height: 56px !important;
  padding-top: 18px !important;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr !important;
  }
}

/* Final pricing table redesign */
.tarifs-grid {
  gap: 18px !important;
}

.tarif-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 16px 16px !important;
  border: 1px solid rgba(7, 87, 214, 0.12) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%) !important;
  background-color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(7, 31, 79, 0.08) !important;
  overflow: visible;
}

.tarif-card::before {
  z-index: -1 !important;
  top: -4px !important;
  height: 100px !important;
  border-radius: 20px !important;
  background: linear-gradient(90deg, var(--blue-500), var(--red-500)) !important;
}

.tarif-card h3 {
  font-size: 1.02rem !important;
}

.tarif-offer,
.tarif-note,
.tarif-guarantee {
  border: 1px solid rgba(7, 87, 214, 0.1);
}

.tarif-price span {
  color: #0757d6 !important;
}

.tarif-btn {
  margin-top: 12px !important;
  background: linear-gradient(135deg, #0757d6, #149eea) !important;
  box-shadow: 0 12px 22px rgba(7, 87, 214, 0.22) !important;
}

.tarif-guarantee + .tarif-btn {
  margin-top: 16px !important;
}

.tarif-card.is-popular {
  border-color: rgba(7, 87, 214, 0.38) !important;
  background:
    linear-gradient(180deg, rgba(235, 247, 255, 0.98), rgba(255, 255, 255, 0.98)) !important;
  background-color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(7, 87, 214, 0.16) !important;
}

.tarif-card.is-popular::before {
  background: linear-gradient(90deg, #0757d6, #149eea) !important;
}

.tarif-card.is-popular .tarif-badge {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0757d6, #149eea) !important;
  box-shadow: 0 10px 20px rgba(7, 87, 214, 0.28) !important;
}

.tarif-card.is-popular .tarif-price span,
.tarif-card.is-popular .tarif-features i,
.tarif-card.is-popular .tarif-note i {
  color: #0757d6 !important;
}

.tarif-card.is-popular .tarif-btn {
  background: linear-gradient(135deg, #0649b8, #149eea) !important;
}

.tarif-card.is-value {
  border-color: rgba(214, 158, 46, 0.48) !important;
  background:
    linear-gradient(180deg, rgba(255, 250, 235, 0.98), rgba(255, 255, 255, 0.98)) !important;
  background-color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(180, 124, 22, 0.16) !important;
}

.tarif-card.is-value::before {
  background: linear-gradient(90deg, #f59e0b, #f8d35f) !important;
}

/* Fixed hero background */
.hero {
  background:
    linear-gradient(180deg, rgba(5, 16, 42, 0.82) 0%, rgba(7, 31, 79, 0.72) 48%, rgba(5, 16, 42, 0.86) 100%),
    url("https://abonnement-iptv-france24.fr/wp-content/uploads/2026/04/abonnement-iptv-france-24-hero-bg.webp") center / cover no-repeat fixed !important;
}

@media (max-width: 900px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(5, 16, 42, 0.9), rgba(7, 31, 79, 0.76)),
      url("https://abonnement-iptv-france24.fr/wp-content/uploads/2026/04/abonnement-iptv-france-24-hero-bg.webp") center / cover no-repeat scroll !important;
  }
}

.tarif-card.is-value .tarif-badge {
  color: #3b2500 !important;
  background: linear-gradient(135deg, #f8d35f, #f59e0b) !important;
  box-shadow: 0 10px 20px rgba(180, 124, 22, 0.28) !important;
}

.tarif-card.is-value .tarif-offer {
  color: #5f3b00 !important;
  background: rgba(248, 211, 95, 0.2) !important;
}

.tarif-card.is-value .tarif-price span,
.tarif-card.is-value .tarif-features i,
.tarif-card.is-value .tarif-note i {
  color: #b77905 !important;
}

.tarif-card.is-value .tarif-btn {
  color: #3b2500 !important;
  background: linear-gradient(135deg, #f8d35f, #f59e0b) !important;
  box-shadow: 0 12px 22px rgba(180, 124, 22, 0.24) !important;
}

.multi-connex-wrap {
  border-color: rgba(7, 87, 214, 0.14) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.86)) !important;
}

/* Pricing top accent must stay as a thin strip behind the card */
.tarif-card::before {
  left: 0 !important;
  right: 0 !important;
  top: -5px !important;
  height: 100px !important;
  border-radius: 18px !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background: linear-gradient(90deg, #12b7f5, #0757d6) !important;
}

.tarif-card.is-popular::before {
  background: linear-gradient(90deg, #0757d6, #149eea) !important;
}

.tarif-card.is-value::before {
  background: linear-gradient(90deg, #f59e0b, #f8d35f) !important;
}