/* ════════════════════════════════════════════════════════════════════════════════════════
   FINANCEAI v8.2 — STYLE.CSS (COMPLETO E MOBILE OTIMIZADO)
   Design: Dark Premium · Glassmorphism · Kinetic Cards
   Fonts: Manrope · Plus Jakarta Sans · JetBrains Mono
   ════════════════════════════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════════════════════════════
   01. RESET & BASE
   ════════════════════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg0);
  color: var(--txt);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg0);
}

::-webkit-scrollbar-thumb {
  background: var(--bg5);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Selection */
::selection {
  background: rgba(59, 130, 246, 0.32);
  color: var(--txt);
}

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
  opacity: 0.2;
  mix-blend-mode: overlay;
  touch-action: none;
}

/* Canvas */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
  max-width: 100vw;
  max-height: 100vh;
}

/* Container */
.container {
  width: 100%;
  max-width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  overflow-x: clip;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   02. CUSTOM PROPERTIES
   ════════════════════════════════════════════════════════════════════════════════════════ */

:root {
  /* Backgrounds */
  --bg0: #050810;
  --bg1: #080d1a;
  --bg2: #0d1425;
  --bg3: #111b30;
  --bg4: #162038;
  --bg5: #1c2948;
  --glass: rgba(13, 20, 37, 0.82);

  /* Borders */
  --line: rgba(255, 255, 255, 0.055);
  --line2: rgba(255, 255, 255, 0.10);
  --line3: rgba(255, 255, 255, 0.18);

  /* Text */
  --txt: #f0f4ff;
  --txt2: #8899bb;
  --txt3: #4a5a7a;

  /* Accent palette */
  --accent: #3b82f6;
  --accent2: #2563eb;
  --accent3: #1d4ed8;
  --cyan: #06b6d4;
  --green: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;
  --purple: #8b5cf6;
  --pink: #ec4899;

  /* Radii */
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-card-lg: 0 20px 60px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.18);
  --shadow-glow-lg: 0 0 80px rgba(59, 130, 246, 0.28);

  /* Fonts */
  --font-head: 'Manrope', 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --nav-h: 72px;
  --container: 1200px;
  --sec-py: clamp(72px, 10vw, 120px);

  /* Logo */
  --logo-size-nav: 48px;
  --logo-size-nav-mobile: 40px;
  --logo-size-nav-small: 36px;
  --logo-size-footer: 40px;
  --logo-size-footer-mobile: 36px;
  --logo-gap-nav: 12px;
  --logo-gap-footer: 10px;
  --logo-shadow-color: rgba(59, 130, 246, 0.3);
  --logo-shadow-hover: rgba(59, 130, 246, 0.5);
  --logo-shadow-intense: rgba(59, 130, 246, 0.6);
  --logo-animation-duration: 3s;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   03. KEYFRAMES LIBRARY
   ════════════════════════════════════════════════════════════════════════════════════════ */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.04);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.97);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

@keyframes pulseDotAccent {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 8px var(--logo-shadow-color));
  }
  50% {
    filter: drop-shadow(0 0 16px var(--logo-shadow-intense));
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.015);
  }
}

@keyframes playBtnPulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4), 0 0 0 0 rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.6), 0 0 0 20px rgba(59, 130, 246, 0);
  }
}

@keyframes badgeBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes btnShine {
  0% {
    left: -100%;
  }
  60%,
  100% {
    left: 100%;
  }
}

@keyframes scanLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes textShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes txSlideIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes txNew {
  0% {
    background: rgba(59, 130, 246, 0.16);
  }
  100% {
    background: var(--bg3);
  }
}

@keyframes counterTrack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes saveBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 5px var(--logo-shadow-color));
  }
  25% {
    filter: drop-shadow(2px 2px 15px var(--logo-shadow-hover));
  }
  50% {
    filter: drop-shadow(0 0 20px var(--logo-shadow-intense));
  }
  75% {
    filter: drop-shadow(-2px -2px 15px var(--logo-shadow-hover));
  }
  100% {
    filter: drop-shadow(0 0 5px var(--logo-shadow-color));
  }
}

@keyframes logoSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes videoBorderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes videoOrb {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   04. UTILITY CLASSES
   ════════════════════════════════════════════════════════════════════════════════════════ */

.text-green {
  color: var(--green) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-blue {
  color: var(--accent) !important;
}

.text-amber {
  color: var(--amber) !important;
}

.text-cyan {
  color: var(--cyan) !important;
}

.text-purple {
  color: var(--purple) !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseDotAccent 2s ease-in-out infinite;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--txt2);
  line-height: 1.75;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

.reveal.rd1 {
  transition-delay: 0.08s;
}

.reveal.rd2 {
  transition-delay: 0.16s;
}

.reveal.rd3 {
  transition-delay: 0.24s;
}

.reveal.rd4 {
  transition-delay: 0.32s;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   05. NAVEGAÇÃO
   ════════════════════════════════════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(16px, 4vw, 48px);
  background: rgba(5, 8, 16, 0.65);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s;
  width: 100%;
}

nav.scrolled {
  background: rgba(5, 8, 16, 0.96);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--txt2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--txt);
  background: var(--line);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.38);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.58) !important;
}

