@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0A0A0F;
  --bg-secondary: #12121A;
  --bg-card: #1A1A28;
  --accent-orange: #FF6B00;
  --accent-gold: #FFD700;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0C0;
  --border: #2A2A3A;
  --gradient-hero: linear-gradient(135deg, #0A0A0F 0%, #1A0A00 50%, #0A0A0F 100%);
  --glow-orange: 0 0 20px rgba(255, 107, 0, 0.4);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
  font-weight: 400;
  color: var(--text-secondary);
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: var(--glow-orange);
}

.btn-primary:hover {
  background: #ff8533;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #FFA500);
  color: #0A0A0F;
  font-weight: 700;
}

.btn-gold:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.logo .fire { font-size: 1.4rem; }
.logo .iptv { color: var(--accent-orange); }
.logo .be-flag { font-size: 1.1rem; margin-left: 2px; }

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
  color: #fff !important;
}

.nav-cta::after {
  display: none !important;
}

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

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
  }
  .hero-text {
    text-align: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-checks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 0.5rem;
  }
  .cookie-banner p {
    font-size: 0.85rem;
  }
  .cookie-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
}

.hero h1 {
  margin-bottom: 20px;
  max-width: 750px;
}

.hero h1 .highlight {
  color: var(--accent-orange);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 650px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0.8rem !important;
  margin-bottom: 40px;
}

.hero-trust span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-trust span .check {
  color: #4CAF50;
  margin-right: 4px;
}

/* ═══════════════════════════════════════
   DEVICES CAROUSEL
   ═══════════════════════════════════════ */
.devices-carousel {
  height: 140px;
  overflow: hidden;
  position: relative;
  background: rgba(18, 18, 26, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.devices-carousel::before,
.devices-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.devices-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.devices-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scroll-carousel 30s linear infinite;
  white-space: nowrap;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-item {
  flex-shrink: 0;
}

.logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #FF6B00;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
  transition: box-shadow 0.3s;
}

.logo-circle:hover {
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
}

.logo-circle img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  mix-blend-mode: normal;
}

@keyframes scroll-carousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   STATS
   ═══════════════════════════════════════ */
.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
  background: var(--bg-primary);
}

/* Per-card controls */
.card-controls {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-screen-toggle {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
}

.card-toggle-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border-radius: 0;
}

.card-toggle-btn.active {
  background: var(--accent-orange);
  color: #fff;
}

