@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
/* ========== DESIGN SYSTEM: Martian Mono + Palette ========== */
/* Colors: #191314 (black), #ecf95a (accent), #f4f4f4 (light grey), #ffffff (white) */
:root {
  --color-black: #191314;
  --color-accent: #ecf95a;
  --color-light: #f4f4f4;
  --color-white: #ffffff;
  --font-urbanist: 'Urbanist', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-urbanist);
}

body {
  color: var(--color-black);
  background: var(--color-light);
}

.container { max-width: 1320px; }

/* ================= NAVBAR (light style) ================= */
.navbar {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 15px 0;
  z-index: 10;
}

.navbar-light {
  position: relative;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-light);
  box-shadow: 0 1px 0 rgba(25, 19, 20, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { flex-shrink: 0; }

.logo-img {
  width: 50px;
  height: auto;
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.nav-link-login {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-black);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.nav-link-login svg { flex-shrink: 0; }

.btn-cta-primary {
  padding: 10px 24px;
  border-radius: 12px;
  background: var(--color-black);
  color: var(--color-white) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-cta-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--color-white) !important;
}

@media (max-width: 767px) {
  .navbar, .navbar-light { padding: 14px 0; }
  .nav-wrapper { gap: 12px; }
  .logo-img { width: 40px; }
  .nav-actions { gap: 10px; }
  .nav-link-login span { display: none; }
  .nav-link-login { padding: 8px; border-radius: 10px; background: var(--color-light); }
  .btn-cta-primary { padding: 8px 16px; font-size: 13px; }
}

@media (max-width: 400px) {
  .logo-img { width: 36px; }
  .btn-cta-primary { padding: 8px 14px; font-size: 12px; }
}

/* ================= HERO (light, ZenCrypto-style) ================= */
.hero {
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-light {
  background: var(--color-white);
  color: var(--color-black);
}

/* Kleine sterren in de hero-achtergrond */
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-black);
  border-radius: 50%;
  opacity: 0.12;
}

.hero-star:nth-child(odd) { opacity: 0.18; }
.hero-star:nth-child(3n) { width: 2px; height: 2px; opacity: 0.1; }
.hero-star:nth-child(5n) { background: var(--color-accent); opacity: 0.15; }
.hero-star:nth-child(7n) { width: 4px; height: 4px; opacity: 0.08; }

.hero-star:nth-child(1)  { top: 12%;  left: 8%; }
.hero-star:nth-child(2)  { top: 22%;  left: 88%; }
.hero-star:nth-child(3)  { top: 8%;  left: 45%; }
.hero-star:nth-child(4)  { top: 35%;  left: 12%; }
.hero-star:nth-child(5)  { top: 18%;  left: 72%; }
.hero-star:nth-child(6)  { top: 45%;  left: 92%; }
.hero-star:nth-child(7)  { top: 5%;  left: 28%; }
.hero-star:nth-child(8)  { top: 55%;  left: 5%; }
.hero-star:nth-child(9)  { top: 28%;  left: 55%; }
.hero-star:nth-child(10) { top: 62%;  left: 78%; }
.hero-star:nth-child(11) { top: 15%;  left: 18%; }
.hero-star:nth-child(12) { top: 38%;  left: 95%; }
.hero-star:nth-child(13) { top: 72%;  left: 22%; }
.hero-star:nth-child(14) { top: 48%;  left: 38%; }
.hero-star:nth-child(15) { top: 8%;  left: 82%; }
.hero-star:nth-child(16) { top: 65%;  left: 52%; }
.hero-star:nth-child(17) { top: 25%;  left: 32%; }
.hero-star:nth-child(18) { top: 52%;  left: 68%; }
.hero-star:nth-child(19) { top: 78%;  left: 42%; }
.hero-star:nth-child(20) { top: 42%;  left: 8%; }
.hero-star:nth-child(21) { top: 12%;  left: 62%; }
.hero-star:nth-child(22) { top: 58%;  left: 88%; }
.hero-star:nth-child(23) { top: 32%;  left: 78%; }
.hero-star:nth-child(24) { top: 68%;  left: 15%; }
.hero-star:nth-child(25) { top: 18%;  left: 42%; }
.hero-star:nth-child(26) { top: 75%;  left: 65%; }
.hero-star:nth-child(27) { top: 5%;  left: 95%; }
.hero-star:nth-child(28) { top: 48%;  left: 25%; }
.hero-star:nth-child(29) { top: 82%;  left: 8%; }
.hero-star:nth-child(30) { top: 35%;  left: 48%; }