section[id] {
  scroll-margin-top: calc(var(--nav-h) + 8px);
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   06. HERO SECTION
   ════════════════════════════════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(32px, 6vw, 64px));
  padding-bottom: clamp(40px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
  will-change: transform;
  contain: layout style;
}

.orb-1 {
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  top: -150px;
  right: -80px;
}

.orb-2 {
  width: clamp(150px, 28vw, 350px);
  height: clamp(150px, 28vw, 350px);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  animation-delay: -3s;
}

.orb-3 {
  width: clamp(100px, 20vw, 250px);
  height: clamp(100px, 20vw, 250px);
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -6s;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
  animation: fadeInDown 0.6s ease both;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-h1 .line2 {
  background: linear-gradient(135deg, var(--accent), var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: textShimmer 4s ease-in-out infinite, fadeInUp 0.7s ease 0.1s both;
}

.hero-p {
  font-size: clamp(0.92rem, 1.5vw, 1.1rem);
  line-height: 1.72;
  color: var(--txt2);
  margin-bottom: 28px;
  max-width: 460px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-price-card {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-shadow: var(--shadow-card);
}

.hero-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--green));
  animation: scanLine 3s linear infinite;
}

.hpc-badge {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.73rem;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hpc-old {
  text-decoration: line-through;
  color: var(--txt3);
  font-size: 0.83rem;
}

.hpc-price-group {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hpc-cur {
  color: var(--txt2);
  font-size: 1rem;
}

.hpc-main {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green);
  line-height: 1;
}

.hpc-dec {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green);
}

.hpc-period {
  font-size: 0.74rem;
  color: var(--txt3);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: var(--r-lg);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 340px;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  align-self: flex-start;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: btnShine 2.5s ease-in-out infinite;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(59, 130, 246, 0.6);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--txt3);
}

/* Hero Phone */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.9s ease 0.2s both;
}

.phone-rings {
  position: absolute;
  width: clamp(260px, 32vw, 380px);
  height: clamp(260px, 32vw, 380px);
  overflow: hidden;
  pointer-events: none;
}

.phone-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid;
}

.phone-ring:nth-child(1) {
  border-color: rgba(59, 130, 246, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}

.phone-ring:nth-child(2) {
  border-color: rgba(59, 130, 246, 0.12);
  transform: scale(1.15);
  animation: ringPulse 3s ease-in-out infinite -1s;
}

.phone-ring:nth-child(3) {
  border-color: rgba(59, 130, 246, 0.07);
  transform: scale(1.3);
  animation: ringPulse 3s ease-in-out infinite -2s;
}

.phone-wrap {
  position: relative;
  z-index: 2;
  animation: phoneFloat 6s ease-in-out infinite;
  contain: layout;
}

.phone-main {
  width: clamp(200px, 22vw, 260px);
  background: var(--bg2);
  border-radius: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.phone-notch {
  width: 80px;
  height: 28px;
  background: var(--bg0);
  border-radius: 0 0 18px 18px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-notch-camera {
  width: 10px;
  height: 10px;
  background: #1a2540;
  border-radius: 50%;
  border: 2px solid #0d1425;
}

.phone-notch-speaker {
  width: 32px;
  height: 4px;
  background: #1a2540;
  border-radius: 2px;
}

.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.ps-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
}

.ps-logo em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ps-month {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--txt3);
}

.ps-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.ps-kpi {
  padding: 8px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--line);
}

.ps-kpi-l {
  font-size: 0.58rem;
  color: var(--txt3);
  margin-bottom: 2px;
}

.ps-kpi-v {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
}

.ps-chart-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-bottom: 12px;
}

.ps-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
}

.ps-txs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ps-tx {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ps-tx-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.ps-tx-info {
  flex: 1;
  min-width: 0;
}

.ps-tx-name {
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ps-tx-cat {
  font-size: 0.57rem;
  color: var(--txt3);
}

.ps-tx-val {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   07. COUNTER STRIP
   ════════════════════════════════════════════════════════════════════════════════════════ */

.counter-strip {
  background: var(--bg1);
  border-block: 1px solid var(--line);
  padding: 13px 0;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.counter-strip::before,
.counter-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.counter-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg1), transparent);
}

.counter-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg1), transparent);
}

.counter-track {
  display: inline-flex;
  white-space: nowrap;
  animation: counterTrack 22s linear infinite;
  min-width: 200%;
  will-change: transform;
  contain: layout style;
}

.counter-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--txt2);
  white-space: nowrap;
}

.counter-item .val {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 700;
}

.counter-item .dot {
  width: 4px;
  height: 4px;
  background: var(--line2);
  border-radius: 50%;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   08. VIDEO SECTION
   ════════════════════════════════════════════════════════════════════════════════════════ */

.video-section {
  padding-block: var(--sec-py);
  background: var(--bg1);
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 70vw, 900px);
  height: clamp(200px, 40vw, 500px);
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.09) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: videoOrb 8s ease-in-out infinite;
}