.pricing-card.gold .card-toggle-btn.active {
  background: linear-gradient(135deg, var(--accent-gold), #FFA500);
  color: #0A0A0F;
}

.card-toggle-btn:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.card-duration-select select {
  width: 100%;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23B0B0C0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.card-duration-select select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.card-duration-select select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.card-price-display {
  text-align: center;
  padding: 16px 16px;
  border: none;
  border-radius: 0;
}

.card-price-display .amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1.1;
}

.pricing-card.gold .card-price-display .amount {
  color: var(--accent-gold);
}

.card-price-display .period {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Multi-screen block */
.card-multi-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-multi-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.card-multi-select select {
  width: 100%;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23B0B0C0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.card-multi-select select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.card-multi-select select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.pricing-card .pricing-btn {
  border-radius: 12px;
  margin-top: 0;
  border: none;
}

.pricing-card .pricing-btn:hover {
  transform: none;
}

.pricing-card .btn-secondary.pricing-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.pricing-card .btn-secondary.pricing-btn:hover {
  color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.1);
}

.pricing-card .btn-primary.pricing-btn {
}

.pricing-card .btn-gold.pricing-btn {
}

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

.pricing-card {
  background: rgba(26, 26, 40, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--accent-orange);
  box-shadow: var(--glow-orange);
}

.pricing-card.featured:hover {
  transform: translateY(-5px);
}

.pricing-card.gold {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.pricing-card.gold:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.card-badge.gold-badge {
  background: linear-gradient(135deg, var(--accent-gold), #FFA500);
  color: #0A0A0F;
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.card-features {
  margin-bottom: 30px;
  flex: 1;
}

.card-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card-features li .icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.card-features li.included .icon {
  color: #4CAF50;
}

.card-features li.excluded {
  opacity: 0.4;
}

.card-features li.excluded .icon {
  color: #ff4444;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.pricing-card .card-pack-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 4px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════
   WHY US
   ═══════════════════════════════════════ */
.why-us {
  background: var(--bg-secondary);
}

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

.why-card {
  background: rgba(26, 26, 40, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 35px 25px;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-5px);
}

.why-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.why-card p {
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   VIP GOLD SECTION
   ═══════════════════════════════════════ */
.vip-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.vip-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.vip-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vip-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.vip-text h2 {
  margin-bottom: 20px;
}

.vip-text h2 .gold {
  color: var(--accent-gold);
}

.vip-text > p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.vip-features {
  margin-bottom: 30px;
}

.vip-features li {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.vip-features li .icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════
   CHANNELS
   ═══════════════════════════════════════ */
.channels {
  background: var(--bg-secondary);
}

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

.channel-card {
  background: rgba(26, 26, 40, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 25px;
  transition: var(--transition);
  text-align: center;
}

.channel-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-5px);
}

.channel-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.channel-card h3 {
  margin-bottom: 12px;
}

.channel-card p {
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   CITIES
   ═══════════════════════════════════════ */
.cities {
  background: var(--bg-primary);
}

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

.city-card {
  background: rgba(26, 26, 40, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.city-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: var(--glow-orange);
}

.city-card .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.city-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.city-card p {
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   SEO TEXT
   ═══════════════════════════════════════ */
.seo-text {
  background: var(--bg-secondary);
}

.seo-text .container {
  max-width: 1200px;
}

.seo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.seo-image-col img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.2);
}

.seo-text h2 {
  margin-bottom: 24px;
}

.seo-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.btn-voir-plus {
  background: transparent;
  border: 1px solid #FF6B00;
  color: #FF6B00;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: all 0.3s;
}
.btn-voir-plus:hover {
  background: #FF6B00;
  color: white;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
  background: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 30px;
}

.faq-category h3 {
  color: var(--accent-orange);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(26, 26, 40, 0.4);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.faq-question .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-orange);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */
.reviews {
  background: var(--bg-secondary);
}

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

.review-card {
  background: rgba(26, 26, 40, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-author .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.review-author .verified {
  font-size: 0.8rem;
  color: #4CAF50;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #1A0A00 0%, #0A0A0F 50%, #1A0A00 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section > .container > p {
  max-width: 650px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-trust span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cta-trust span .check {
  color: #4CAF50;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand > p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-payments span {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   PAGE HEADER (for inner pages)
   ═══════════════════════════════════════ */
.page-header {
  background: var(--gradient-hero);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 107, 0, 0.06) 0%, transparent 60%);
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════
   CHANNELS PAGE
   ═══════════════════════════════════════ */
.channel-section {
  padding: 40px 0;
}

.channel-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.channel-tag {
  background: rgba(26, 26, 40, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.channel-tag:hover {
  border-color: var(--accent-orange);
  color: var(--text-primary);
}

/* ═══════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: rgba(26, 26, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0.6;
}

.blog-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-3px);
  opacity: 0.8;
}

.blog-card-image {
  height: 200px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 3rem;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-category {
  display: inline-block;
  background: rgba(255, 107, 0, 0.15);
  color: var(--accent-orange);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-content p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.blog-card-content .btn {
  padding: 8px 20px;
  font-size: 0.85rem;
  opacity: 0.5;
  cursor: default;
}

.blog-coming-soon {
  text-align: center;
  padding: 40px 0;
  font-size: 1.3rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   CONTACT & FORM PAGES
   ═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: rgba(26, 26, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.contact-info-card .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-info-card a:hover {
  color: var(--accent-orange);
}

.order-summary {
  background: linear-gradient(135deg, #1A1A40, #0A0A2E);
  border: 2px solid #FF6B00;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  color: white;
}
.order-summary-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #FF6B00;
  font-weight: 700;
  margin-bottom: 16px;
}
.order-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.order-label {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #B0B0C0;
  margin-bottom: 4px;
}
.order-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}
.order-value.price {
  color: #FF6B00;
  font-size: 1.4rem;
}

.modify-link {
  color: #FF6B00;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
.modify-link:hover {
  text-decoration: underline;
}

.form-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-whatsapp:hover { opacity: 0.85; }
.btn-email {
  background: #FF6B00;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-email:hover { opacity: 0.85; }
.form-notice {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  margin-top: 0.8rem;
}

.form-container {
  background: rgba(26, 26, 40, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23B0B0C0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  margin: 40px 0 16px;
  font-size: 1.5rem;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.about-value-card {
  background: rgba(26, 26, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition);
}

.about-value-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.about-value-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-value-card h3 {
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 40px 0 16px;
  font-size: 1.4rem;
  color: var(--accent-orange);
}

.legal-content h3 {
  margin: 24px 0 12px;
  font-size: 1.15rem;
}

.legal-content p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 10px 0 20px 20px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   STEPS SECTION
   ═══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  text-align: center;
  background: rgba(26, 26, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 35px 25px;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-3px);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 18, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.9rem;
  flex: 1;
}

.cookie-inner p a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   CITY PAGE
   ═══════════════════════════════════════ */
.city-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
}

.city-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 107, 0, 0.06) 0%, transparent 60%);
}

.city-hero .container {
  position: relative;
}

.city-seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.city-seo-content h2 {
  margin: 30px 0 16px;
  font-size: 1.4rem;
}

.city-seo-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════ */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #12121A;
  min-width: 600px;
}

.comparison-table thead th {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-bottom: 2px solid var(--border);
  background: rgba(26, 26, 40, 0.8);
}

.comparison-table thead th:first-child {
  text-align: left;
  color: var(--text-primary);
}

.comparison-table thead th.col-standard,
.comparison-table thead th.col-premium {
  color: var(--accent-orange);
}

.comparison-table thead th.col-vip {
  color: var(--accent-gold);
}

.comparison-table tbody tr {
  border-bottom: 1px solid #2A2A3A;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody td {
  padding: 14px 20px;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-secondary);
}

.comparison-table tbody td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table .check-yes {
  color: #00C853;
  font-weight: 700;
}

.comparison-table .check-no {
  color: #555555;
}

.comparison-table tr.row-price {
  background: rgba(255, 107, 0, 0.05) !important;
}

.comparison-table tr.row-price td {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.comparison-table tr.row-price td.price-standard,
.comparison-table tr.row-price td.price-premium {
  color: var(--accent-orange);
}

.comparison-table tr.row-price td.price-vip {
  color: var(--accent-gold);
}

/* ═══════════════════════════════════════
   GUARANTEES SECTION
   ═══════════════════════════════════════ */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.guarantee-card {
  background: rgba(26, 26, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
}

.guarantee-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-3px);
}

.guarantee-card .g-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.guarantee-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.guarantee-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   WHY CHOOSE US (offres)
   ═══════════════════════════════════════ */
.why-offres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-offres-card {
  background: rgba(26, 26, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 35px 25px;
  transition: var(--transition);
}

.why-offres-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-3px);
}

.why-offres-card .w-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.why-offres-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.why-offres-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   MULTI SCREENS SECTION
   ═══════════════════════════════════════ */
.multi-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
}

.multi-table-wrapper {
  max-width: 650px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.multi-table {
  width: 100%;
  border-collapse: collapse;
  background: #12121A;
}

.multi-table thead th {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  border-bottom: 2px solid var(--border);
  background: rgba(26, 26, 40, 0.8);
  color: var(--accent-orange);
}

.multi-table thead th:first-child {
  text-align: left;
  color: var(--text-primary);
}

.multi-table tbody tr {
  border-bottom: 1px solid #2A2A3A;
}

.multi-table tbody tr:last-child {
  border-bottom: none;
}

.multi-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.multi-table tbody td {
  padding: 14px 20px;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-secondary);
}

.multi-table tbody td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 600;
}

.multi-table tbody tr:last-child td:first-child {
  color: var(--accent-gold);
}

/* ═══════════════════════════════════════
   DEVICES SECTION
   ═══════════════════════════════════════ */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.device-card {
  background: rgba(26, 26, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.device-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-3px);
}

.device-card .d-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.device-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.device-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .pricing-grid {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

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

  .vip-content {
    display: flex;
    flex-direction: column;
  }
  .vip-visual {
    order: -1;
  }
  .vip-text {
    text-align: center;
  }
  .vip-features {
    text-align: left;
    display: inline-block;
  }
  .vip-text .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .seo-content {
    grid-template-columns: 1fr;
  }
  .seo-image-col {
    order: -1;
  }

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

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

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

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

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

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

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

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

  .why-offres-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }

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

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

  .about-values {
    grid-template-columns: 1fr;
  }

  .card-toggle-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .form-buttons {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }

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

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

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

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

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

  .card-toggle-btn {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .card-duration-select select {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .form-container {
    padding: 24px;
  }

  .why-offres-grid {
    grid-template-columns: 1fr;
  }

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

/* ═══════════════════════════════════════
   MERCI PAGE
   ═══════════════════════════════════════ */
.merci-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.merci-box {
  text-align: center;
  background: #1A1A28;
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 500px;
  width: 100%;
}
.merci-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.merci-box h1 {
  color: #FF6B00;
  font-size: 2rem;
  margin-bottom: 16px;
}
.merci-box p {
  color: #B0B0C0;
  margin-bottom: 30px;
  line-height: 1.6;
}
.merci-trust {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #FF6B00;
  font-size: 0.85rem;
}
