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

    :root {
      --green: #009639;
      --green-light: #00c04b;
      --green-dark: #006b28;
      --red: #CE1126;
      --red-light: #e8304a;
      --yellow: #FCD116;
      --gold: #FFD700;
      --bg-primary: #0a0a0f;
      --bg-secondary: #111118;
      --bg-card: #16161f;
      --bg-elevated: #1c1c28;
      --bg-glass: rgba(22, 22, 31, 0.65);
      --border-glass: rgba(255, 255, 255, 0.08);
      --border-subtle: rgba(255, 255, 255, 0.06);
      --text-primary: #f0f0f5;
      --text-secondary: #a0a0b8;
      --text-muted: #6b6b82;
      --whatsapp: #25D366;
      --whatsapp-dark: #1da851;
      --gradient-cameroon: linear-gradient(135deg, var(--green) 0%, var(--yellow) 50%, var(--red) 100%);
      --gradient-green: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
      --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #f5a623 100%);
      --section-pad: clamp(3rem, 8vw, 6rem);
      --container-max: 1200px;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      --bar-h: 36px;
      --header-h: 64px;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      background: #0a1628;
      color: #ffffff;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
    }

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

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

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none
    }

    ul,
    ol {
      list-style: none
    }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 1.25rem
    }

    ::selection {
      background: var(--green);
      color: #fff
    }

    ::-webkit-scrollbar {
      width: 6px
    }

    ::-webkit-scrollbar-track {
      background: var(--bg-primary)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--bg-elevated);
      border-radius: 3px
    }

    *:focus-visible {
      outline: 2px solid var(--green-light);
      outline-offset: 2px
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .65s var(--ease-out), transform .65s var(--ease-out)
    }

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

    .reveal-delay-1 {
      transition-delay: .1s
    }

    .reveal-delay-2 {
      transition-delay: .2s
    }

    .reveal-delay-3 {
      transition-delay: .3s
    }

    .reveal-delay-4 {
      transition-delay: .4s
    }

    .reveal-delay-5 {
      transition-delay: .5s
    }

    .section-title {
      font-size: clamp(1.5rem, 4.5vw, 2.5rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: .5rem;
      line-height: 1.2
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-secondary);
      font-size: clamp(.92rem, 2.5vw, 1.08rem);
      max-width: 620px;
      margin: 0 auto 3rem
    }

    .accent-gradient {
      background: var(--gradient-cameroon);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .reassurance-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--bar-h);
      background: #050e1a;
      z-index: 1100;
      display: flex;
      align-items: center;
      overflow: hidden;
      border-bottom: 1px solid rgba(255, 255, 255, .05)
    }

    .reassurance-track {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
      animation: marquee-scroll 18s linear infinite
    }

    .reassurance-item {
      display: flex;
      align-items: center;
      gap: .35rem;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, .85);
      padding: 0 1.2rem;
      flex-shrink: 0
    }

    .reassurance-item .sep {
      color: rgba(255, 255, 255, .2);
      margin-left: .3rem
    }

    .reassurance-item .ico-mtn {
      color: #FFCC00
    }

    .reassurance-item .ico-om {
      color: #FF6600
    }

    .reassurance-item .ico-bolt {
      color: #00c04b
    }

    .reassurance-item .ico-shield {
      color: #5bc0de
    }

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

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

    @media(min-width:900px) {
      .reassurance-track {
        animation: none;
        justify-content: center;
        width: 100%
      }
    }

    .header {
      position: fixed;
      top: var(--bar-h);
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 22, 40, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 150, 57, 0.15);
      transition: background .3s, box-shadow .3s
    }

    .header.scrolled {
      background: rgba(10, 22, 40, 1);
      box-shadow: 0 4px 24px rgba(0, 0, 0, .5)
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--header-h);
      gap: .75rem
    }

    .logo {
      display: flex;
      align-items: center;
      gap: .5rem;
      flex-shrink: 0;
      z-index: 1001
    }

    .logo-svg {
      width: 38px;
      height: 38px;
      flex-shrink: 0
    }

    .logo-text {
      font-size: 1.3rem;
      font-weight: 800;
      letter-spacing: -.5px;
      color: #fff
    }

    .logo-text span {
      color: var(--green-light)
    }

    .momo-badge {
      display: none;
      align-items: center;
      gap: .4rem;
      background: rgba(255, 255, 255, .05);
      border: 1px solid var(--border-glass);
      border-radius: 100px;
      padding: .25rem .7rem;
      font-size: .68rem;
      font-weight: 500;
      color: var(--text-secondary);
      white-space: nowrap
    }

    .momo-badge .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-light);
      box-shadow: 0 0 6px var(--green-light)
    }

    .nav-desktop {
      display: none;
      align-items: center;
      gap: 1.6rem
    }

    .nav-desktop a {
      font-size: .85rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 8px;
      transition: color .2s, background .2s;
      white-space: nowrap
    }

    .nav-desktop a:hover {
      color: #00d84a;
      background: rgba(0, 150, 57, 0.1)
    }

    .btn-wa-header {
      display: none;
      align-items: center;
      gap: .45rem;
      background: #25D366;
      color: #000000 !important;
      font-size: .8rem;
      font-weight: 700 !important;
      padding: .5rem 1rem;
      border-radius: 100px;
      transition: all var(--transition-base);
      box-shadow: 0 4px 14px rgba(37, 211, 102, .3);
      white-space: nowrap
    }

    .btn-wa-header:hover {
      background: #1da851;
      color: #000000 !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(37, 211, 102, .45)
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      z-index: 1001
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2.5px;
      background: #fff;
      border-radius: 4px;
      transition: transform .3s ease, opacity .3s ease
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(8.75px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-8.75px) rotate(-45deg)
    }

    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 998;
      opacity: 0;
      transition: opacity .3s ease
    }

    .mobile-overlay.visible {
      opacity: 1
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: #0a1628;
      border-bottom: 2px solid #009639;
      border-radius: 0 0 20px 20px;
      padding: 16px 24px 24px;
      transform: translateY(-110%);
      transition: transform .35s cubic-bezier(.4, 0, .2, 1);
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .7)
    }

    .mobile-drawer.open {
      transform: translateY(0)
    }

    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .drawer-logo {
      font-size: 22px;
      font-weight: 800;
      color: #fff
    }

    .drawer-logo span {
      color: #009639
    }

    .drawer-close {
      background: rgba(255, 255, 255, .1);
      border: none;
      color: #fff;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s
    }

    .drawer-close:hover {
      background: rgba(255, 255, 255, .2)
    }

    .drawer-links {
      list-style: none;
      margin: 0 0 20px;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 4px
    }

    .drawer-link {
      display: block;
      color: rgba(255, 255, 255, .9);
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;
      padding: 14px 16px;
      border-radius: 12px;
      transition: background .2s, color .2s
    }

    .drawer-link:hover,
    .drawer-link:active {
      background: rgba(0, 150, 57, .15);
      color: #00d84a
    }

    .drawer-cta {
      display: block;
      background: #25D366;
      color: #000000 !important;
      font-weight: 700 !important;
      font-size: 16px;
      text-align: center;
      padding: 16px;
      border-radius: 14px;
      text-decoration: none;
      margin-bottom: 16px;
      transition: transform .2s
    }

    .drawer-cta:active {
      transform: scale(.97)
    }

    .drawer-payment-badges {
      display: flex;
      justify-content: center;
      gap: 16px;
      font-size: 13px;
      color: rgba(255, 255, 255, .5)
    }

    .nav-mobile {
      display: none !important
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: calc(var(--bar-h) + var(--header-h) + 20px);
      padding-bottom: var(--section-pad);
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(0, 150, 57, .13) 0%, rgba(10, 10, 15, .95) 40%, rgba(206, 17, 38, .08) 100%);
      z-index: 0
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(ellipse at 30% 20%, rgba(0, 150, 57, .1) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(206, 17, 38, .07) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(252, 209, 22, .04) 0%, transparent 40%);
      animation: heroPulse 12s ease-in-out infinite alternate;
      will-change: transform
    }

    @keyframes heroPulse {
      0% {
        transform: scale(1) rotate(0)
      }

      100% {
        transform: scale(1.08) rotate(2deg)
      }
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, .006) 2px, rgba(255, 255, 255, .006) 4px);
      pointer-events: none
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      animation: particleFloat linear infinite;
      will-change: transform, opacity
    }

    @keyframes particleFloat {
      0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
      }

      10% {
        opacity: 1
      }

      90% {
        opacity: 1
      }

      100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 850px;
      margin: 0 auto
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(0, 150, 57, .12);
      border: 1px solid rgba(0, 150, 57, .25);
      border-radius: 100px;
      padding: .4rem 1rem;
      font-size: .76rem;
      font-weight: 500;
      color: var(--green-light);
      margin-bottom: 1.5rem;
      animation: badgePulse 3s ease-in-out infinite
    }

    @keyframes badgePulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1
      }

      50% {
        transform: scale(1.04);
        opacity: .85
      }
    }

    .hero h1 {
      font-size: clamp(1.75rem, 5.5vw, 3.4rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.2rem;
      letter-spacing: -1px
    }

    .hero h1 .highlight {
      background: var(--gradient-cameroon);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hero-subtitle {
      font-size: clamp(.93rem, 2.5vw, 1.13rem);
      color: var(--text-secondary);
      max-width: 650px;
      margin: 0 auto 2rem;
      line-height: 1.7
    }

    .hero-ctas {
      display: flex;
      flex-direction: column;
      gap: .8rem;
      align-items: center;
      margin-bottom: 2.5rem
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      font-size: 1rem;
      font-weight: 700;
      padding: .95rem 2rem;
      border-radius: 100px;
      min-height: 52px;
      transition: all var(--transition-base);
      width: 100%;
      max-width: 320px
    }

    .btn-primary {
      background: var(--gradient-green);
      color: #fff;
      box-shadow: 0 6px 22px rgba(0, 150, 57, .35)
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 36px rgba(0, 150, 57, .5)
    }

    .btn-secondary {
      background: var(--whatsapp);
      color: #000000 !important;
      font-weight: 700 !important;
      box-shadow: 0 6px 22px rgba(37, 211, 102, .3)
    }

    .btn-secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 36px rgba(37, 211, 102, .45);
      background: var(--whatsapp-dark);
      color: #000000
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: .8rem;
      max-width: 600px;
      margin: 0 auto
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: .9rem .5rem;
      background: var(--bg-glass);
      border: 1px solid var(--border-glass);
      border-radius: var(--radius-md);
      backdrop-filter: blur(10px)
    }

    .stat-icon {
      font-size: 1.2rem;
      margin-bottom: .2rem
    }

    .stat-number {
      font-size: clamp(1.35rem, 4vw, 1.75rem);
      font-weight: 800;
      line-height: 1.2
    }

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

    .urgency-hero {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(206, 17, 38, .12);
      border: 1px solid rgba(206, 17, 38, .25);
      color: var(--red-light);
      font-size: .78rem;
      font-weight: 600;
      padding: .4rem 1rem;
      border-radius: 100px;
      margin-top: 1.5rem;
      animation: urgPulse 2s ease-in-out infinite
    }

    @keyframes urgPulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .7
      }
    }

    .trust-bar {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      padding: 1.4rem 0;
      overflow: hidden
    }

    .trust-items {
      display: flex;
      gap: 1.2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: .4rem
    }

    .trust-items::-webkit-scrollbar {
      display: none
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: .55rem .9rem;
      background: rgba(255, 255, 255, .03);
      border: 1px solid var(--border-glass);
      border-radius: 100px;
      white-space: nowrap;
      flex-shrink: 0;
      scroll-snap-align: start;
      font-size: .8rem;
      font-weight: 500;
      color: var(--text-secondary)
    }

    .trust-item svg {
      color: var(--green-light);
      width: 17px;
      height: 17px;
      flex-shrink: 0
    }

    .why-section {
      padding: var(--section-pad) 0
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem
    }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      border-radius: var(--radius-lg);
      padding: 1.7rem 1.4rem;
      transition: all var(--transition-base);
      position: relative;
      overflow: hidden
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-cameroon);
      opacity: 0;
      transition: opacity var(--transition-base)
    }

    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, .12);
      box-shadow: 0 12px 35px rgba(0, 0, 0, .3)
    }

    .feature-card:hover::before {
      opacity: 1
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: .9rem;
      transition: transform .4s var(--ease-out)
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.15) rotate(-5deg)
    }

    .fi-green {
      background: rgba(0, 150, 57, .12)
    }

    .fi-red {
      background: rgba(206, 17, 38, .12)
    }

    .fi-gold {
      background: rgba(252, 209, 22, .12)
    }

    .fi-blue {
      background: rgba(56, 152, 236, .12)
    }

    .feature-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: .4rem
    }

    .feature-card p {
      font-size: .88rem;
      color: var(--text-secondary);
      line-height: 1.6
    }

    .pricing-section {
      padding: var(--section-pad) 0;
      background: var(--bg-secondary)
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.2rem;
      margin-bottom: 2.5rem
    }

    .pricing-card {
      position: relative;
      background: var(--bg-glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border-glass);
      border-radius: var(--radius-xl);
      padding: 2rem 1.4rem;
      transition: all var(--transition-base);
      overflow: hidden
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .04) 0%, transparent 100%);
      pointer-events: none
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 50px rgba(0, 0, 0, .4);
      border-color: rgba(255, 255, 255, .14)
    }

    .pricing-card.featured {
      border-color: var(--green);
      box-shadow: 0 8px 35px rgba(0, 150, 57, .18)
    }

    .pricing-card.featured::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-cameroon)
    }

    .pricing-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: .7rem;
      font-weight: 700;
      padding: .28rem .7rem;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .badge-popular {
      background: rgba(0, 150, 57, .15);
      color: var(--green-light);
      border: 1px solid rgba(0, 150, 57, .3);
      animation: badgeBlink 1.5s ease-in-out infinite
    }

    @keyframes badgeBlink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .6
      }
    }

    .badge-value {
      background: rgba(252, 209, 22, .12);
      color: var(--gold);
      border: 1px solid rgba(252, 209, 22, .25)
    }

    .badge-premium {
      background: rgba(206, 17, 38, .12);
      color: var(--red-light);
      border: 1px solid rgba(206, 17, 38, .25)
    }

    .pricing-duration {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: .4rem
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: .3rem;
      margin-bottom: 1.2rem
    }

    .pricing-amount {
      font-size: clamp(2rem, 6vw, 2.7rem);
      font-weight: 900;
      line-height: 1
    }

    .pricing-currency {
      font-size: .88rem;
      font-weight: 600;
      color: var(--text-muted)
    }

    .pricing-features {
      margin-bottom: 1.3rem
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-size: .86rem;
      color: var(--text-secondary);
      padding: .35rem 0
    }

    .pricing-features li .ck {
      color: var(--green-light);
      flex-shrink: 0;
      width: 16px;
      height: 16px
    }

    .btn-pricing {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      width: 100%;
      padding: .85rem 1.2rem;
      background: var(--whatsapp);
      color: #000000 !important;
      font-weight: 700 !important;
      font-size: .9rem;
      font-weight: 700;
      border-radius: 100px;
      min-height: 48px;
      transition: all var(--transition-base);
      box-shadow: 0 4px 18px rgba(37, 211, 102, .25)
    }

    .btn-pricing:hover {
      background: var(--whatsapp-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 211, 102, .4);
      color: #000000
    }

    .urgence {
      font-size: 12px;
      color: var(--yellow);
      text-align: center;
      margin-top: 8px;
      font-weight: 500;
      animation: urgPulse 2s ease-in-out infinite
    }

    .reseller-cta {
      text-align: center;
      padding: 1.4rem;
      background: rgba(252, 209, 22, .06);
      border: 1px solid rgba(252, 209, 22, .15);
      border-radius: var(--radius-lg)
    }

    .reseller-cta p {
      color: var(--text-secondary);
      font-size: .9rem
    }

    .reseller-cta a {
      color: var(--gold);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color var(--transition-base)
    }

    .reseller-cta a:hover {
      color: var(--yellow)
    }

    .how-section {
      padding: var(--section-pad) 0
    }

    .steps-container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      max-width: 600px;
      margin: 0 auto;
      position: relative
    }

    .steps-container::before {
      content: '';
      position: absolute;
      left: 28px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--green), var(--gold), var(--red));
      border-radius: 2px
    }

    .step-card {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      position: relative
    }

    .step-number {
      width: 56px;
      height: 56px;
      min-width: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: 900;
      color: #fff;
      position: relative;
      z-index: 1
    }

    .sn1 {
      background: var(--gradient-green);
      box-shadow: 0 4px 18px rgba(0, 150, 57, .35)
    }

    .sn2 {
      background: var(--gradient-gold);
      box-shadow: 0 4px 18px rgba(252, 209, 22, .3);
      color: #111
    }

    .sn3 {
      background: linear-gradient(135deg, var(--red), var(--red-light));
      box-shadow: 0 4px 18px rgba(206, 17, 38, .3)
    }

    .step-content {
      flex: 1;
      padding-top: .4rem
    }

    .step-content h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: .25rem
    }

    .step-content p {
      font-size: .88rem;
      color: var(--text-secondary);
      line-height: 1.6
    }

    .channels-section {
      padding: var(--section-pad) 0;
      background: var(--bg-secondary)
    }

    .channel-filters {
      display: flex;
      gap: .45rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem
    }

    .filter-btn {
      padding: .45rem 1rem;
      font-size: .8rem;
      font-weight: 600;
      color: var(--text-secondary);
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border-glass);
      border-radius: 100px;
      transition: all var(--transition-base);
      cursor: pointer
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--green);
      color: #fff;
      border-color: var(--green)
    }

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

    .channel-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      border-radius: var(--radius-md);
      padding: 1.1rem .7rem;
      text-align: center;
      transition: all var(--transition-base);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem
    }

    .channel-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, .12);
      box-shadow: 0 8px 22px rgba(0, 0, 0, .25)
    }

    .channel-logo {
      width: 46px;
      height: 46px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .62rem;
      font-weight: 700;
      line-height: 1.1
    }

    .channel-card span {
      font-size: .72rem;
      font-weight: 600;
      color: var(--text-secondary)
    }

    .channels-more {
      text-align: center;
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--green-light);
      padding: 1rem
    }

    .testimonials-section {
      padding: var(--section-pad) 0
    }

    .testimonials-slider {
      display: flex;
      gap: 1.2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 1rem
    }

    .testimonials-slider::-webkit-scrollbar {
      display: none
    }

    .testimonial-card {
      min-width: 290px;
      max-width: 350px;
      flex-shrink: 0;
      scroll-snap-align: start;
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      border-radius: var(--radius-lg);
      padding: 1.6rem 1.4rem;
      transition: all var(--transition-base)
    }

    .testimonial-card:hover {
      border-color: rgba(255, 255, 255, .1);
      box-shadow: 0 10px 28px rgba(0, 0, 0, .25)
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin-bottom: .9rem
    }

    .testimonial-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 800;
      color: #fff
    }

    .testimonial-info span {
      font-size: .76rem;
      color: var(--text-muted)
    }

    .testimonial-stars {
      color: var(--gold);
      font-size: .85rem;
      margin-bottom: .7rem;
      letter-spacing: 2px
    }

    .testimonial-text {
      font-size: .88rem;
      color: var(--text-secondary);
      line-height: 1.65;
      font-style: italic
    }

    .testimonial-verified {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      font-size: .73rem;
      color: var(--green-light);
      font-weight: 500;
      margin-top: .7rem;
      font-style: normal
    }

    .section-revendeur {
      padding: var(--section-pad) 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #0f2027 0%, #1a3a2a 100%)
    }

    .revendeur-badge-tag {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(255, 215, 0, .1);
      border: 1px solid rgba(255, 215, 0, .25);
      border-radius: 100px;
      padding: .35rem .9rem;
      font-size: .78rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 1.2rem
    }

    .section-revendeur h2 {
      font-size: clamp(1.4rem, 4vw, 2.2rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: .6rem;
      line-height: 1.2
    }

    .revendeur-subtitle {
      text-align: center;
      color: var(--text-secondary);
      font-size: clamp(.9rem, 2.5vw, 1.05rem);
      max-width: 600px;
      margin: 0 auto 2.5rem
    }

    .revendeur-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: .8rem;
      max-width: 550px;
      margin: 0 auto 2.5rem
    }

    .revendeur-stats .rs-stat {
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--border-glass);
      border-radius: var(--radius-md);
      padding: .9rem;
      text-align: center;
      font-size: .85rem;
      font-weight: 600;
      color: var(--text-secondary)
    }

    .revendeur-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-bottom: 2.5rem
    }

    .rev-card {
      background: var(--bg-glass);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(0, 150, 57, .15);
      border-radius: var(--radius-lg);
      padding: 1.6rem 1.3rem;
      transition: all var(--transition-base)
    }

    .rev-card:hover {
      transform: translateY(-3px);
      border-color: rgba(0, 150, 57, .3);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
    }

    .rev-card .rev-icon {
      font-size: 1.8rem;
      margin-bottom: .7rem
    }

    .rev-card h3 {
      font-size: 1.02rem;
      font-weight: 700;
      margin-bottom: .35rem
    }

    .rev-card p {
      font-size: .86rem;
      color: var(--text-secondary);
      line-height: 1.6
    }

    .btn-revendeur {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      background: var(--gold);
      color: #111;
      font-size: .95rem;
      font-weight: 700;
      padding: .95rem 2rem;
      border-radius: 100px;
      min-height: 52px;
      transition: all var(--transition-base);
      box-shadow: 0 4px 20px rgba(255, 215, 0, .3);
      margin: 0 auto;
      text-align: center
    }

    .btn-revendeur:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 35px rgba(255, 215, 0, .45)
    }

    .section-revendeur .text-center {
      text-align: center
    }

    .trial-section {
      padding: var(--section-pad) 0;
      position: relative;
      overflow: hidden
    }

    .trial-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 150, 57, .18) 0%, rgba(10, 10, 15, .9) 50%, rgba(206, 17, 38, .13) 100%);
      z-index: 0
    }

    .trial-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(252, 209, 22, .05) 0%, transparent 70%)
    }

    .trial-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 650px;
      margin: 0 auto
    }

    .trial-content h2 {
      font-size: clamp(1.4rem, 5vw, 2.3rem);
      font-weight: 900;
      margin-bottom: 1rem;
      line-height: 1.2
    }

    .trial-content p {
      font-size: 1.02rem;
      color: var(--text-secondary);
      margin-bottom: 2rem
    }

    .btn-trial {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: var(--whatsapp);
      color: #000000 !important;
      font-weight: 700 !important;
      font-size: 1.02rem;
      font-weight: 700;
      padding: 1.05rem 2.3rem;
      border-radius: 100px;
      min-height: 54px;
      transition: all var(--transition-base);
      box-shadow: 0 6px 28px rgba(37, 211, 102, .35)
    }

    .btn-trial:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 42px rgba(37, 211, 102, .5);
      background: var(--whatsapp-dark);
      color: #000000
    }

    .faq-section {
      padding: var(--section-pad) 0;
      background: var(--bg-secondary)
    }

    .faq-list {
      max-width: 750px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: .7rem
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color var(--transition-base)
    }

    .faq-item.open {
      border-color: rgba(0, 150, 57, .3)
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      width: 100%;
      padding: 1.1rem 1.2rem;
      font-size: .93rem;
      font-weight: 600;
      color: var(--text-primary);
      text-align: left;
      cursor: pointer;
      transition: color var(--transition-base)
    }

    .faq-question:hover {
      color: var(--green-light)
    }

    .faq-chevron {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--text-muted);
      transition: transform .3s
    }

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

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .35s var(--ease-out);
      overflow: hidden
    }

    .faq-answer-inner {
      overflow: hidden;
      min-height: 0;
      padding: 0 1.2rem 1.2rem;
      font-size: .88rem;
      color: var(--text-secondary);
      line-height: 1.7
    }

    .faq-item.open .faq-answer {
      grid-template-rows: 1fr
    }

    .footer {
      padding: 3.5rem 0 1.5rem;
      border-top: 1px solid var(--border-subtle)
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 2.5rem
    }

    .footer-brand p {
      font-size: .86rem;
      color: var(--text-secondary);
      margin-top: .7rem;
      line-height: 1.6
    }

    .footer-col h3 {
      font-size: .88rem;
      font-weight: 700;
      margin-bottom: .9rem;
      color: var(--text-primary)
    }

    .footer-col a {
      display: block;
      font-size: .83rem;
      color: rgba(255, 255, 255, 0.75);
      padding: .2rem 0;
      transition: color var(--transition-base)
    }

    .footer-col a:hover {
      color: #ffffff
    }

    .footer-wa {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: rgba(37, 211, 102, .1);
      border: 1px solid rgba(37, 211, 102, .25);
      padding: .55rem .9rem;
      border-radius: var(--radius-sm);
      color: var(--whatsapp);
      font-size: .86rem;
      font-weight: 600;
      margin-top: .5rem;
      transition: all var(--transition-base)
    }

    .footer-wa:hover {
      background: rgba(37, 211, 102, .2)
    }

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

    .footer-bottom p {
      font-size: .76rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.8
    }

    .footer-seo {
      font-size: .7rem !important;
      margin-top: .4rem;
      color: rgba(255, 255, 255, 0.55)
    }

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: #25D366;
      color: #000000 !important;
      font-weight: 700 !important;
      font-size: .9rem;
      padding: 14px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
      transition: all var(--transition-base);
      text-decoration: none
    }

    .whatsapp-float:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 30px rgba(37, 211, 102, .65);
      background: var(--whatsapp-dark);
      color: #000000 !important;
    }

    .whatsapp-icon {
      font-size: 1.3rem;
      line-height: 1
    }

    .whatsapp-label {
      white-space: nowrap
    }

    .whatsapp-pulse {
      position: absolute;
      inset: -4px;
      border-radius: 50px;
      border: 2px solid var(--whatsapp);
      animation: waPulse 2s ease-out infinite;
      pointer-events: none;
      will-change: transform, opacity
    }

    @keyframes waPulse {
      0% {
        transform: scale(1);
        opacity: .7
      }

      100% {
        transform: scale(1.25);
        opacity: 0
      }
    }

    @media(min-width:768px) {
      .hero-stats {
        grid-template-columns: repeat(4, 1fr)
      }

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

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

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

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

      .revendeur-cards {
        grid-template-columns: repeat(3, 1fr)
      }

      .revendeur-stats {
        grid-template-columns: repeat(4, 1fr)
      }

      .steps-container {
        flex-direction: row;
        max-width: 100%;
        gap: 1.5rem
      }

      .steps-container::before {
        left: 0;
        right: 0;
        top: 28px;
        bottom: auto;
        width: auto;
        height: 2px;
        background: linear-gradient(to right, var(--green), var(--gold), var(--red))
      }

      .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1
      }

      .hero-ctas {
        flex-direction: row;
        justify-content: center
      }

      .btn-primary,
      .btn-secondary {
        width: auto
      }
    }

    @media(min-width:1024px) {
      .hamburger {
        display: none !important
      }

      .mobile-drawer {
        display: none !important
      }

      .mobile-overlay {
        display: none !important
      }

      .nav-desktop {
        display: flex
      }

      .btn-wa-header {
        display: inline-flex
      }

      .momo-badge {
        display: inline-flex
      }

      .features-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .pricing-grid {
        grid-template-columns: repeat(4, 1fr)
      }

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

      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr
      }

      .trust-items {
        justify-content: center;
        overflow: visible
      }

      .whatsapp-float {
        padding: 10px 18px;
        font-size: .82rem
      }
    }

    @media(prefers-reduced-motion:reduce) {

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
      }

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

    .testimonial-name {
      font-size: 1rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
    }

    .nav-cta {
      color: #000000 !important;
      font-weight: 700 !important;
      background: #25D366;
    }

    /* ===== STICKY MOBILE BAR ===== */
    .sticky-mobile-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1200;
      background: linear-gradient(135deg, #0d1f0d 0%, #0a1628 100%);
      border-top: 1px solid rgba(37, 211, 102, 0.3);
      padding: .75rem 1rem;
      align-items: center;
      justify-content: space-between;
      gap: .75rem;
      box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    }

    .sticky-mobile-bar.visible {
      display: flex;
    }

    .sticky-bar-text {
      font-size: .78rem;
      color: var(--text-secondary);
      line-height: 1.3;
      flex: 1;
    }

    .sticky-bar-text strong {
      color: #fff;
      font-size: .85rem;
      display: block;
    }

    .sticky-bar-btn {
      display: flex;
      align-items: center;
      gap: .4rem;
      background: var(--whatsapp);
      color: #000;
      font-weight: 700;
      font-size: .82rem;
      padding: .6rem 1rem;
      border-radius: 50px;
      white-space: nowrap;
      text-decoration: none;
      flex-shrink: 0;
      transition: background .2s;
    }

    .sticky-bar-btn:hover {
      background: var(--whatsapp-dark);
    }

    @media (min-width: 768px) {
      .sticky-mobile-bar {
        display: none !important;
      }
    }

    /* ===== COUNTDOWN TIMER ===== */
    .promo-countdown {
      background: linear-gradient(135deg, rgba(252, 209, 22, .12), rgba(206, 17, 38, .08));
      border: 1px solid rgba(252, 209, 22, .25);
      border-radius: var(--radius-sm);
      padding: .5rem .75rem;
      margin-bottom: .75rem;
      text-align: center;
      font-size: .78rem;
      color: var(--text-secondary);
    }

    .promo-countdown strong {
      color: var(--gold);
    }

    .countdown-digits {
      font-size: 1.1rem;
      font-weight: 800;
      color: #fff;
      font-variant-numeric: tabular-nums;
      letter-spacing: .03em;
    }

    /* ===== EXIT INTENT POPUP ===== */
    .exit-popup-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .72);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .exit-popup-overlay.open {
      display: flex;
    }

    .exit-popup {
      background: var(--bg-card);
      border: 1px solid rgba(37, 211, 102, .25);
      border-radius: var(--radius-xl);
      padding: 2rem 1.5rem;
      max-width: 380px;
      width: 100%;
      text-align: center;
      position: relative;
      animation: popIn .35s var(--ease-out);
    }

    @keyframes popIn {
      from {
        opacity: 0;
        transform: scale(.88);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .exit-popup-close {
      position: absolute;
      top: .75rem;
      right: .75rem;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--bg-elevated);
      color: var(--text-secondary);
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
    }

    .exit-popup-emoji {
      font-size: 2.5rem;
      margin-bottom: .5rem;
    }

    .exit-popup h3 {
      font-size: 1.25rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: .5rem;
      line-height: 1.3;
    }

    .exit-popup p {
      color: var(--text-secondary);
      font-size: .9rem;
      margin-bottom: 1.25rem;
      line-height: 1.6;
    }

    .exit-popup-btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--whatsapp);
      color: #000;
      font-weight: 700;
      font-size: .95rem;
      padding: .75rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      transition: background .2s;
      width: 100%;
      justify-content: center;
    }

    .exit-popup-btn:hover {
      background: var(--whatsapp-dark);
    }

    .exit-popup-skip {
      display: block;
      margin-top: .75rem;
      font-size: .8rem;
      color: var(--text-muted);
      cursor: pointer;
    }

    .exit-popup-skip:hover {
      color: var(--text-secondary);
    }

    /* ===== DEVICE COMPATIBILITY ===== */
    .devices-section {
      padding: 3rem 0;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .devices-section .section-title {
      margin-bottom: 2rem;
    }

    .devices-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .devices-grid {
        grid-template-columns: repeat(6, 1fr);
      }
    }

    .device-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1rem .75rem;
      transition: border-color .2s, transform .2s;
    }

    .device-card:hover {
      border-color: rgba(0, 150, 57, .4);
      transform: translateY(-3px);
    }

    .device-icon {
      font-size: 2rem;
      line-height: 1;
    }

    .device-name {
      font-size: .72rem;
      font-weight: 600;
      color: var(--text-secondary);
      text-align: center;
      line-height: 1.3;
    }

    .device-badge {
      font-size: .6rem;
      font-weight: 700;
      background: rgba(0, 150, 57, .15);
      color: var(--green-light);
      padding: .15rem .4rem;
      border-radius: 20px;
      border: 1px solid rgba(0, 150, 57, .2);
    }
  