.video-section-inner {
  text-align: center;
}

.video-wrapper {
  position: relative;
  max-width: 960px;
  margin: 52px auto 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg2);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.4s;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.18), 0 0 0 4px rgba(59, 130, 246, 0.06), 0 40px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(59, 130, 246, 0.1);
}

.video-wrapper:hover {
  transform: scale(1.012);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.35), 0 0 0 6px rgba(59, 130, 246, 0.1), 0 50px 100px rgba(0, 0, 0, 0.75),
    0 0 100px rgba(59, 130, 246, 0.2);
}

.video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--purple), var(--green));
  z-index: 4;
  animation: scanLine 4s linear infinite;
}

.video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 8, 16, 0.3) 0%, transparent 15%, transparent 85%, rgba(5, 8, 16, 0.3) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(5, 8, 16, 0.5) 100%);
  pointer-events: none;
  z-index: 3;
}

.video-corner-tl,
.video-corner-tr,
.video-corner-bl,
.video-corner-br {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 5;
  pointer-events: none;
}

.video-corner-tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 4px 0 0 0;
}

.video-corner-tr {
  top: 12px;
  right: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 4px 0 0;
}

.video-corner-bl {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 0 0 0 4px;
}

.video-corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 0 4px 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(8, 13, 26, 0.97) 0%, rgba(13, 20, 37, 0.98) 50%, rgba(17, 27, 48, 0.97) 100%);
  gap: 0;
  z-index: 2;
  transition: opacity 0.3s;
}

.video-wrapper.has-video .video-placeholder {
  display: none;
}

.video-placeholder-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.video-placeholder-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: videoOrb 5s ease-in-out infinite;
}

.video-placeholder-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.video-play-btn {
  position: relative;
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4), 0 0 40px rgba(59, 130, 246, 0.4), 0 0 80px rgba(139, 92, 246, 0.2);
  animation: playBtnPulse 2.5s ease-in-out infinite;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(59, 130, 246, 0.12), 0 0 60px rgba(59, 130, 246, 0.6), 0 0 100px rgba(139, 92, 246, 0.3);
}

.video-play-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.25);
  animation: ringPulse 2s ease-in-out infinite;
}

.video-play-ring-2 {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.12);
  animation: ringPulse 2s ease-in-out infinite 0.5s;
}

.video-placeholder-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--txt);
  text-align: center;
  letter-spacing: -0.01em;
}

.video-placeholder-hint {
  font-size: 0.78rem;
  color: var(--txt3);
  font-family: var(--font-mono);
  text-align: center;
}

.video-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  margin-top: 32px;
  flex-wrap: wrap;
}

.video-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-stat-icon {
  width: 38px;
  height: 38px;
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.video-stat-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--txt);
  line-height: 1.2;
}

.video-stat-label {
  font-size: 0.72rem;
  color: var(--txt3);
  line-height: 1.2;
}

.video-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(13, 20, 37, 0.92);
  border: 1px solid var(--line2);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--txt);
  z-index: 5;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.video-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.video-tag.tag-live {
  top: 18px;
  left: 18px;
}

.video-tag.tag-duration {
  top: 18px;
  right: 55px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.video-instructions {
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px dashed rgba(59, 130, 246, 0.24);
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--txt3);
  font-family: var(--font-mono);
  display: inline-block;
}

.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   09. SCREENSHOTS SECTION
   ════════════════════════════════════════════════════════════════════════════════════════ */

.screenshots-section {
  padding-block: var(--sec-py);
  overflow: hidden;
}

.sc-outer {
  margin-top: 48px;
}

.sc-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.sc-tab {
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid var(--line2);
  background: var(--bg2);
  color: var(--txt2);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sc-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.32);
}

.sc-stage {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}

.sc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg2);
  cursor: pointer;
  transition: all 0.2s;
}

.sc-list-item:hover {
  border-color: var(--line2);
  background: var(--bg3);
}

.sc-list-item.active {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.08);
}

.sc-list-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sc-list-text {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--txt2);
}

.sc-list-item.active .sc-list-text {
  color: var(--accent);
}

.sc-display {
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--bg2);
  overflow: hidden;
  position: relative;
  min-height: 340px;
}

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

.sc-placeholder {
  width: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
}

.sc-ph-icon {
  font-size: 3.5rem;
  opacity: 0.5;
}

.sc-ph-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--txt);
}

.sc-ph-cap {
  font-size: 0.85rem;
  color: var(--txt2);
  text-align: center;
  max-width: 260px;
}

.sc-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(5, 8, 16, 0.95) 0%, transparent 100%);
  font-size: 0.85rem;
  color: var(--txt2);
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   10. TRIAL SECTION (FORM + SIMULATOR)
   ════════════════════════════════════════════════════════════════════════════════════════ */

.trial-section {
  padding-block: var(--sec-py);
  background: var(--bg0);
  scroll-margin-top: var(--nav-h);
}

