/* ============================================
   La France IPTV — Premium Design System
   ============================================ */
:root {
  --blue-900: #000d4d;
  --blue-800: #00157f;
  --blue-700: #001a99;
  --blue-600: #1e3a8a;
  --red-600: #a11d1d;
  --red-500: #c41e3a;
  --red-400: #dc2626;
  --orange-500: #f97316;
  --gold-400: #fbbf24;

  --bg-hero: #f7f9fc;
  --bg-page: var(--bg-hero);
  --bg-white: #ffffff;
  --bg-soft: var(--bg-hero);
  --bg-card: var(--bg-hero);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --border: rgba(0, 21, 127, 0.08);
  --border-strong: rgba(0, 21, 127, 0.14);

  --shadow-sm: 0 2px 8px rgba(0, 13, 77, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 13, 77, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 13, 77, 0.12);
  --shadow-card: 0 4px 24px rgba(0, 21, 127, 0.08);
  --shadow-featured: 0 24px 60px rgba(0, 21, 127, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --container: 1180px;
  --header-h: 72px;
  --section-pad-y: 56px;
  --section-head-gap: 32px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 880px;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.45);
  background: #fff;
  color: var(--blue-800);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.header-whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.1);
  transform: translateY(-1px);
}

.header-whatsapp-icon {
  display: block;
  width: 22px;
  height: 22px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp-icon {
  display: block;
  width: 22px;
  height: 22px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(240px, 50vw);
  object-fit: contain;
}

.logo-img--footer {
  height: 52px;
  max-width: min(260px, 70vw);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a:not(.btn) {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav a:not(.btn):hover {
  color: var(--blue-800);
  background: rgba(0, 21, 127, 0.06);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-800);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-500) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(161, 29, 29, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(161, 29, 29, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 21, 127, 0.3);
}

.btn-secondary:hover {
  box-shadow: 0 8px 24px rgba(0, 21, 127, 0.35);
}

.btn-nav {
  background: var(--blue-800);
  color: #fff;
  padding: 10px 20px;
  margin-left: 8px;
}

.btn-nav:hover {
  background: var(--blue-900);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

.btn-subscribe {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  background: linear-gradient(135deg, var(--red-600), var(--red-500));
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin: 20px 0 12px;
  box-shadow: 0 4px 12px rgba(161, 29, 29, 0.25);
}

.btn-subscribe:hover {
  box-shadow: 0 6px 20px rgba(161, 29, 29, 0.35);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 32px) 0 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 21, 127, 0.12);
  top: -100px;
  right: -100px;
}

.hero-blob--2 {
  width: 400px;
  height: 400px;
  background: rgba(196, 30, 58, 0.08);
  bottom: 0;
  left: -80px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 21, 127, 0.08);
  color: var(--blue-800);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid var(--border-strong);
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.text-blue { color: var(--blue-800); }
.text-red { color: var(--red-500); }

.hero-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 21, 127, 0.1);
  color: var(--blue-800);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-white);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 21, 127, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: calc(var(--radius-xl) - 8px);
  object-fit: cover;
  object-position: center center;
}

/* ---- Sections ---- */
.section {
  padding: var(--section-pad-y) 0;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 10px;
}

.section-head {
  text-align: center;
  margin-bottom: var(--section-head-gap);
}

.section-head--left {
  text-align: left;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-800);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.15s;
}

/* ---- Pricing ---- */
.pricing {
  padding-bottom: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  border-color: rgba(0, 21, 127, 0.2);
  box-shadow: var(--shadow-featured);
  transform: scale(1.03);
  z-index: 2;
}

.price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.price-card-header {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: #fff;
  text-align: center;
  padding: 28px 20px 24px;
  position: relative;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.price-card-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.price-card-header p {
  font-size: 0.78rem;
  margin-top: 8px;
  opacity: 0.9;
  font-weight: 500;
}

.header-dash {
  display: block;
  width: 36px;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.4);
  margin: 12px auto 0;
}

.ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  background: linear-gradient(135deg, var(--orange-500), #ea580c);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 6px 44px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.price-card-body {
  padding: 28px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.95rem;
  font-weight: 600;
}

.price-current {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.price-value {
  display: inline-block;
}

/* Screen picker (multi-écrans) */
.screen-picker {
  margin-bottom: 16px;
}

.screen-picker-label {
  display: block;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-800);
  margin-bottom: 10px;
}

.screen-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.screen-option:hover {
  border-color: rgba(0, 21, 127, 0.35);
}

.screen-option.is-active {
  border-color: var(--blue-800);
  background: rgba(0, 21, 127, 0.06);
  color: var(--blue-800);
  box-shadow: 0 0 0 1px rgba(0, 21, 127, 0.08);
}

