/* RESET GLOBAL – À METTRE TOUT EN HAUT */

* {
  box-sizing: border-box;
}

body {
  padding-inline: 20px;
}

/* ======================
   RESET & VARIABLES
====================== */
:root {
  --bg-main: #050505;
  --bg-soft: rgba(255,255,255,0.04);
  --neon: #00ffae;
  --text-main: #ffffff;
  --text-muted: #bdbdbd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text-main);
  line-height: 1.6;

  background:
    /* halo principal plus large et plus clair */
    radial-gradient(
      1200px circle at 50% -25%,
      rgba(0,255,174,0.26),
      transparent 65%
    ),

    /* halo secondaire équilibré */
    radial-gradient(
      900px circle at 80% 30%,
      rgba(0,201,255,0.14),
      transparent 70%
    ),

    /* base éclaircie */
    linear-gradient(
      180deg,
      #121212 0%,
      #0b0b0b 55%,
      #070707 100%
    );
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 40%,
      rgba(0,255,174,0.04),
      transparent 60%
    );
  pointer-events: none;
}



/* ======================
   GLOBAL
====================== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.section {
  padding: 100px 0;
  background: transparent;
}

.section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 30px;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 20px auto 0;
  background: var(--neon);
  border-radius: 2px;
}

.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-muted);
}

/* ======================
   HERO
====================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px circle at 50% 20%, rgba(0,255,174,0.18), transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 6px;
  margin-bottom: 10px;

  background: linear-gradient(
    90deg,
    #eafff7,
    #00ffae,
    #7df9ff
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 15px rgba(0,255,174,0.25),
    0 0 35px rgba(0,255,174,0.15);
}


.hero h2 {
  font-size: 1.9rem;
  font-weight: 500;
  margin: 25px 0;
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ======================
   HERO BULLETS
====================== */
.hero-bullets {
  list-style: none;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.hero-bullets span {
  color: var(--neon);
}

/* ======================
   BUTTON
====================== */
.btn-primary {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 42px;
  background: linear-gradient(135deg, var(--neon), #00c9ff);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,255,174,0.35);
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(0,255,174,0.55);
}

/* ======================
   GRIDS
====================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

/* ======================
   CARDS
====================== */
.card {
  background: var(--bg-soft);
  backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,174,0.4);
}

/* ======================
   MÉTHODE KSF – STEPS
====================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 60px;
}

.step {
  display: flex;
  gap: 30px;
  padding: 50px;
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(0,255,174,0.25);

  box-shadow:
    0 0 0 1px rgba(0,255,174,0.08),
    0 20px 60px rgba(0,0,0,0.6);

  backdrop-filter: blur(12px);
}


.step-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0,255,174,0.25);
  min-width: 70px;
}

.step-content span {
  color: var(--neon);
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.step-content h3 {
  font-size: 1.7rem;
  margin: 12px 0;
}

.step-content p {
  color: #cfcfcf;
  max-width: 600px;
}

/* ======================
   PRICING
====================== */
.pricing {
  padding: 120px 0;
}

.price-card {
  max-width: 460px;
  margin: auto;
  padding: 50px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,255,174,0.25);
  text-align: center;
}

.price {
  font-size: 3.6rem;
  color: var(--neon);
  margin: 25px 0;
}

.price-card ul {
  list-style: none;
  margin: 30px 0;
}

.price-card li {
  margin-bottom: 12px;
}

/* ======================
   FOOTER
====================== */
.footer {
  padding: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .btn-primary {
    width: 100%;
  }

  .step {
    flex-direction: column;
  }

  .step-number {
    min-width: auto;
  }
}
.step-number {
  font-size: 3.8rem;
  font-weight: 800;
  color: rgba(0,255,174,0.35);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}

.step {
  display: flex;
  gap: 30px;
  padding: 45px;
  border-radius: 20px;

  background: rgba(20, 20, 20, 0.75);
  border: 1px solid rgba(0,255,174,0.25);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.03);

  backdrop-filter: blur(10px);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0,255,174,0.35);
  min-width: 80px;
}

.step-content span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #00ffae;
  font-weight: 700;
}

.step-content h3 {
  font-size: 1.8rem;
  margin: 10px 0;
}

.step-content p {
  color: #cfcfcf;
  max-width: 600px;
}
.logo {
  position: relative;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 10px;
  text-align: center;

  color: transparent;
  background: linear-gradient(
    180deg,
    #2a2a2a 0%,
    #0f0f0f 45%,
    #000000 55%,
    #1e1e1e 100%
  );
  -webkit-background-clip: text;
  background-clip: text;

  /* CAVITÉ */
  text-shadow:
    inset 0 3px 4px rgba(255,255,255,0.15),
    inset 0 -6px 10px rgba(0,0,0,0.95),
    inset 0 12px 18px rgba(0,0,0,0.9),
    0 10px 25px rgba(0,0,0,0.85);
}