.trial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

/* Form Card */
.form-card {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
  box-sizing: border-box;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--green));
}

.form-card::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  margin: 12px 0 8px;
}

.form-subtitle {
  color: var(--txt2);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 8px;
}

.required {
  color: var(--red);
}

.input-wrapper {
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid var(--line2);
  border-radius: var(--r);
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.25s;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  background: var(--bg4);
}

.form-group input::placeholder {
  color: var(--txt3);
}

.input-hint {
  font-size: 0.73rem;
  color: var(--txt3);
  margin-top: 4px;
  display: block;
}

.terms-group {
  margin: 20px 0 28px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--bg3);
  border: 1.5px solid var(--line2);
  border-radius: 5px;
  margin-top: 2px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '✓';
  color: white;
}

.checkbox-text {
  font-size: 0.8rem;
  color: var(--txt2);
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--accent);
  text-decoration: none;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  border-radius: var(--r);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: btnShine 2.5s ease-in-out infinite;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--r);
  font-size: 0.85rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--green);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--red);
}

.form-footer {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--txt3);
}

/* Simulator */
.simulator-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
  width: 100%;
}

.simulator-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sim-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
}

.sim-ring:nth-child(1) {
  width: 280px;
  height: 280px;
  border-color: rgba(59, 130, 246, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.sim-ring:nth-child(2) {
  width: 340px;
  height: 340px;
  border-color: rgba(59, 130, 246, 0.08);
  animation: ringPulse 4s ease-in-out infinite -1.5s;
}

.simulator-phone {
  width: min(300px, 85vw);
  background: var(--bg2);
  border-radius: 44px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 50px 100px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
  animation: phoneFloat 6s ease-in-out infinite;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--bg0);
}

.screen-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg0);
  z-index: 3;
  font-size: 1.5rem;
}

.app-iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.5s;
  position: absolute;
  inset: 0;
}

.app-iframe.loaded {
  opacity: 1;
}

.phone-home-bar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  flex-shrink: 0;
}

.phone-home-bar::after {
  content: '';
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.simulator-status {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 3;
  flex-shrink: 0;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--txt2);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.simulator-badge {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  animation: badgeBounce 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   11. DEMO CARDS SECTION (CORRIGIDO)
   ════════════════════════════════════════════════════════════════════════════════════════ */

.live-demo {
  padding-block: var(--sec-py);
  background: var(--bg1);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.demo-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.demo-tabs {
  display: flex;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 5px;
  flex-wrap: wrap;
}

.demo-tab {
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--txt2);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.demo-tab.active {
  background: var(--accent);
  color: white;
  font-weight: 600;
}

.demo-tab:hover:not(.active) {
  color: var(--txt);
  background: var(--line);
}

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

.demo-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.demo-card.wide {
  grid-column: span 2;
}

.demo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.demo-card:hover {
  border-color: var(--line2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.dc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.dc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.dc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}

.dc-subtitle {
  font-size: 0.75rem;
  color: var(--txt3);
}

.dc-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  white-space: nowrap;
}

.badge-live {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-live-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.badge-ai {
  background: rgba(139, 92, 246, 0.12);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-hot {
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-new {
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.dc-body {
  padding: 16px 20px;
  width: 100%;
  flex: 1;
}

.dc-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.dc-kpi {
  background: var(--bg3);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
}

.dc-kpi:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.dc-kpi-label {
  font-size: 0.7rem;
  color: var(--txt3);
  margin-bottom: 4px;
}

.dc-kpi-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  transition: all 0.5s;
}

.dc-kpi-trend {
  font-size: 0.65rem;
  color: var(--txt3);
}

.dc-spark {
  height: 20px;
  margin-top: 6px;
}

.dc-tx-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dc-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: var(--bg3);
  border-radius: 8px;
  border: 1px solid var(--line);
  animation: txSlideIn 0.4s ease both;
}

.dc-tx-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.dc-tx-info {
  flex: 1;
  min-width: 0;
}

.dc-tx-name {
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dc-tx-cat {
  font-size: 0.65rem;
  color: var(--txt3);
}

.dc-tx-val {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dc-tx-new {
  animation: txNew 0.5s ease;
}

.dc-donut-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dc-donut-svg {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.dc-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.dc-leg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 0.75rem;
  animation: fadeInUp 0.4s ease both;
}

.dc-leg-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.dc-leg-name {
  flex: 1;
  color: var(--txt2);
  min-width: 0;
}

.dc-leg-val {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.7rem;
}

.dc-form-demo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dc-type-row {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.dc-type-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg3);
  color: var(--txt2);
  border: 1px solid var(--line);
}

.dc-type-btn.active-e {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--red);
}

.dc-type-btn.active-i {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--green);
}

.dc-input-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: var(--bg3);
  border-radius: 7px;
  border: 1px solid var(--line);
}

.dc-input-label {
  font-size: 0.7rem;
  color: var(--txt3);
}

.dc-input-val {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.dc-cursor {
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--accent);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

.dc-save-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.dc-save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.dc-save-btn.saving {
  animation: saveBounce 0.4s ease;
}

.dc-ai-overview {
  background: var(--bg3);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}

.dc-ai-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dc-ai-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--txt2);
}

.dc-ai-score {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dc-ai-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dc-ai-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--txt2);
  padding: 3px 0;
  border-bottom: 1px solid var(--line);
}

.dc-ai-row:last-child {
  border-bottom: none;
}

.dc-ai-val {
  font-weight: 600;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.dc-recs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dc-rec {
  padding: 10px;
  border-radius: 8px;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-left: 3px solid;
}

.dc-rec-t {
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.dc-rec-d {
  font-size: 0.72rem;
  color: var(--txt3);
}

.dc-calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.dc-calc-field {
  background: var(--bg3);
  border-radius: 8px;
  padding: 8px;
  border: 1px solid var(--line);
}

.dc-calc-label {
  font-size: 0.65rem;
  color: var(--txt3);
  margin-bottom: 2px;
}

.dc-calc-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.4s;
}

.dc-result-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  text-align: center;
}

.dc-res-label {
  font-size: 0.65rem;
  color: var(--txt3);
  margin-bottom: 2px;
}

.dc-res-main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  transition: all 0.5s;
}

