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

:root {
  --bg: #0d0d0f;
  --surface: #141417;
  --card: #1a1a1f;
  --border: #2a2a32;
  --accent: #7c3aed;
  --accent2: #a855f7;
  --glow: #7c3aed66;
  --text: #f0f0f5;
  --muted: #888899;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  touch-action: pan-y;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #7c3aed22;
  border: 1px solid #7c3aed55;
  color: var(--accent2);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* ── HERO ── */
#hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 96px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 75% 65% at 60% -10%,
      rgba(124, 58, 237, 0.22),
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 40% at 10% 80%,
      rgba(168, 85, 247, 0.1),
      transparent 55%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 90% 75% at 55% 0%,
    black,
    transparent 72%
  );
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #7c3aed26, #a855f712);
  top: -260px;
  left: -180px;
  animation: float1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #a855f71e, #7c3aed10);
  bottom: -120px;
  right: -120px;
  animation: float2 16s ease-in-out infinite;
}
@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(60px, 50px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50px, -35px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-layout {
  display: grid;
  grid-template-areas: "title videos" "text  videos";
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 56px;
  row-gap: 20px;
  width: 100%;
}
.hero-title {
  grid-area: title;
}
.hero-videos {
  grid-area: videos;
  align-self: center;
}
.hero-text {
  grid-area: text;
  text-align: start;
}

.hero-title {
  font-size: clamp(2.5rem, 4.2vw, 1.5rem);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 16px;
  color: var(--white);
  text-align: start;
}
.hero-title p {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  padding: 20px 0px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.72;
  font-weight: 400;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
  align-items: center;
}
.hero-videos {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;
}
.hero-video-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 60px rgba(124, 58, 237, 0.18);
  flex: 0 0 auto;
  width: clamp(155px, 16.5vw, 210px);
  animation: phone-float 6s ease-in-out infinite;
}
.hero-video-card:nth-child(2) {
  animation-delay: 1s;
  margin-top: 72px;
}
@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.hero-video-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  display: block;
}
.hero-video-glow {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.15) 0%,
    transparent 45%
  );
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-layout {
    gap: 48px;
  }
  .hero-video-card {
    width: clamp(140px, 18vw, 190px);
  }
}
@media (max-width: 860px) {
  #hero {
    padding: 88px 0 56px;
    min-height: auto;
  }
  .hero-layout {
    grid-template-areas: "title" "videos" "text";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    row-gap: 28px;
    column-gap: 0;
  }
  .hero-videos {
    justify-content: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-tag,
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-video-card {
    width: clamp(140px, 35vw, 180px);
  }
  .hero-video-card:nth-child(2) {
    margin-top: 64px;
  }
}
@media (max-width: 600px) {
  #hero {
    padding: 48px 0 48px;
  }
  .hero-title {
    font-size: clamp(1rem, 4vw, 1.5rem);
    letter-spacing: -0.025em;
    line-height: 1;
    text-align: center;
  }
  .hero-title p {
    font-size: clamp(0.5rem, 4vw, 1.2rem);
    font-weight: 200;
    line-height: 1.5;
    padding: 10px 0px;
  }
  .hero-tag {
    font-size: 0.78rem;
    padding: 7px 13px;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 0.82rem;
    margin-bottom: 22px;
    line-height: 1.62;
  }
  .hero-video-card {
    width: clamp(130px, 37vw, 165px);
  }
  .hero-video-card:nth-child(2) {
    margin-top: 50px;
  }
}
@media (max-width: 400px) {
  .hero-title {
    font-size: clamp(0.8rem, 4vw, 1rem);
    font-weight: 800;
    word-spacing: 4px;
    text-align: center;
  }
  .hero-title p {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.5;
    padding: 10px 0px;
  }
  .hero-video-card {
    width: clamp(115px, 33vw, 145px);
  }
  .hero-video-card:nth-child(2) {
    margin-top: 42px;
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--accent2);
  border-radius: 50%;
}

/* ── SECTIONS ── */
.section {
  padding: 48px 0;
}
.section-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 480px;
}
.section-header {
  margin-bottom: 36px;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s,
    box-shadow 0.3s;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: #7c3aed44;
  box-shadow: 0 20px 40px #7c3aed15;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed22, #a855f722);
  border: 1px solid #7c3aed33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
#howto {
  background: var(--surface);
}
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px #7c3aed18;
  max-width: 820px;
  margin: 0 auto;
}
.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff000022;
  border: 1px solid #ff000044;
  color: #ff6b6b;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── COMPARE ── */
#compare {
  background: var(--surface);
}
.compare-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) {
  .compare-layout {
    grid-template-columns: 1fr;
  }
}
.compare-img {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-img img {
  width: 100%;
  display: block;
}
.compare-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-card {
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.compare-card.bad {
  background: #1a1a1f;
  border: 1px solid #3a1a1a;
}
.compare-card.good {
  background: #0f1a2e;
  border: 1px solid #1a3a6a;
}
.compare-card.good::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, #7c3aed11, transparent 60%);
  pointer-events: none;
}
.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.compare-label.bad-label {
  background: #3a1a1a;
  color: #f87171;
}
.compare-label.good-label {
  background: #1a3a2a;
  color: #4ade80;
}
.compare-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--muted);
}