.logo::before {
  content: "KSF";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    #000000,
    #050505
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  transform: translateY(3px);
  opacity: 0.85;

  filter: blur(0.3px);
  pointer-events: none;
}
.logo {
  text-shadow:
    inset 0 2px 2px rgba(255,255,255,0.08),
    inset 0 -10px 18px rgba(0,0,0,1),
    inset 0 18px 28px rgba(0,0,0,0.95),
    0 15px 35px rgba(0,0,0,1);
}


.hero {
  text-align: center;
}
/* ======================
   PRIX – EFFET SPÉCIAL
====================== */

.price {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
}


.price::after {
  content: "accès immédiat";
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 10px;
  color: rgba(0,255,174,0.8);
}

/* Texte autour du prix */
.price-hook {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--neon);
  margin-bottom: 8px;
}

.price-sub {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: -10px;
}

.price-reassure {
  margin-top: 30px;
  font-size: 0.95rem;
  color: #ccc;
  font-style: italic;
}
.price-anchor {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #bdbdbd;
}
/* ======================
   PRIX – MICRO ANIMATION VIVANTE
====================== */

.price {
  position: relative;
  animation: pricePulse 4.5s ease-in-out infinite;
}

/* Halo vivant autour du prix */
.price::before {
  content: "";
  position: absolute;
  inset: -25px;
  background: radial-gradient(
    circle,
    rgba(0,255,174,0.35),
    transparent 65%
  );
  opacity: 0.6;
  filter: blur(25px);
  z-index: -1;
  animation: glowBreath 4.5s ease-in-out infinite;
}

/* Animation principale */
@keyframes pricePulse {
  0% {
    transform: scale(1);
    text-shadow:
      0 0 18px rgba(0,255,174,0.25),
      0 0 50px rgba(0,255,174,0.15);
  }
  50% {
    transform: scale(1.035);
    text-shadow:
      0 0 30px rgba(0,255,174,0.45),
      0 0 80px rgba(0,255,174,0.25);
  }
  100% {
    transform: scale(1);
    text-shadow:
      0 0 18px rgba(0,255,174,0.25),
      0 0 50px rgba(0,255,174,0.15);
  }
}

/* Respiration du halo */
@keyframes glowBreath {
  0% { opacity: 0.45; }
  50% { opacity: 0.8; }
  100% { opacity: 0.45; }
}
/* ======================
   CTA CONNECTÉ AU PRIX
====================== */

.price-card .btn-primary {
  position: relative;
  overflow: hidden;
  animation: ctaBreath 4.5s ease-in-out infinite;
}

/* Halo subtil du bouton */
.price-card .btn-primary::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(0,255,174,0.25),
    transparent 60%
  );
  opacity: 0.5;
  filter: blur(30px);
  z-index: -1;
}

/* Respiration synchronisée */
@keyframes ctaBreath {
  0% { transform: scale(1); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}
/* ======================
   PRICE – MICRO ANIMATION
====================== */

.price-card {
  position: relative;
}

.price {
  animation: pricePulse 3s ease-in-out infinite;
}

@keyframes pricePulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(0,255,174,0);
  }
  50% {
    transform: scale(1.06);
    text-shadow: 0 0 25px rgba(0,255,174,0.6);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(0,255,174,0);
  }
}
.logo {
  background: linear-gradient(
    180deg,
    #1a1a1a,
    #0c0c0c
  );
  text-shadow:
    inset 0 2px 2px rgba(255,255,255,0.15),
    inset 0 -4px 6px rgba(0,0,0,0.9),
    0 8px 20px rgba(0,0,0,0.9);
}
/* ======================
   HERO – STATS
====================== */

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 60px 0 40px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 1rem;
  color: #bdbdbd;
}

.stat-divider {
  width: 2px;
  height: 70px;
  background: linear-gradient(
    180deg,
    transparent,
    #00ffae,
    transparent
  );
  opacity: 0.8;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .stat-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      #00ffae,
      transparent
    );
  }
}
/* ======================
   HERO – STATS
====================== */

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin: 60px 0 40px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 1rem;
  color: #bdbdbd;
}

.stat-divider {
  width: 2px;
  height: 70px;
  background: linear-gradient(
    180deg,
    transparent,
    #00ffae,
    transparent
  );
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .stat-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      #00ffae,
      transparent
    );
  }
}
h1, h2, h3,
.logo,
.stat-number,
.price,
.step-number {
  font-family: "Space Grotesk", sans-serif;
}
h2 {
  letter-spacing: -0.02em;
}

.stat-number {
  letter-spacing: 0;
}

.logo {
  letter-spacing: 12px; /* encore plus sculptural */
}
/* ======================
   TRUST BAR – FIX FINAL
====================== */

.trust-bar {
  margin: 60px auto 0;
  padding: 30px 48px;
  max-width: 1200px; /* un peu plus large */

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;

  overflow: hidden; /* sécurité anti-débordement */
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.trust-icon {
  font-size: 1.6rem;
  color: #00ffae;
}

.trust-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  opacity: 0.6;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 900px) {
  .trust-bar {
    flex-direction: column;
    gap: 22px;
  }

  .trust-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.35),
      transparent
    );
  }
}
/* =========================
   HERO STATS
========================= */

/* =========================
   HERO STATS (FIXED)
========================= */

/* =========================
   INLINE STATS
========================= */