/* Animatie: sterren bewegen aleatoir */
@keyframes hero-star-float-1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(4px, -6px); }
  50% { transform: translate(-3px, 4px); }
  75% { transform: translate(5px, 2px); }
}
@keyframes hero-star-float-2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-5px, 3px); }
  66% { transform: translate(3px, -4px); }
}
@keyframes hero-star-float-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, -5px); }
}
@keyframes hero-star-float-4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(2px, 5px); }
  50% { transform: translate(-6px, -2px); }
  75% { transform: translate(4px, 3px); }
}
@keyframes hero-star-float-5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5px, 4px); }
}

.hero-star {
  animation: hero-star-float-1 8s ease-in-out infinite;
}
.hero-star:nth-child(2n)  { animation-name: hero-star-float-2; animation-duration: 10s; animation-delay: -1s; }
.hero-star:nth-child(3n)  { animation-name: hero-star-float-3; animation-duration: 12s; animation-delay: -2s; }
.hero-star:nth-child(4n)  { animation-name: hero-star-float-4; animation-duration: 9s;  animation-delay: -0.5s; }
.hero-star:nth-child(5n)  { animation-name: hero-star-float-5; animation-duration: 11s; animation-delay: -3s; }
.hero-star:nth-child(7n)  { animation-duration: 14s; animation-delay: -4s; }
.hero-star:nth-child(11n) { animation-duration: 7s;  animation-delay: -2.5s; }
.hero-star:nth-child(13n) { animation-duration: 13s; animation-delay: -1.5s; }

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

.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid var(--color-black);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-black);
  margin-bottom: 20px;
}

.hero-trust { margin-bottom: 16px; }

.hero-trust-logo {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 6px;
}


@media (min-width: 640px) {
  .hero-trust-logo { height: 110px; }
}

.hero-left h1 {
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-black);
  font-weight: 700;
}

.hero-left .accent { color: var(--color-accent); background: var(--color-black); padding: 0 6px; }

.hero-desc, .hero-left p {
  color: #4a4a4a;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 28px;
  transition: opacity 0.2s, transform 0.2s;
}

.cta-primary {
  background: var(--color-black);
  color: var(--color-white) !important;
}

.cta-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--color-white) !important;
}

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

.users-text { color: #4a4a4a; font-size: 14px; }

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.hero-light .avatars img { border-color: var(--color-light); }

.hero-right { position: relative; }

/* Stat cards (light, rounded) */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  width: 100%;
  min-width: 0;
  background: var(--color-light);
  border: 1px solid rgba(25, 19, 20, 0.08);
  border-radius: 16px;
  padding: 20px;
}