/* ── ANIMATED BORDER BUTTONS ── */
@property --bangle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes border-spin {
  to {
    --bangle: 360deg;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 4px 20px var(--glow);
  background:
    linear-gradient(135deg, var(--accent), var(--accent2)) padding-box,
    conic-gradient(
        from var(--bangle),
        #7c3aed 0%,
        #a855f7 5%,
        transparent 10%,
        transparent 78%,
        rgba(255, 255, 255, 0.85) 83%,
        #c084fc 86%,
        transparent 91%
      )
      border-box;
  border: 2px solid transparent;
  animation: border-spin 2.8s linear infinite;
}
.btn-primary::before {
  display: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px var(--glow);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 4px 24px var(--glow);
  background:
    linear-gradient(135deg, var(--accent), var(--accent2)) padding-box,
    conic-gradient(
        from var(--bangle),
        #7c3aed 0%,
        #a855f7 5%,
        transparent 10%,
        transparent 78%,
        rgba(255, 255, 255, 0.85) 83%,
        #c084fc 86%,
        transparent 91%
      )
      border-box;
  border: 2px solid transparent;
  animation: border-spin 2.8s linear infinite;
  animation-delay: -1.4s;
}
.btn-buy::before {
  display: none;
}
.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--glow);
}
.btn-buy span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  transition:
    transform 0.25s,
    background 0.25s;
  background:
    #0d0d0f00 padding-box,
    conic-gradient(
        from var(--bangle),
        var(--border) 0%,
        var(--border) 74%,
        var(--accent2) 81%,
        rgba(255, 255, 255, 0.5) 84%,
        var(--accent2) 87%,
        var(--border) 94%
      )
      border-box;
  border: 1.5px solid transparent;
  animation: border-spin 4.5s linear infinite;
  animation-delay: -0.9s;
}
.btn-secondary:hover {
  background:
    #7c3aed14 padding-box,
    conic-gradient(
        from var(--bangle),
        var(--accent) 0%,
        var(--accent2) 8%,
        transparent 14%,
        transparent 74%,
        rgba(255, 255, 255, 0.85) 82%,
        var(--accent2) 86%,
        transparent 92%
      )
      border-box;
  transform: translateY(-2px);
}

/* ── HERO BUTTONS MOBILE ── */
@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
  }
  .hero-buttons .btn-primary {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 11px 16px;
  }
  .hero-buttons .btn-secondary {
    background: none;
    border: none;
    animation: none;
    font-size: 0.76rem;
    padding: 12px 10px;
    flex: 0 0 auto;
    white-space: nowrap;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    box-shadow: none;
    transform: none;
  }
  .hero-buttons .btn-secondary:hover {
    background: none !important;
    transform: none;
    color: var(--accent2);
  }
}

/* ── TESTIMONIALS GRID ── */
#testimonials {
  background: var(--bg);
}
.tcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .tcard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .tcard-grid {
    grid-template-columns: 1fr;
  }
}
.tcard-grid .tcard {
  opacity: 1;
  max-height: none;
  padding: 20px;
  margin-bottom: 0;
  transform: none;
  overflow: visible;
}

/* ── TCARD BASE ── */
.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  padding: 0 16px;
  margin-bottom: 0;
  transform: translateX(50px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    margin-bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s;
  position: relative;
  will-change: transform, opacity, max-height;
}
.tcard.visible {
  opacity: 1;
  overflow: visible;
  max-height: 160px;
  padding: 12px 16px;
  margin-bottom: 8px;
  transform: translateX(0);
}
.tcard.hiding {
  opacity: 0;
  max-height: 0;
  padding: 0 16px;
  margin-bottom: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.35s ease,
    padding 0.35s,
    margin-bottom 0.35s;
}
.tcard:hover {
  border-color: #7c3aed55;
}
.tcard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.tcard-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: white;
}
.tcard-name {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}
.tcard-handle {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 1px;
}
.tcard-platform {
  margin-left: auto;
  color: var(--muted);
  opacity: 0.5;
  flex-shrink: 0;
}
.tcard-text {
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.tcard-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.tcard-reaction {
  font-size: 0.73rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 3px;
  background: #ffffff09;
  padding: 2px 8px;
  border-radius: 100px;
}
.tcard-time {
  font-size: 0.65rem;
  color: var(--muted);
  margin-left: auto;
}
.tcard-badge {
  position: absolute;
  top: -8px;
  right: 14px;
  background: var(--accent);
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px var(--glow);
}
@media (max-width: 600px) {
  .tcard {
    padding: 12px 14px;
  }
}

/* ── PRICING ── */
#pricing {
  background: var(--surface);
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }
}
.pricing-card {
  background: var(--card);
  border: 1px solid #7c3aed55;
  border-radius: 24px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px #7c3aed18;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), #c084fc);
}
.pricing-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #7c3aed22, transparent 70%);
  top: -100px;
  right: -80px;
  pointer-events: none;
}
.pricing-tag {
  margin-bottom: 20px;
}
.pricing-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}
.pricing-currency {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 10px;
  color: var(--muted);
}
.pricing-amount {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.pricing-once {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.pricing-check {
  color: #4ade80;
  flex-shrink: 0;
}
.pricing-guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
}

.pricing-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pricing-logo {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px #7c3aed33;
}
.pricing-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-video-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  width: 100%;
  box-shadow: 0 10px 40px #00000044;
}
.checkout-video-wrap video {
  width: 100%;
  display: block;
}
.pricing-visual-text {
  text-align: center;
}
.pricing-visual-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.pricing-visual-text p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open {
  border-color: #7c3aed55;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  user-select: none;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--accent2);
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #7c3aed22;
  border: 1px solid #7c3aed33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  color: var(--accent2);
  transition:
    background 0.25s,
    transform 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 22px 18px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}