.hero-inline-stats {
  margin: 50px 0 40px;
  text-align: center;
}

/* TOP VALUES */
/* Conteneur des chiffres */
.inline-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
}

/* Stats */
.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
}

.stat span {
  font-size: 15px;
  color: #b0bec5;
}

/* TRAIT NEON */
.neon-divider {
  width: 2px;
  height: 70px;
  background: linear-gradient(
    to bottom,
    transparent,
    #00f5ff,
    transparent
  );
  box-shadow:
    0 0 6px #00f5ff,
    0 0 14px rgba(0, 245, 255, 0.8);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .inline-top {
    flex-direction: column;
    gap: 20px;
  }

  .neon-divider {
    width: 70px;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent,
      #00f5ff,
      transparent
    );
  }

  .stat strong {
    font-size: 40px;
  }
}
.guarantee-section {
  max-width: 900px;
  margin: 120px auto 80px;
  color: #e6f1f8;
}

.guarantee-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}

.guarantee-title span {
  color: #6fb6ff;
}

.guarantee-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #dbe7ef;
}

.guarantee-content {
  margin-top: 50px;
}

.guarantee-content h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.guarantee-content .subtitle {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #9fb6c7;
}

.guarantee-content .question {
  margin-top: 30px;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
}
.bonus-section {
  max-width: 1100px;
  margin: 140px auto;
  padding: 0 24px;
  text-align: center;
}

.bonus-label {
  display: block;
  color: #4da6ff;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.bonus-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 80px;
  color: #ffffff;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: left;
  margin-bottom: 40px;
}

.bonus-number {
  display: block;
  color: #4da6ff;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.bonus-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  color: #ffffff;
}

.bonus-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #d6d6d6;
}
.bonus-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  opacity: 0.9;
}

.bonus-hint-text {
  font-size: 15px;
  color: #cfcfcf;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 10px;
}

.bonus-hint-arrow {
  font-size: 28px;
  color: #4da6ff;
  animation: bounceDown 1.6s infinite;
}

/* Animation douce vers le bas */
@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
.product-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Bloc flèche à côté */
.bonus-side-hint {
  position: absolute;
  right: -90px;   /* distance du produit */
  top: 25%;
  transform: translateY(-400%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bonus-side-text {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.4;
  margin-bottom: 8px;
  max-width: 160px;
}

.bonus-side-arrow {
  font-size: 28px;
  color: #4da6ff;
  animation: sideBounce 1.6s infinite;
}

/* Animation douce */
@keyframes sideBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* MOBILE : on enlève la flèche */
@media (max-width: 900px) {
  .bonus-side-hint {
    display: none;
  }
}

.product-section h2 {
  font-size: 64px !important;
  font-weight: 800;
  letter-spacing: -1px;
}

.price {
  text-align: center;
  margin: 25px 0;
}

.price .old-price {
  display: block;
  font-size: 22px;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.price .current-price {
  display: block;
  font-size: 80px;
  font-weight: 900;
  color: #1ef7b7;
  line-height: 1;
  text-shadow:
    0 0 18px rgba(30, 247, 183, 0.6),
    0 0 40px rgba(30, 247, 183, 0.35);
}
.btn-eta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  color: #0b0f0e;
  background: linear-gradient(135deg, #1ef7b7, #20d9ff);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow:
    0 0 20px rgba(30,247,183,0.4);
}

.btn-eta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 30px rgba(30,247,183,0.7);
}
.eta-center {
  text-align: center;
  margin: 40px 0;
}
.cta-sticky {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 36px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 17px;
  color: #0b0f0e;
  background: linear-gradient(135deg, #1ef7b7, #20d9ff);
  text-decoration: none;
  z-index: 9999;
  box-shadow:
    0 0 25px rgba(30,247,183,0.6);
  transition: all 0.25s ease;
}

.cta-sticky:hover {
  transform: translateX(-50%) translateY(-2px) scale(1.04);
  box-shadow:
    0 0 40px rgba(30,247,183,0.9);
}
/* ===== BOUTONS ETA ===== */
.btn-eta {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 16px;
  color: #0b0f0e;
  background: linear-gradient(135deg, #1ef7b7, #20d9ff);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(30,247,183,0.45);
  transition: all 0.25s ease;
}

.btn-eta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 35px rgba(30,247,183,0.8);
}

/* centrage ETA */
.eta-center {
  text-align: center;
  margin: 50px 0;
}

/* ===== PRIX ===== */
.price {
  text-align: center;
  margin: 30px 0;
}

.old-price {
  display: block;
  font-size: 22px;
  opacity: 0.5;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.current-price {
  display: block;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  color: #1ef7b7;
  text-shadow:
    0 0 18px rgba(30,247,183,0.6),
    0 0 40px rgba(30,247,183,0.35);
}

/* ===== CTA STICKY ===== */
.cta-sticky {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 38px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 17px;
  color: #0b0f0e;
  background: linear-gradient(135deg, #1ef7b7, #20d9ff);
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 0 30px rgba(30,247,183,0.7);
  transition: all 0.35s ease;
}

.cta-sticky.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}