.stat-label {
  margin: 0;
  font-size: 11px;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-value {
  margin: 8px 0 0 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
}

.glass-card, .glass-card-stat {
  background: var(--color-light);
  border: 1px solid rgba(25, 19, 20, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 0;
  width: 100%;
  min-width: 0;
}

.glass-card-stat .glass-card-label { margin: 0; font-size: 11px; color: #4a4a4a; text-transform: uppercase; letter-spacing: 0.04em; }
.glass-card-stat .glass-card-value { margin: 8px 0 0 0; font-size: 22px; font-weight: 700; color: var(--color-black); line-height: 1.2; }

@media (min-width: 992px) {
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 26px; }
}

@media (max-width: 991px) {
  .hero, .hero-light { padding: 60px 0 50px; min-height: auto; }
  .hero-content .row { flex-direction: column; gap: 0; }
  .hero-left { margin-bottom: 32px; }
  .hero-trust { margin-bottom: 14px; }
  .hero-trust-logo { height: 80px; }
  .hero-left h1 { font-size: 28px; margin-bottom: 14px; }
  .hero-left p, .hero-desc { font-size: 15px; margin-bottom: 20px; max-width: 100%; width: 100%; }
  .hero-left .cta { display: block; width: 100%; text-align: center; margin-bottom: 20px; padding: 14px 24px; font-size: 15px; box-sizing: border-box; }
  .hero-right { max-width: 100%; width: 100%; margin-left: 0; margin-right: 0; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; width: 100%; }
  .stat-value { font-size: 18px; }
}

@media (max-width: 575px) {
  .hero, .hero-light { padding: 50px 0 40px; }
  .hero-left h1 { font-size: 44px; }
  .hero-left p, .hero-desc { font-size: 14px; }
  .stat-value { font-size: 16px; }
  .container { padding: 0 20px; }
}
@media (max-width: 380px) {
  .hero-left h1 { font-size: 38px; }
}

.btn-plans { display: none; }

  /* ================= SECTION TAGS & LIGHT SECTIONS ================= */
.section-light { background: var(--color-light); }
  /* ================= PAYMENT METHODS SECTION ================= */
  
  .payment-methods {
    padding: 80px 0;
    background: var(--color-white);
  }
  
  .payment-methods-title {
    text-align: center;
    color: var(--color-black);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
  }
  
  .payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  /* Mobile : 2 par 2 (2 colonnes) */
  .payment-logo-box {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    box-sizing: border-box;
    background: var(--color-light);
    border-radius: 12px;
    border: 1px solid rgba(25, 19, 20, 0.06);
    padding: 5px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
    height: 80px;
  }

  /* Desktop : toute la ligne (une seule ligne) */
  @media (min-width: 768px) {
    .payment-logos {
      flex-wrap: nowrap;
      gap: 30px;
    }
    .payment-logo-box {
      flex: 0 0 auto;
      max-width: none;
      min-width: 140px;
      padding: 5px 20px;
    }
  }
  
  .payment-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  
  .payment-logo-box img {
    max-width: 100%;
    max-height: 35px;
    object-fit: contain;
    filter: grayscale(0);
  }
  
  /* ================= FEATURES SECTION ================= */
  
  .features {
    padding: 60px 0;
    background: var(--color-light);
    position: relative;
  }
  
  .features-content {
    position: relative;
  }
  
  .feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(25, 19, 20, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  
  .feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }
  
  .feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--color-accent);
    position: relative;
  }
  
  .feature-icon svg {
    position: relative;
    z-index: 2;
    color: var(--color-black);
  }
  
  .feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  
  .feature-card p {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.6;
  }



  /* ================= SERIES FILMS CAROUSEL ================= */
  /* Infinite marquee for sports carousel */
.sports-carousel {
    margin-top: 40px;
}

.league-carousel {
    margin-top: 40px;
}

/* League grid: witte kaarten, logo's gecentreerd (zoals referentie-afbeelding) */
.league {
  margin-top: 40px;
  padding: 32px 0;
}

.league-grid {
  display: grid;
  grid-template-columns: repeat( 6, 1fr);
  gap: 20px;
  max-width: 100%;
}

.league-card {
  background: #fff;
  border-radius: 16px;
  padding: 10px 24px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid rgba(25, 19, 20, 0.06);
}

.league-card img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 991px) {
  .league-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .league-card { padding: 10px 24px; min-height: 100px; }
  .league-card img { max-height: 56px; }
}

@media (max-width: 575px) {
  .league-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .league-card { padding: 16px; min-height: 90px; }
  .league-card img { max-height: 48px; }
}

.sports-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sports-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    animation: scroll-left 25s linear infinite;
}

.series-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    animation: scroll-left 50s linear infinite;
    margin-bottom: 40px;
}

.sports-item {
    flex: 0 0 auto;
    width: 210px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.sports-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Channels carousel (left -> right) */
.channel-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.channel-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: fit-content;
    animation: scroll-left 25s linear infinite reverse;
}

.channel-item {
    flex: 0 0 auto;
    width: 120px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.channel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.slider-section {
    padding: 40px 0;
}

.carousel-edge-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to right, #f4f4f4 0%, rgba(244, 244, 244, 0.8) 40%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.carousel-edge-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to left, #f4f4f4 0%, rgba(244, 244, 244, 0.8) 40%, transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.sport-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-black);
    text-align: center;
}
.section-light .sport-title { color: var(--color-black); }