footer a {
  color: var(--accent2);
  text-decoration: none;
}
.footer-logo {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.footer-logo span {
  color: var(--accent2);
}

/* ── WHATSAPP BUTTON ── */
.wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px #25d36655;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  animation: wa-pop 0.5s 0.5s both;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px #25d36688;
}
@keyframes wa-pop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ── COMPAT CARDS ── */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.compat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.compat-card:hover {
  transform: translateY(-3px);
  border-color: #7c3aed44;
}
.compat-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.compat-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.compat-info p {
  font-size: 0.72rem;
  color: var(--muted);
}
.compat-check {
  margin-left: auto;
  color: #4ade80;
  font-size: 1.1rem;
}

/* ── CTA FINAL ── */
#cta-final {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}

/* ── HOWTO 2-COLUMN ── */
.howto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 28px;
}
@media (max-width: 860px) {
  .howto-layout {
    grid-template-columns: 1fr;
  }
}
.howto-layout .video-wrapper {
  max-width: none;
  margin: 0;
}
.howto-proof {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.howto-proof p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── AWARD BADGE ── */
.award-badge-wrap {
  display: block;
  width: 100%;
  max-width: 340px;
  cursor: pointer;
  user-select: none;
}
.award-badge-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px #7c3aed44);
}
.award-badge-3d {
  transition: transform 200ms ease-out;
}

@keyframes ab-ov1 {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes ab-ov2 {
  0%,
  100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(20deg);
  }
}
@keyframes ab-ov3 {
  0%,
  100% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(30deg);
  }
}
@keyframes ab-ov4 {
  0%,
  100% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(40deg);
  }
}
@keyframes ab-ov5 {
  0%,
  100% {
    transform: rotate(40deg);
  }
  50% {
    transform: rotate(50deg);
  }
}
@keyframes ab-ov6 {
  0%,
  100% {
    transform: rotate(50deg);
  }
  50% {
    transform: rotate(60deg);
  }
}
@keyframes ab-ov7 {
  0%,
  100% {
    transform: rotate(60deg);
  }
  50% {
    transform: rotate(70deg);
  }
}
@keyframes ab-ov8 {
  0%,
  100% {
    transform: rotate(80deg);
  }
  50% {
    transform: rotate(90deg);
  }
}

.ab-ov1 {
  transform-origin: center;
  animation: ab-ov1 5s ease-in-out infinite;
}
.ab-ov2 {
  transform-origin: center;
  animation: ab-ov2 5s ease-in-out infinite;
}
.ab-ov3 {
  transform-origin: center;
  animation: ab-ov3 5s ease-in-out infinite;
}
.ab-ov4 {
  transform-origin: center;
  animation: ab-ov4 5s ease-in-out infinite;
}
.ab-ov5 {
  transform-origin: center;
  animation: ab-ov5 5s ease-in-out infinite;
}
.ab-ov6 {
  transform-origin: center;
  animation: ab-ov6 5s ease-in-out infinite;
}
.ab-ov7 {
  transform-origin: center;
  animation: ab-ov7 5s ease-in-out infinite;
}
.ab-ov8 {
  transform-origin: center;
  animation: ab-ov8 5s ease-in-out infinite;
}

/* ── RESPONSIVE GLOBAL ── */
@media (max-width: 900px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 48px 0;
  }
  .pricing-card {
    padding: 32px 24px;
  }
}

/* ── ANTI-OVERFLOW MOBILE ── */
@media (max-width: 860px) {
  .reveal-left {
    transform: translateY(40px);
  }
  .reveal-right {
    transform: translateY(40px);
  }
  .reveal-left.visible,
  .reveal-right.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 370px) {
  .hero-buttons {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: auto;
  }
}