.screen-option-price {
  font-weight: 800;
  color: var(--blue-800);
  white-space: nowrap;
}

.screen-option.is-active .screen-option-price {
  color: var(--red-500);
}

/* Bonus offers (12 & 24 mois) */
.price-card--bonus-offer {
  border-color: rgba(0, 21, 127, 0.18);
}

.price-card-header .price-bonus-inline {
  margin-top: 6px;
  margin-bottom: 0;
}

.price-bonus-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 6px auto 0;
  padding: 4px 10px;
  max-width: 100%;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-card--featured .price-bonus-inline {
  background: rgba(249, 115, 22, 0.28);
}

.price-bonus-inline--standard {
  background: rgba(255, 255, 255, 0.14);
}

.ribbon--bonus {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.45);
  font-size: 0.58rem;
}

.price-card-body .price-row {
  margin-top: 2px;
  margin-bottom: 20px;
}

.price-card--bonus-offer .price-current {
  font-size: clamp(2.35rem, 7vw, 3.1rem);
}

.features-list {
  list-style: none;
  flex: 1;
}

.features-list li {
  padding: 11px 0 11px 28px;
  position: relative;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.4;
}

.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: rgba(0, 21, 127, 0.1);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300157f' stroke-width='3'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.features-list li:last-child {
  border-bottom: none;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
  margin-top: 2px;
}

.guarantee svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: var(--blue-800);
  opacity: 0.7;
}

/* ---- About ---- */
.about-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.75;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 28px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.about-cta p {
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.95;
  flex: 1;
}

.about-cta p a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}

.about-cta p a:hover {
  opacity: 0.85;
}

.about-cta .btn {
  flex-shrink: 0;
  text-transform: lowercase;
}

/* ---- Features & Stats ---- */
.features-stats-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
  align-items: start;
}

.check-list {
  list-style: none;
  margin-top: 8px;
}

.check-list li {
  padding: 16px 0 16px 44px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background: linear-gradient(135deg, var(--red-600), var(--red-500));
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(161, 29, 29, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-box {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition);
  border: 1px solid var(--border);
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-box--red {
  background: linear-gradient(145deg, var(--red-600), var(--red-500));
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(161, 29, 29, 0.3);
}

.stat-box--blue {
  background: linear-gradient(145deg, var(--blue-900), var(--blue-800));
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 21, 127, 0.3);
}

.stat-box--white {
  background: var(--bg-white);
  color: var(--blue-800);
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  display: block;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 10px;
  line-height: 1.35;
  opacity: 0.9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  background: var(--bg-white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 21, 127, 0.08);
  color: var(--blue-800);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.process-step {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 21, 127, 0.06);
  line-height: 1;
}

.process-card h3 {
  color: var(--blue-800);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ---- Distinguish ---- */
.distinguish-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.distinguish-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.distinguish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 21, 127, 0.15);
}

.distinguish-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 21, 127, 0.06);
  color: var(--blue-800);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.distinguish-card h3 {
  color: var(--blue-800);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.distinguish-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Box ---- */
.box-section {
  padding-top: 28px;
}

.box-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-white);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.box-badge {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.box-title {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 24px;
}

.box-title span {
  display: block;
  font-size: 0.85em;
  color: var(--blue-800);
  font-weight: 700;
  margin-top: 6px;
}

.box-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.spec-chip {
  padding: 8px 16px;
  background: rgba(0, 21, 127, 0.06);
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
}

.box-image-wrap {
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 16px;
}

.box-image {
  margin: 0 auto;
  max-height: 380px;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.box-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.box-description strong {
  color: var(--text-primary);
}

/* ---- Testimonials ---- */
.testimonials-showcase {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--bg-white);
  padding: 8px;
}

.testimonials-showcase img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
}

/* ---- SEO Article ---- */
.container--article {
  max-width: 820px;
}

.article-content {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
}

.article-body {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.article-body > p {
  margin-bottom: 20px;
}

.article-body h3 {
  color: var(--blue-800);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 32px 0 14px;
  line-height: 1.35;
}

.article-body h3:first-of-type {
  margin-top: 8px;
}

.article-body a {
  color: var(--blue-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--red-500);
}

.article-body strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ---- FAQ ---- */
.pricing .post-purchase {
  margin-top: 36px;
}

.post-purchase {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 0;
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.post-purchase p {
  color: var(--text-secondary);
  margin: 16px 0 28px;
  font-size: 0.95rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.faq-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

.faq-list {
  margin-top: 20px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(0, 21, 127, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 18px 48px 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-800);
  list-style: none;
  position: relative;
  transition: background var(--transition);
}

.faq-item summary:hover {
  background: rgba(0, 21, 127, 0.03);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 21, 127, 0.08);
  color: var(--blue-800);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
  background: var(--blue-800);
  color: #fff;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: 0;
}

.world-map-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.world-map-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-800);
  margin-bottom: 20px;
}