/* ================= REVIEWS CAROUSEL (autoplay infini) ================= */
.reviews-section {
    padding: 60px 0 80px;
    background: var(--color-light);
    overflow: hidden;
}

.reviews-section .pricing-section-title {
    margin-bottom: 40px;
}

.reviews-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 24px;
}

.reviews-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: fit-content;
    animation: reviews-scroll 20s linear infinite;
    margin-bottom: 40px;
}

.review-card {
    flex: 0 0 auto;
    width: 320px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(25, 19, 20, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Image en haut de la carte (bannière) */
.review-img-wrap {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}

.review-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.review-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-black);
    font-size: 48px;
    font-weight: 700;
}

.review-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-stars {
    color: var(--color-accent);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.review-text {
    color: var(--color-black);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
}

.review-name {
    color: var(--color-black);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-location {
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 500;
}

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

/* ================= HOE WERKT HET? (layout inspiré: panel + content) ================= */
.how-it-works-section {
  padding: 72px 0 80px;
  background: var(--color-light);
}

.how-it-works-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Linker panel – accentkleur */
.how-it-works-panel {
  background: var(--color-accent);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.how-it-works-panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin-bottom: 32px;
  line-height: 1.3;
}

.how-it-works-panel-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.how-panel-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.how-panel-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.how-panel-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.3;
}

.how-panel-deco {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--color-black) 0, var(--color-black) 2px, transparent 2px, transparent 8px);
  opacity: 0.12;
  border-radius: 2px;
}

/* Rechter content */
.how-it-works-content {
  background: var(--color-white);
  padding: 40px 40px 44px;
  display: flex;
  flex-direction: column;
}

.how-content-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.how-content-intro {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 28px;
}

.how-content-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.how-content-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.how-content-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
}

.how-content-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.how-content-step-desc {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
  margin: 0;
}

.how-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.how-cta-btn.how-cta-accent {
  background: var(--color-accent);
  color: var(--color-black) !important;
  box-shadow: 0 4px 14px rgba(236, 249, 90, 0.4);
}

.how-cta-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.how-cta-btn.how-cta-accent:hover {
  color: var(--color-black) !important;
}

@media (max-width: 991px) {
  .how-it-works-layout {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .how-it-works-panel {
    padding: 32px 28px 28px;
  }
  .how-it-works-content {
    padding: 32px 28px 36px;
  }
}

@media (max-width: 575px) {
  .how-it-works-section {
    padding: 48px 0 56px;
  }
  .how-it-works-panel-title {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }
  .how-panel-num {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }
  .how-it-works-content {
    padding: 28px 20px 32px;
  }
  .how-content-heading {
    font-size: 1.25rem;
  }
  .how-cta-btn {
    align-self: stretch;
    text-align: center;
  }
}

/* ================= PRICING SECTION ================= */

.pricing-section {
    padding: 80px 0 0 0;
    background: var(--color-light);
}
.pricing-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--color-black);
    text-align: center;
}

.pricing-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(25, 19, 20, 0.08);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
    border: 2px solid var(--color-black);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--color-accent);
    color: var(--color-black);
}
.popular-badge-gold {
    background: var(--color-black);
    color: var(--color-white);
}

.popular-badge svg {
    flex-shrink: 0;
}

.pricing-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 24px;
    color: var(--color-black);
}

.pricing-subtitle {
    color: #4a4a4a;
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 44px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: #4a4a4a;
    font-weight: 500;
    margin-left: 5px;
}

.pricing-btn {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: auto;
}

.pricing-btn.btn-cta-dark {
    background: var(--color-black);
    color: var(--color-white) !important;
}

.pricing-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: var(--color-white) !important;
}

.pricing-btn-gradient, .pricing-btn-primary {
    background: var(--color-black) !important;
    color: var(--color-white) !important;
}
.pricing-btn-gradient:hover, .pricing-btn-primary:hover {
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-black);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

/* Payment Methods */
.payment-methods-container {
  margin-top: 16px;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0;
}

.payment-methods-title {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.payment-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-width: 0;
}