.dc-res-row {
  display: flex;
  justify-content: space-around;
}

.dc-res-item {
  text-align: center;
}

.dc-res-item-label {
  font-size: 0.6rem;
  color: var(--txt3);
}

.dc-res-item-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  transition: all 0.4s;
}

.dc-mini-line {
  height: 40px;
}

.dc-mini-line svg {
  width: 100%;
  height: 100%;
}

.dc-monthly-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  margin-bottom: 8px;
}

.dc-month-group {
  flex: 1;
  display: flex;
  gap: 2px;
  align-items: flex-end;
}

.dc-month-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease, opacity 0.3s;
  cursor: pointer;
}

.dc-month-bar:hover {
  opacity: 0.8;
}

.dc-monthly-legend {
  display: flex;
  gap: 16px;
}

.dc-monthly-leg-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--txt3);
}

.dc-month-labels {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.dc-month-label {
  flex: 1;
  text-align: center;
  font-size: 0.6rem;
  color: var(--txt3);
  font-family: var(--font-mono);
}

.dc-metas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dc-meta {
  background: var(--bg3);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid var(--line);
}

.dc-meta-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.dc-meta-name {
  font-size: 0.78rem;
  font-weight: 600;
}

.dc-meta-pct {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.dc-meta-bar {
  height: 5px;
  background: var(--bg4);
  border-radius: 3px;
  overflow: hidden;
}

.dc-meta-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.dc-meta-info {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 0.65rem;
  color: var(--txt3);
  font-family: var(--font-mono);
}

.dc-payment-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dc-pay-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: var(--bg3);
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: all 0.3s;
}

.dc-pay-row:hover {
  border-color: var(--line2);
  transform: translateX(4px);
}

.dc-pay-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.dc-pay-name {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 500;
  min-width: 0;
}

.dc-pay-bar-wrap {
  width: 80px;
  flex-shrink: 0;
}

.dc-pay-bar {
  height: 4px;
  border-radius: 2px;
  transition: width 1s ease;
}

.dc-pay-pct {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--txt3);
  min-width: 35px;
  text-align: right;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   12. BENEFITS SECTION
   ════════════════════════════════════════════════════════════════════════════════════════ */

.benefits {
  padding-block: var(--sec-py);
  background: var(--bg0);
  border-top: 1px solid var(--line);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-7px);
}

.ben-b:hover {
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.ben-g:hover {
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.ben-p:hover {
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.ben-c:hover {
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
}

.ben-a:hover {
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

.ben-r:hover {
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.12) rotate(6deg);
}

.benefit-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.93rem;
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 0.81rem;
  color: var(--txt2);
  line-height: 1.63;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   13. PRICING SECTION
   ════════════════════════════════════════════════════════════════════════════════════════ */

.pricing {
  padding-block: var(--sec-py);
  background: var(--bg1);
  border-top: 1px solid var(--line);
}

.pricing-wrapper {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
}

.pricing-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
  overflow: hidden;
  border-radius: 999px;
}

.pricing-card {
  background: var(--bg2);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--purple), var(--green));
  animation: scanLine 4.5s linear infinite;
}

.pricing-top {
  padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 40px);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(99, 102, 241, 0.04));
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.pricing-plan {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--txt2);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pr-cur {
  color: var(--txt2);
  font-size: 1.2rem;
}

.pr-int {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--green);
  line-height: 1;
}

.pr-dec {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--green);
}

.pr-period {
  font-size: 0.83rem;
  color: var(--txt3);
  margin-top: 7px;
}

.pr-old {
  font-size: 0.83rem;
  color: var(--txt3);
  text-decoration: line-through;
  margin-top: 3px;
}

