:root {
  --bg: #020617;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.6);
  --green: #22c55e;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.2);
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🍪 COOKIE BANNER PRO */

.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  z-index: 999;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.8),
      rgba(2, 6, 23, 0.9));
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 22px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(.2, .8, .2, 1);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(34, 197, 94, 0.1);
}


.cookie-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--muted);
}

.cookie-text strong {
  color: white;
  font-weight: 600;
  margin-bottom: 2px;
}


.cookie-links {
  margin-top: 6px;
  display: flex;
  gap: 12px;
  font-size: 12px;
}

.cookie-links a {
  color: rgba(255, 255, 255, 0.6);
}

.cookie-links a:hover {
  color: #22c55e;
}



body {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: none
}

/* 🔥 GLOBAL BACKGROUND FIXED */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.15), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(99, 102, 241, 0.15), transparent 40%),
    radial-gradient(circle at center, #0b1220, #020617);

  animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(-2%, -2%);
  }
}

a {
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
}


a:hover {
  color: #22c55e;
}


/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 24px;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(2, 6, 23, 0.4);
}

.nav .btn {
  font-size: 13px;
  padding: 10px 18px;
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
}

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.how-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  max-width: 700px;
  margin: 0 auto;
}


.step {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  z-index: 2;
}

.step::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 2px;
  height: 40px;

  background: linear-gradient(to bottom,
      rgba(34, 197, 94, 0.6),
      rgba(34, 197, 94, 0.1));

  transform: translateX(-50%);
}

.step:last-child::after {
  display: none;
}

.step::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  width: 12px;
  height: 12px;
  border-radius: 50%;

  background: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) scale(1.4);
    opacity: 0.5;
  }

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

.step:nth-child(1) {
  opacity: 0.6;
  transform: scale(0.95);
}

.step:nth-child(2) {
  opacity: 0.8;
  transform: scale(1);
}

.step:nth-child(3) {
  opacity: 1;
  transform: scale(1.05);
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow:
    0 30px 80px rgba(34, 197, 94, 0.2);
  border-radius: 20px;
}

.step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 140px;
  font-weight: 800;

  color: rgba(34, 197, 94, 0.08);
  letter-spacing: -5px;

  transition: all 0.4s cubic-bezier(.2, .8, .2, 1);
}

.step:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}

.step:hover .step-number {
  color: rgba(34, 197, 94, 0.08);
  transform: translateX(-50%) scale(1.05);
  color: rgba(34, 197, 94, 0.2);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
}

/* HERO */
.hero {
  position: relative;
  z-index: 2;
  padding: 0;
}

.highlight {
  color: #22c55e;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.hero-proof {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(34, 197, 94, 0.9);
  font-weight: 500;
  animation: fadeIn 1.2s ease;
}