.payment-logo img {
  width: 100%;
  max-width: 80px;
  height: 40px;
  object-fit: contain;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.devices-section { padding: 60px 0; }
.devices-section .pricing-section-title { color: var(--color-black); margin-bottom: 32px; }

.devices-showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  padding: 0 24px 24px;
  justify-items: center;
  align-items: stretch;
}

.device-card {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgba(25, 19, 20, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1.8/1;
  padding: 5px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.device-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.device-card img {
  display: block;
  max-height: 50px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1100px) {
  
  .devices-showcase-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 0;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .devices-showcase-section {
      padding: 40px 0 30px 0;
  }
  
  .devices-showcase-title {
      font-size: 28px;
      margin-bottom: 30px;
      letter-spacing: -0.3px;
  }
  
  .devices-showcase-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      padding: 0;
  }
  
  .device-card {
      border-radius: 12px;
      padding: 12px;
      aspect-ratio: 1.6/1;
  }
  
  .device-card img {
      max-height: 36px;
  }
}

/* Very small mobile */
@media (max-width: 400px) {
  .devices-showcase-title {
      font-size: 24px;
  }
  
  .devices-showcase-grid {
      gap: 10px;
      padding: 0;
  }
  
  .device-card {
      padding: 10px;
  }
  
  .device-card img {
      max-height: 32px;
  }
}

/* ================= FAQ ================= */
.faq-section {
  padding: 72px 0 88px;
  background: var(--color-light);
}

.faq-section .pricing-section-title {
  margin-bottom: 40px;
  color: var(--color-black);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 14px;
  border: 1px solid rgba(25, 19, 20, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.faq-item.open {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(236, 249, 90, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-question span {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.4;
  flex: 1;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-black);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-black);
}

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

.faq-item.open .faq-answer {
  max-height: 320px;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 20px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  background: var(--color-white);
  padding: 10px;
  border-radius: 10px;
}

.footer-brand .footer-logo img {
  width: 48px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 220px;
  margin: 0;
}

.footer-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

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

.footer-payment-logos img {
  height: 28px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-bottom {
  padding: 24px 0 32px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .footer-tagline {
    max-width: 100%;
  }
  .footer-payment-logos img {
    height: 24px;
  }
}

/* ================= PAGES LÉGALES (style site) ================= */
body:has(.legal-page) {
  background: var(--color-light);
}

.navbar-legal {
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(25, 19, 20, 0.08);
}

.navbar-legal .login,
.navbar-legal .login span,
.navbar-legal .nav-link-login {
  color: var(--color-black);
}

.navbar-legal .btn-plans,
.navbar-legal .btn-cta-primary {
  border: 2px solid var(--color-black);
  background: transparent;
  color: var(--color-black) !important;
}

.navbar-legal .btn-cta-primary:hover {
  background: var(--color-black) !important;
  color: var(--color-white) !important;
}

.legal-page {
  padding-bottom: 60px;
}

.legal-hero {
  padding: 100px 0 40px;
  background: var(--color-white);
  border-bottom: 1px solid rgba(25, 19, 20, 0.08);
}

.legal-page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-black);
}

.legal-page-intro {
  color: #4a4a4a;
  font-size: 15px;
  margin: 0;
}

.legal-content {
  padding: 48px 0;
}

.container-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-contact {
  margin-top: 32px !important;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px !important;
}

@media (max-width: 767px) {
  .legal-hero {
    padding: 80px 0 32px;
  }
  .legal-page-title {
    font-size: 26px;
  }
  .legal-content {
    padding: 32px 0;
  }
  .legal-content h2 {
    font-size: 18px;
    margin-top: 24px;
  }
}

/* ================= RÉVISION RESPONSIVE - TABLETTE & TÉLÉPHONE ================= */

/* Tablette */
@media (max-width: 991px) {
  .features {
    padding: 40px 0 30px;
  }
  .feature-card {
    padding: 32px 24px;
  }
  .feature-card h3 {
    font-size: 22px;
  }
  .feature-card p {
    font-size: 15px;
  }
  .slider-section {
    padding: 32px 0;
  }
  .sport-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .sports-item {
    width: 180px;
    height: 300px;
  }
  .series-track {
    margin-bottom: 28px;
  }
  .channel-item {
    width: 100px;
    height: 48px;
  }
  .channel-track {
    gap: 28px;
  }
  .carousel-edge-left,
  .carousel-edge-right {
    width: 40px;
  }
  .pricing-section {
    padding: 60px 0 0;
  }
  .pricing-section-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
  .pricing-card {
    padding: 32px 24px;
  }
  .pricing-title {
    font-size: 24px;
  }
  .price-amount {
    font-size: 38px;
  }
  .how-it-works-section {
    padding: 56px 0 64px;
  }
  .payment-methods {
    padding: 60px 0;
  }
  .payment-methods-title {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .reviews-section {
    padding: 48px 0 60px;
  }
  .reviews-section .pricing-section-title {
    margin-bottom: 28px;
  }
  .review-card {
    width: 280px;
  }
  .review-img-wrap {
    height: 140px;
  }
  .review-card-body {
    padding: 16px 20px 20px;
  }
  .review-text {
    font-size: 13px;
  }
  .faq-section {
    padding: 56px 0 72px;
  }
  .faq-section .pricing-section-title {
    margin-bottom: 32px;
  }
  .faq-question {
    padding: 18px 22px;
  }
  .faq-question span {
    font-size: 14px;
  }
  .faq-answer p {
    padding: 0 22px 18px 22px;
    font-size: 14px;
  }
}

/* Téléphone */
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .features {
    padding: 32px 0 24px;
  }
  .feature-card {
    padding: 28px 20px;
  }
  .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .feature-card p {
    font-size: 14px;
  }
  .slider-section {
    padding: 24px 0;
  }
  .sport-title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .sports-carousel,
  .league-carousel {
    margin-top: 24px;
  }
  .sports-item {
    width: 150px;
    height: 260px;
  }
  .series-track {
    gap: 14px;
    margin-bottom: 20px;
  }
  .channel-item {
    width: 80px;
    height: 40px;
  }
  .channel-track {
    gap: 20px;
  }
  .carousel-edge-left,
  .carousel-edge-right {
    width: 24px;
  }
  .pricing-section {
    padding: 48px 0 0;
  }
  .pricing-section-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .pricing-card {
    padding: 24px 20px;
  }
  .pricing-title {
    font-size: 22px;
    margin-top: 16px;
  }
  .pricing-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .pricing-price {
    margin-bottom: 20px;
  }
  .price-amount {
    font-size: 34px;
  }
  .price-period {
    font-size: 15px;
  }
  .pricing-features li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .pricing-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  .popular-badge {
    padding: 6px 12px;
    font-size: 11px;
  }
  .how-cta-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  .payment-methods {
    padding: 48px 0;
  }
  .payment-methods-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
  /* Payment logos in pricing cards – même ligne sur mobile */
  .pricing-card .payment-methods {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 0;
  }
  .pricing-card .payment-logo {
    flex: 0 0 auto;
    width: 44px;
  }
  .pricing-card .payment-logo img {
    height: 28px;
    max-width: 100%;
  }
  .reviews-section {
    padding: 40px 0 48px;
  }
  .reviews-section .pricing-section-title {
    margin-bottom: 24px;
    font-size: 22px;
  }
  .review-card {
    width: 260px;
  }
  .review-img-wrap {
    height: 120px;
  }
  .review-card-body {
    padding: 14px 18px 18px;
  }
  .review-stars {
    font-size: 12px;
  }
  .review-text {
    font-size: 13px;
  }
  .review-name {
    font-size: 12px;
  }
  .reviews-track {
    gap: 16px;
  }
  .faq-section {
    padding: 44px 0 56px;
  }
  .faq-section .pricing-section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .faq-list {
    gap: 10px;
  }
  .faq-question {
    padding: 16px 18px;
  }
  .faq-question span {
    font-size: 13px;
  }
  .faq-answer p {
    padding: 0 18px 14px 18px;
    font-size: 13px;
  }
}

/* Très petit téléphone */
@media (max-width: 575px) {
  .sport-title {
    font-size: 20px;
  }
  .sports-item {
    width: 130px;
    height: 220px;
  }
  .channel-item {
    width: 70px;
    height: 36px;
  }
  .pricing-section-title {
    font-size: 22px;
  }
  .price-amount {
    font-size: 30px;
  }
  /* Payment logos in plans – même ligne, petits écrans */
  .pricing-card .payment-methods-title {
    font-size: 14px;
    margin-bottom: 8px;
    margin-top: 14px;
  }
  .pricing-card .payment-methods {
    flex-wrap: nowrap;
    gap: 4px;
    padding: 6px 0;
  }
  .pricing-card .payment-logo {
    flex: 0 0 auto;
    width: 36px;
  }
  .pricing-card .payment-logo img {
    height: 22px;
  }
  .review-card {
    width: 240px;
  }
  .review-img-wrap {
    height: 100px;
  }
}
/* ========== TVNED ADDITIONS ========== */

/* Navigation Links */
.nav-links-main {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links-main a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links-main a:hover { color: #666; }

@media (max-width: 991px) {
  .nav-links-main { display: none; }
}

/* Page Hero (sub-pages) */
.page-hero {
  padding: 100px 0 40px;
  background: var(--color-white);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
}
.page-hero-desc {
  color: #4a4a4a;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(25,19,20,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-light);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  padding: 20px 24px 24px;
}
.blog-card-body time {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card-body h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 12px;
  line-height: 1.4;
}
.blog-card-body h2 a {
  color: var(--color-black);
  text-decoration: none;
}
.blog-card-body h2 a:hover { color: #333; }
.blog-card-body p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
}
.blog-read-more:hover { text-decoration: underline; }

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  padding: 40px 32px;
  background: var(--color-white);
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(25,19,20,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.contact-card-primary {
  background: var(--color-black);
  color: var(--color-white);
  border-color: transparent;
}
.contact-card-primary h2 { color: var(--color-white); }
.contact-card-primary p { color: rgba(255,255,255,0.7); }
.contact-card h2 { font-size: 24px; margin: 16px 0 8px; }
.contact-card p { font-size: 14px; margin-bottom: 20px; }
.contact-icon svg { color: var(--color-accent); }
.contact-number { margin-top: 12px; font-size: 14px; opacity: 0.6; }

@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Installation Steps */
.install-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--color-white);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(25,19,20,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.install-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent);
  color: var(--color-black);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-step h2 { font-size: 20px; margin-bottom: 8px; }
.install-step p { font-size: 15px; color: #4a4a4a; line-height: 1.6; margin: 0; }
.install-step a { color: var(--color-black); font-weight: 600; }

/* Device Tags */
.devices-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.device-tag {
  padding: 10px 20px;
  background: var(--color-white);
  border: 1px solid rgba(25,19,20,0.1);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* Blog Post Content */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
.blog-post-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--color-black);
}
.blog-post-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--color-black);
}
.blog-post-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
.blog-post-content ul, .blog-post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-post-content li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #333;
}
.blog-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.blog-post-content th, .blog-post-content td {
  padding: 12px 16px;
  border: 1px solid rgba(25,19,20,0.1);
  text-align: left;
}
.blog-post-content th {
  background: var(--color-light);
  font-weight: 600;
}
.blog-post-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--color-light);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #4a4a4a;
}
.blog-toc {
  background: var(--color-light);
  padding: 24px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
}
.blog-toc h3 { font-size: 16px; margin: 0 0 12px; }
.blog-toc ul { list-style: none; padding: 0; margin: 0; }
.blog-toc li { margin-bottom: 6px; }
.blog-toc a { color: var(--color-black); text-decoration: none; font-size: 14px; }
.blog-toc a:hover { text-decoration: underline; }
.blog-featured-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 32px;
  max-height: 400px;
  object-fit: cover;
}
.blog-faq { margin-top: 40px; }
.blog-cta-box {
  background: var(--color-black);
  color: var(--color-white);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  margin: 40px 0;
}
.blog-cta-box h3 { color: var(--color-white); margin-bottom: 12px; }
.blog-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.blog-cta-box .cta { margin-bottom: 0; }

/* Inter font for body text */
body, .blog-post-content p, .blog-post-content li, .pricing-features li,
.hero-desc, .feature-card p, .how-content-step-desc, .how-content-intro,
.faq-answer p, .footer-tagline, .review-text, .contact-card p, .install-step p {
  font-family: 'Inter', var(--font-urbanist), sans-serif;
}