.pricing-feats {
  padding: clamp(20px, 3vw, 32px) clamp(20px, 4vw, 40px);
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 26px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--txt2);
  transition: color 0.2s, transform 0.2s;
}

.feat-item:hover {
  color: var(--txt);
  transform: translateX(3px);
}

.feat-check {
  width: 17px;
  height: 17px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 0.67rem;
  flex-shrink: 0;
}

.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: var(--r-lg);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}

.btn-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: btnShine 2.5s ease-in-out infinite;
}

.btn-pricing:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.58);
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pt-item {
  font-size: 0.78rem;
  color: var(--txt3);
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   14. COMPARE SECTION
   ════════════════════════════════════════════════════════════════════════════════════════ */

.compare {
  padding-block: var(--sec-py);
  background: var(--bg0);
  border-top: 1px solid var(--line);
}

.cmp-table {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.cmp-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.4fr 1.2fr;
  border-bottom: 1px solid var(--line);
  min-width: 480px;
  transition: background 0.2s;
}

.cmp-row:last-child {
  border-bottom: none;
}

.cmp-row:not(.head):hover {
  background: var(--bg2);
}

.cmp-row.head {
  background: var(--bg2);
}

.cmp-cell {
  padding: 13px 18px;
  font-size: 0.83rem;
  color: var(--txt2);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
}

.cmp-cell:last-child {
  border-right: none;
}

.cmp-cell.head-c {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--txt);
}

.cmp-cell.center {
  justify-content: center;
}

.cmp-cell.hl {
  background: rgba(59, 130, 246, 0.04);
}

.c-yes {
  color: var(--green);
  font-weight: 700;
  font-size: 1.05rem;
}

.c-no {
  color: var(--red);
  font-weight: 700;
  font-size: 1.05rem;
}

.c-meh {
  color: var(--amber);
  font-size: 0.73rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   15. TESTIMONIALS SECTION
   ════════════════════════════════════════════════════════════════════════════════════════ */

.testimonials {
  padding-block: var(--sec-py);
  background: var(--bg1);
  border-top: 1px solid var(--line);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.testi-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 18px;
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.055;
  font-family: var(--font-head);
  line-height: 1;
  pointer-events: none;
}

.testi-card:hover {
  border-color: rgba(59, 130, 246, 0.28);
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), var(--shadow-glow);
}

.testi-stars {
  color: var(--amber);
  font-size: 0.88rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.855rem;
  color: var(--txt2);
  line-height: 1.72;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.855rem;
}

.testi-role {
  font-size: 0.73rem;
  color: var(--txt3);
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   16. FAQ SECTION
   ════════════════════════════════════════════════════════════════════════════════════════ */

.faq {
  padding-block: var(--sec-py);
  background: var(--bg0);
  border-top: 1px solid var(--line);
}

.faq-inner {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.25s;
  background: var(--bg2);
}

.faq-item:hover {
  border-color: var(--line2);
}

.faq-item.open {
  border-color: rgba(59, 130, 246, 0.28);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
  user-select: none;
}

.faq-item.open .faq-q {
  color: var(--accent);
}

.faq-arrow {
  color: var(--txt3);
  transition: transform 0.3s;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-left: 12px;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--txt2);
  line-height: 1.72;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   17. FINAL CTA SECTION
   ════════════════════════════════════════════════════════════════════════════════════════ */

.final-cta {
  padding-block: clamp(80px, 14vw, 130px);
  background: var(--bg1);
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.fct-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.fct-accent {
  background: linear-gradient(135deg, var(--accent), var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fct-desc {
  font-size: clamp(0.92rem, 1.5vw, 1.1rem);
  color: var(--txt2);
  margin-bottom: 36px;
  max-width: 480px;
  margin-inline: auto;
}

.btn-final {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: var(--r-xl);
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: btnShine 2.5s ease-in-out infinite;
}

.btn-final:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.65);
}

.fct-hint {
  margin-top: 18px;
  font-size: 0.83rem;
  color: var(--txt3);
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   18. FOOTER
   ════════════════════════════════════════════════════════════════════════════════════════ */

footer {
  padding-block: 36px;
  background: var(--bg0);
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.footer-logo em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--txt3);
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   19. FLOAT CTA
   ════════════════════════════════════════════════════════════════════════════════════════ */

.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 100px;
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.48);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: fadeInUp 0.5s ease 2s both;
  max-width: calc(100vw - 48px);
}

.float-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 38px rgba(59, 130, 246, 0.65);
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   20. LOGO SYSTEM
   ════════════════════════════════════════════════════════════════════════════════════════ */

.nav-logo,
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--txt);
  transition: opacity 0.2s ease;
}

.nav-logo {
  gap: var(--logo-gap-nav);
}

.footer-logo {
  gap: var(--logo-gap-footer);
  justify-content: center;
}

.logo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: var(--logo-size-nav);
  height: var(--logo-size-nav);
  filter: drop-shadow(0 0 8px var(--logo-shadow-color));
  transition: filter 0.3s ease;
}