.product {
  position: relative;
  z-index: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.hero-left {
  max-width: 520px;
  will-change: transform, opacity;
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.subtitle {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

.cta-group {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

/* BUTTONS */
.btn {
  position: relative;
  overflow: hidden;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  opacity: 0;
  transition: 0.4s;
}


.btn.primary {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #1d1633;
  /* 🔥 CONTRASTE REAL */

  border: 1px solid rgba(34, 197, 94, 0.4);

  box-shadow:
    0 10px 30px rgba(34, 197, 94, 0.35),
    0 0 20px rgba(34, 197, 94, 0.15);

  transition: all 0.25s ease;
}

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

  background: linear-gradient(135deg, #16a34a, #22c55e);

  color: #ecfdf5;
  /* 🔥 TEXTO SIEMPRE LEGIBLE */

  box-shadow:
    0 15px 40px rgba(34, 197, 94, 0.5),
    0 0 30px rgba(34, 197, 94, 0.25);
}

.btn.ghost {
  border: 1px solid var(--border);
  opacity: 0.8;

  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(143, 255, 171, 0.85);
  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(143, 255, 128, 0.336);
  transform: translateY(-1px);
  color: rgb(9, 255, 0);
}

/* MOCKUP */
.mockup {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  will-change: transform;

}

.mockup.big {
  transform: perspective(1200px) rotateY(-6deg) scale(1.05);
  box-shadow:
    0 60px 160px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(34, 197, 94, 0.2);
}

/* CHAT */
.chat {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-mobile {
  display: none;
}

.guest {
  background: rgba(255, 255, 255, 0.06);
}

.ai {
  background: rgba(34, 197, 94, 0.2);
  align-self: flex-end;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ANIMATION */
.message {
  padding: 14px 16px;
  border-radius: 14px;
  max-width: 75%;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.6s forwards;

}

.message.ai {
  transition: all 0.2s ease;
}

.delay-1 {
  animation-delay: .4s;
}

.delay-2 {
  animation-delay: 1s;
}

.delay-3 {
  animation-delay: 1.6s;
}

.delay-4 {
  animation-delay: 2.2s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* SECTIONS */
/* 🔥 FULLSCREEN SECTIONS */
section {
  min-height: 100vh;
  display: flex;
  padding-top: 80px;
  align-items: center;
  margin-top: 0;
  min-height: 100vh;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition:
    transform 1s cubic-bezier(.2, .8, .2, 1),
    opacity 0.8s ease;
  opacity: 1;
  transform: none;
  will-change: transform, opacity;
}

/* 🔥 FOOTER COMO SECCIÓN REAL */
#footer-section {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  scroll-snap-align: center;
}

/* 🔥 FOCUS EFFECT */
section.active {
  opacity: 1;
  transform: scale(1);
}

section .container {
  width: 100%;
}

/* SOLO afectamos contenido, no fondo */
section>* {
  opacity: 0.15;
  transform: scale(0.94);
  filter: blur(3px);
  transition: all 0.8s cubic-bezier(.2, .8, .2, 1);
}

section.active>* {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.trust-line {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.trust-line span {
  position: relative;
  padding-left: 12px;
}

.trust-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.trust-proof {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* PRICING */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border-radius: 24px;
  text-align: center;

  background: linear-gradient(rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));

  border: 1px solid var(--border);
  opacity: 0.85;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(.2, .8, .2, 1);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at 50% 0%,
      rgba(34, 197, 94, 0.15),
      transparent 60%);

  opacity: 0;
  transition: 0.4s;
}

.price-card:hover::before {
  opacity: 1;
}

.price-card.highlight {
  opacity: 1;
  transform: scale(1.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow:
    0 40px 120px rgba(34, 197, 94, 0.25),
    inset 0 0 40px rgba(34, 197, 94, 0.1);
}

.price-card.highlight .price {
  color: #22c55e;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.pricing-container .price-card.highlight {
  transform: scale(1.08);
}

.pricing.active .price-card {
  opacity: 1;
  transform: none;
}

.pricing.active .price-card:nth-child(1) {
  transition-delay: 0.1s;
}

.pricing.active .price-card:nth-child(2) {
  transition-delay: 0.2s;
}

.pricing.active .price-card:nth-child(3) {
  transition-delay: 0.3s;
}

.price-card.highlight {
  transform: scale(1.1);

  border: 1px solid rgba(34, 197, 94, 0.4);

  box-shadow:
    0 40px 120px rgba(34, 197, 94, 0.25),
    inset 0 0 40px rgba(34, 197, 94, 0.1);
}

.price-card .btn {
  margin-top: 20px;
  display: inline-block;
}

.card,
.price-card,
.mockup {
  backdrop-filter: blur(24px);
}

.card,
.price-card {
  box-shadow: var(--shadow-soft);
}

.card.highlight,
.price-card.highlight {
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.roi-badge {
  margin-top: 12px;
  font-size: 13px;
  color: #22c55e;
  font-weight: 600;

  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
}

.features {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: var(--muted);
}

.features li {
  margin-bottom: 8px;
}

/* SCROLL ANIMATION PRO */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(80px) scale(0.96);
  transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
  animation: subtleFade 0.8s ease;
}

@keyframes subtleFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.reveal-item.visible {
  opacity: 1;
  transform: none;
}

/* CTA */
.final-cta {
  text-align: center;
}

/* FOOOTER */

.footer {
  text-align: center;
  /*padding: 60px;*/
  color: var(--muted);
  width: 100%;
  padding: 40px 24px;
  max-width: 1100px;
  margin: 0 auto;
}


.footer a {
  color: rgba(255, 255, 255, 0.5);
}

.footer a:hover {
  color: #22c55e;
}

.footer-inner {
  width: 100%;
  max-width: 1100px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

/* GLOW SYSTEM */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(34, 197, 94, 0.15), transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  height: 160px;
  /*background: linear-gradient(to bottom, transparent, #020617);*/
}

/* MONEY TAG */
.money {
  margin-left: 10px;
  color: #22c55e;
  font-weight: 600;
}

.tag {
  font-size: 12px;
  color: var(--green);
  margin-bottom: 10px;
}

/* CARDS (MUCHO MÁS GRANDES) */
.card {
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(.2, .8, .2, 1);
  transform-style: preserve-3d;
}

.value-intro {
  animation: fadeUp 1s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(34, 197, 94, 0.15);
}


.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(34, 197, 94, 0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.card:hover::before {
  opacity: 1;
}

.value-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.value-left .card:first-child {
  transform: translateX(-10px);
}

.value-left .card:last-child {
  transform: translateX(10px);
}

.card.small {
  min-height: 160px;
}

.card.large {
  min-height: 100%;
  padding: 50px;
}

.card.highlight {
  transform: scale(1.05) translateY(-6px);
}

.value-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.value-intro {
  text-align: center;
}

.value-intro h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.value-intro p {
  color: var(--muted);
}

/* GRID NO SIMÉTRICO */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.value-grid .card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.value-grid .card:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.value-grid .card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.value-grid::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at 60% 40%,
      rgba(34, 197, 94, 0.08),
      transparent 60%);

  pointer-events: none;
}

/* CARD GRANDE */
.card.big {
  transform: scale(1.05);
}

/* CARD CENTRAL DESTACADA */
.card.highlight {
  transform: scale(1.08) translateY(-10px);
  z-index: 2;

  border: 1px solid rgba(34, 197, 94, 0.5);

  box-shadow:
    0 50px 140px rgba(34, 197, 94, 0.3),
    0 0 80px rgba(34, 197, 94, 0.25);
}

/* TAG DE VALOR */
.value-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: #22c55e;
  font-weight: 600;

  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

.value .card {
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);

  position: relative;
}

.value .card::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);

  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

.card:nth-child(2) {
  transform: scale(1.05);
  border-color: rgba(34, 197, 94, 0.3);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

/* BUTTON IMPROVED 
.btn.primary {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  box-shadow:
    0 10px 30px rgba(34, 197, 94, 0.4),
    0 0 40px rgba(34, 197, 94, 0.2);
}*/

/* CHAT LOOP FEEL */
.chat {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* INTERACTIVE CHAT */
.clickable {
  cursor: pointer;
  transition: 0.2s;
}

.clickable:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

/* RESPONSE AREA */
#chat-response {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* REVENUE COUNTER */
.revenue-counter {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  color: #22c55e;
  font-weight: 600;
}

#revenue {
  color: #22c55e;
  font-weight: 600;
  font-size: 16px;
}

/* typing effect */
.typing {
  opacity: 0.4;
  font-style: italic;
  letter-spacing: 2px;
}

/* TYPING PRO (copiado del chat real) */
.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 12px;
  transition: opacity 0.2s ease;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
  animation-delay: .2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes typingBounce {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: .3;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* smoother appearance */
.message {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.message.guest::before {
  content: "";
  display: block;
  font-size: 10px;
  opacity: 0.5;
}


/* 🔥 SCROLL CONTAINER REAL */
html,
body {
  height: 100%;
}

/* contenedor de scroll */
main {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

/* 🔥 HIDE SCROLLBAR (PRO UI) */
main::-webkit-scrollbar {
  display: none;
}

main {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* 🔥 GLOBAL REVENUE STICKY */
.global-revenue {
  position: fixed;
  top: 70px;
  font-size: 16px;
  padding: 14px 18px;
  right: 30px;
  z-index: 200;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  color: #22c55e;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

/* 🔥 SCROLL TO TOP */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 300;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);

  color: white;
  font-size: 18px;
  cursor: pointer;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(.2, .8, .2, 1);
}

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

#scrollTopBtn:hover {
  transform: scale(1.1);
  border-color: rgba(34, 197, 94, 0.4);
}

.legal-page {
  max-width: 900px;
  margin: 120px auto;
  padding: 40px 24px;
  line-height: 1.7;
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.legal-page h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-page p {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-page a {
  color: #22c55e;
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

}


@media (max-width: 900px) {

  .container {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
    z-index: 200;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 16px;

    flex-direction: column;
    align-items: stretch;

    width: 200px;

    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(24px);

    padding: 14px;
    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;

    transition: all 0.25s ease;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
  }


  h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  main {
    scroll-snap-type: none;
  }

  section {
    scroll-snap-align: none;
    min-height: auto;
    padding: 80px 0;
    margin-top: 0;
  }

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

  .mockup.big {
    transform: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-left {
    text-align: center;
    max-width: 100%;
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 16px;
  }

  .hero-proof {
    font-size: 13px;
  }

  .hero-right {
    display: none;
  }

  .interactive-chat {
    max-height: 420px;
    min-height: 320px;
    overflow: hidden;
  }

  .chat {
    max-height: 300px;
    overflow-y: auto;
  }

  .chat-mobile {
    display: block;
    padding-top: 20px;
  }

  .mockup.big {
    max-width: 100%;
    transform: none;
    padding: 16px;
  }

  h1 {
    font-size: 40px;
  }

  .cta-group {
    flex-direction: column;
  }

  section {
    margin-top: 80px;
  }

  section>* {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .pricing-container {
    grid-template-columns: 1fr;
  }

  .value-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .value-left {
    gap: 24px;
  }

  .card,
  .card.large {
    transform: none !important;
    padding: 24px;
  }

  .how-container {
    gap: 50px;
  }

  .step-number {
    font-size: 80px;
    top: -10px;
  }

  .step {
    padding: 20px;
  }


  .price-card {
    padding: 30px;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }


}