.world-map-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.world-map-visual {
  background: #0a0a0a;
  border-radius: var(--radius-md);
  overflow: hidden;
  line-height: 0;
}

.faq-map-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ---- Footer ---- */
.footer {
  background: transparent;
  color: var(--text-secondary);
  padding: 36px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 0.88;
}

.footer-conclusion {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.footer-conclusion strong {
  color: var(--blue-800);
  font-weight: 700;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-800);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.footer-contact-item:hover {
  border-color: rgba(0, 21, 127, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.footer-contact-item--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.4);
}

.footer-whatsapp-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

  .price-card--featured {
    transform: none;
  }

  .price-card--featured:hover {
    transform: translateY(-6px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-image-card img {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a:not(.btn) {
    width: 100%;
    padding: 14px;
  }

  .nav .btn-nav {
    width: 100%;
    margin: 8px 0 0;
  }

  .features-stats-top,
  .faq-layout,
  .distinguish-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    align-items: stretch;
  }

  .faq-visual {
    margin-top: 12px;
  }

  .world-map-card {
    max-width: 440px;
  }

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

  .about-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .world-map-card {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 44px;
    --section-head-gap: 24px;
  }

  .hero {
    padding: calc(var(--header-h) + 16px) 0 36px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-content {
    order: 1;
    width: 100%;
  }

  .hero-visual {
    order: 2;
    width: 100%;
  }

  .hero-lead,
  .hero-desc {
    max-width: none;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero-image-card {
    max-width: 100%;
    overflow: visible;
  }

  .hero-image-card::before {
    display: none;
  }

  .hero-image-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .hero-trust {
    gap: 12px 16px;
  }

  /* Titres de section — plus compacts sur mobile (1 ligne si possible) */
  .section-title,
  .post-purchase .section-title {
    font-size: clamp(1rem, 4.1vw, 1.28rem);
    line-height: 1.22;
    letter-spacing: -0.015em;
  }

  .box-title {
    font-size: clamp(0.98rem, 4.2vw, 1.22rem);
    line-height: 1.28;
    margin-bottom: 18px;
  }

  .box-title span {
    font-size: clamp(0.82rem, 3.6vw, 0.95rem);
    margin-top: 4px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad-y: 40px;
    --section-head-gap: 22px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: none;
  }

  .box-card {
    padding: 32px 20px;
  }

  .article-content {
    padding: 28px 22px;
  }

  .footer-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .section-title,
  .post-purchase .section-title {
    font-size: clamp(0.9rem, 4.4vw, 1.1rem);
    line-height: 1.2;
  }

  .box-title {
    font-size: clamp(0.92rem, 4.3vw, 1.08rem);
  }

  .box-title span {
    font-size: clamp(0.78rem, 3.8vw, 0.9rem);
  }
}

@media (max-width: 380px) {
  .section-title,
  .post-purchase .section-title {
    font-size: clamp(0.82rem, 4.6vw, 0.98rem);
    line-height: 1.18;
  }

  .box-title {
    font-size: clamp(0.85rem, 4.5vw, 0.95rem);
  }

  .box-title span {
    font-size: clamp(0.72rem, 4vw, 0.82rem);
  }
}

/* ---- Checkout modal ---- */
body.checkout-open,
body.exit-offer-open {
  overflow: hidden;
}

.checkout-modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  max-height: min(92vh, 640px);
  overflow-y: auto;
  padding: 28px 24px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.98);
  transition: transform var(--transition);
}

.checkout-modal.is-open .checkout-modal__dialog {
  transform: translateY(0) scale(1);
}

.checkout-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--text-secondary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.checkout-modal__close:hover {
  background: rgba(0, 21, 127, 0.1);
  color: var(--blue-800);
}

.checkout-modal__head {
  text-align: center;
  margin-bottom: 22px;
  padding-right: 28px;
}

.checkout-modal__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 8px;
}

.checkout-summary {
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--blue-800);
  background: linear-gradient(135deg, rgba(0, 21, 127, 0.08), rgba(196, 30, 58, 0.05));
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 21, 127, 0.12);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-field span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-800);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-field input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--bg-white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.checkout-field input:focus {
  outline: none;
  border-color: var(--blue-800);
  box-shadow: 0 0 0 3px rgba(0, 21, 127, 0.12);
  background: #fff;
}

.checkout-submit {
  width: 100%;
  margin-top: 4px;
}

.checkout-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 600px) {
  .header-whatsapp span {
    display: none;
  }

  .header-whatsapp {
    padding: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