.footer-logo .logo-icon {
  width: var(--logo-size-footer);
  height: var(--logo-size-footer);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  user-select: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
  color: var(--txt);
  display: block !important;
}

.footer-logo .logo-name {
  font-size: 1.08rem;
}

.logo-name em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo:hover .logo-icon {
  filter: drop-shadow(0 0 12px var(--logo-shadow-hover));
}

.nav-logo:hover .logo-icon img {
  transform: scale(1.02);
}

.nav-logo:active .logo-icon img {
  transform: scale(0.98);
}

.logo-icon.pulse-animation {
  animation: logoPulse var(--logo-animation-duration) ease-in-out infinite;
}

.logo-icon.glow-animation {
  animation: logoGlow calc(var(--logo-animation-duration) * 1.5) ease-in-out infinite;
}

.logo-icon.spin-animation {
  animation: logoSpin calc(var(--logo-animation-duration) * 3) linear infinite;
}

nav.scrolled .logo-icon {
  filter: drop-shadow(0 0 10px var(--logo-shadow-hover));
}

.logo-icon img[src$='.ico'] {
  image-rendering: pixelated;
}

.logo-icon img:not([src]) {
  display: none;
}

.logo-icon img[src=''] {
  opacity: 0;
}

.logo-icon.plain {
  filter: none !important;
  animation: none !important;
}

.logo-icon.size-sm {
  width: 32px;
  height: 32px;
}

.logo-icon.size-md {
  width: 48px;
  height: 48px;
}

.logo-icon.size-lg {
  width: 64px;
  height: 64px;
}

.logo-icon.size-xl {
  width: 80px;
  height: 80px;
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   21. ERROR STYLES (ADICIONADO)
   ════════════════════════════════════════════════════════════════════════════════════════ */

.form-group.field-error .input-wrapper input,
.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.checkbox-label.error .checkbox-text {
  color: #ef4444;
}

.checkbox-label.error .checkbox-custom {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   22. RESPONSIVE — MOBILE-FIRST (SIMULADOR MAIOR E MAIS ALTO)
   ════════════════════════════════════════════════════════════════════════════════════════ */

/* Tablet Grande (≤1024px) */
@media (max-width: 1024px) {
  .demo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .demo-card.wide {
    grid-column: span 2;
  }

  .logo-icon {
    width: var(--logo-size-nav-mobile);
    height: var(--logo-size-nav-mobile);
  }

  .logo-name {
    font-size: 1.1rem;
  }

  /* Simulador maior no tablet */
  .simulator-phone {
    width: min(400px, 80vw) !important;
  }

  .phone-screen {
    aspect-ratio: 9/17 !important;
    min-height: 550px !important;
  }
}

/* Tablet / Mobile Grande (≤900px) */
@media (max-width: 900px) {
  nav {
    padding-inline: 20px;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-right {
    display: none;
  }

  .trial-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* SIMULADOR - MAIOR E MAIS ALTO */
  .simulator-phone {
    width: min(450px, 85vw) !important;
    margin: 0 auto !important;
  }

  .phone-screen {
    aspect-ratio: 9/16.5 !important;
    min-height: 600px !important;
  }

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-card.wide {
    grid-column: span 1;
  }

  .dc-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .demo-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding: 5px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .demo-tabs::-webkit-scrollbar {
    display: none;
  }

  .demo-tab {
    flex: 0 0 auto;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .pricing-feats {
    padding: 24px;
  }

  .pricing-top {
    padding: 24px;
  }

  .video-tag.tag-duration {
    display: none;
  }

  .video-stats {
    gap: 20px;
  }

  .nav-logo {
    gap: 10px;
  }

  .logo-icon {
    width: var(--logo-size-nav-mobile);
    height: var(--logo-size-nav-mobile);
  }

  .logo-name {
    font-size: 1rem;
  }

  .footer-logo .logo-icon {
    width: var(--logo-size-footer-mobile);
    height: var(--logo-size-footer-mobile);
  }

  .footer-logo .logo-name {
    font-size: 0.95rem;
  }
}

/* Mobile Médio (≤768px) */
@media (max-width: 768px) {
  body::after {
    display: none;
  }

  .sc-tabs {
    display: none;
  }

  .sc-stage {
    grid-template-columns: 1fr;
  }

  .sc-list {
    display: none;
  }

  .sc-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .sc-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .sc-carousel-slide {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    background: var(--bg2);
    overflow: hidden;
  }

  .sc-carousel-slide .sc-placeholder {
    min-height: 200px;
  }

  .sc-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
  }

  .sc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bg5);
    transition: all 0.25s;
  }

  .sc-dot.active {
    background: var(--accent);
    width: 18px;
    border-radius: 3px;
  }

  .video-corner-tl,
  .video-corner-tr,
  .video-corner-bl,
  .video-corner-br {
    display: none;
  }

  .video-stats {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .video-stats::-webkit-scrollbar {
    display: none;
  }

  .video-stat {
    flex: 0 0 auto;
  }

  .logo-name {
    font-size: 0.95rem;
  }

  /* SIMULADOR - MOBILE MÉDIO */
  .simulator-phone {
    width: min(420px, 90vw) !important;
  }

  .phone-screen {
    aspect-ratio: 9/16 !important;
    min-height: 580px !important;
  }
}

/* Mobile Pequeno (≤600px) */
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-price-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cmp-table {
    border-radius: var(--r);
  }

  .cmp-row {
    min-width: 480px;
  }

  .float-cta {
    bottom: 14px;
    right: 14px;
    font-size: 0.78rem;
    padding: 10px 15px;
  }

  .video-play-btn {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
  }

  .video-tag.tag-live {
    top: 12px;
    left: 12px;
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  /* SIMULADOR - MOBILE PEQUENO (MAIOR) */
  .simulator-phone {
    width: min(400px, 92vw) !important;
  }

  .phone-screen {
    aspect-ratio: 9/16 !important;
    min-height: 550px !important;
  }

  .logo-icon {
    width: var(--logo-size-nav-small);
    height: var(--logo-size-nav-small);
  }

  .nav-logo {
    gap: 8px;
  }

  .logo-name {
    font-size: 0.9rem;
  }

  .footer-logo .logo-icon {
    width: 32px;
    height: 32px;
  }
}

/* Mobile Extra Pequeno (≤480px) */
@media (max-width: 480px) {
  .demo-tabs {
    padding: 4px;
  }

  .demo-tab {
    padding: 6px 10px;
    font-size: 0.73rem;
  }

  .cmp-cell {
    padding: 10px;
    font-size: 0.78rem;
  }

  .nav-links .nav-cta {
    padding: 8px 12px !important;
    font-size: 0.8rem;
  }

  .hero-h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .form-card {
    padding: 20px;
  }

  .checkbox-text {
    font-size: 0.75rem;
  }

  .video-play-btn {
    width: 58px;
    height: 58px;
    font-size: 1.3rem;
  }

  .video-placeholder-text {
    font-size: 0.9rem;
  }

  /* SIMULADOR - EXTRA PEQUENO */
  .simulator-phone {
    width: min(360px, 94vw) !important;
  }

  .phone-screen {
    aspect-ratio: 9/16 !important;
    min-height: 500px !important;
  }

  .logo-icon {
    width: var(--logo-size-nav-small);
    height: var(--logo-size-nav-small);
  }

  .nav-logo {
    gap: 6px;
  }

  .logo-name {
    font-size: 0.85rem;
  }

  .footer-logo .logo-icon {
    width: 30px;
    height: 30px;
  }
}

/* Telas Muito Pequenas (≤360px) */
@media (max-width: 360px) {
  .logo-name {
    font-size: 0.8rem;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .nav-logo {
    gap: 4px;
  }

  /* SIMULADOR - MUITO PEQUENO */
  .simulator-phone {
    width: min(320px, 96vw) !important;
  }

  .phone-screen {
    aspect-ratio: 9/16 !important;
    min-height: 450px !important;
  }

  .video-stats {
    gap: 12px;
  }

  .video-stat-icon {
    width: 32px;
    height: 32px;
  }

  .video-stat-val {
    font-size: 0.9rem;
  }
}

/* Desktop: oculta carrossel mobile e ajusta simulador */
@media (min-width: 769px) {
  .sc-dots {
    display: none;
  }

  .sc-carousel-track {
    display: contents;
  }

  .sc-carousel-slide {
    display: none;
  }

  /* SIMULADOR - DESKTOP (MAIOR) */
  .simulator-phone {
    width: min(380px, 28vw) !important;
  }

  .phone-screen {
    aspect-ratio: 9/17 !important;
    min-height: 620px !important;
  }
}

/* Telas Grandes (≥1200px) */
@media (min-width: 1200px) {
  .simulator-phone {
    width: min(420px, 30vw) !important;
  }

  .phone-screen {
    aspect-ratio: 9/17 !important;
    min-height: 680px !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════════════════════
   23. ACCESSIBILITY & PRINT
   ════════════════════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .logo-icon,
  .logo-icon img,
  .logo-icon.pulse-animation,
  .logo-icon.glow-animation,
  .logo-icon.spin-animation {
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-contrast: high) {
  .logo-icon {
    filter: none !important;
  }

  .logo-icon img {
    filter: brightness(1.2);
  }

  .btn-hero,
  .btn-pricing,
  .btn-final,
  .nav-cta,
  .form-submit {
    border: 2px solid white;
  }
}

@media print {
  .cursor-dot,
  .cursor-ring,
  #bg-canvas,
  body::after,
  .hero-orbs,
  .phone-rings,
  .simulator-rings,
  .pricing-glow,
  .float-cta {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .logo-icon {
    filter: none !important;
    animation: none !important;
  }

  .logo-icon img {
    filter: grayscale(100%);
  }

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

  .btn-hero,
  .btn-pricing,
  .btn-final,
  .nav-cta {
    background: white !important;
    color: black !important;
    border: 1px solid black !important;
    box-shadow: none !important;
  }
}