/* Soli.ai Landing Page - Dark Mode Design System (Matching Client Platform) */

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

:root {
  /* Ultra Dark Minimalist Background System (OpenAI/Anthropic style) */
  --bg: #000000;          /* Pure black background */
  --panel: #0a0a0a;       /* Subtle panel background */
  --line: #1a1a1a;        /* Minimal border lines */

  /* Soli AI Brand Colors */
  --soli-orange: 18 100% 60%; /* #FF6B35 */
  --soli-orange-light: 18 100% 70%; /* #FF8A5B */
  --soli-orange-dark: 18 89% 55%; /* #E55A2B */
  --soli-orange-foreground: 0 0% 100%;

  --soli-blue: 215 100% 64%; /* #4A9EFF */
  --soli-blue-light: 215 100% 72%; /* #6BB6FF */
  --soli-blue-dark: 215 82% 58%; /* #3A8BE8 */
  --soli-blue-foreground: 0 0% 100%;

  --soli-navy: 216 46% 15%; /* #1A2332 */
  --soli-navy-foreground: 0 0% 98%;

  --violet: #A855F7;      /* Accent violet for depth */

  /* Minimalist Dark Mode Design System */
  --background: 0 0% 0%; /* Pure black */
  --foreground: 0 0% 98%; /* Pure white text */
  --text-muted: #707070;   /* Muted gray text */

  --card: 217.2 32.6% 17.5%; /* Cards background */
  --card-foreground: 210 40% 98%; /* Card text */

  --popover: 217.2 32.6% 17.5%;
  --popover-foreground: 210 40% 98%;

  /* Brand colors mapped to semantic tokens */
  --primary: 18 100% 60%; /* Soli Orange */
  --primary-foreground: 0 0% 100%;
  --primary-dark: 18 89% 55%;
  --primary-light: 18 100% 70%;

  --secondary: 215 100% 64%; /* Soli Blue */
  --secondary-foreground: 0 0% 100%;
  --secondary-dark: 215 82% 58%;
  --secondary-light: 215 100% 72%;

  --accent: 217.2 32.6% 17.5%; /* Subtle accent */
  --accent-foreground: 210 40% 98%;

  --muted: 217.2 32.6% 17.5%; /* Muted backgrounds */
  --muted-foreground: 215 20.2% 65.1%; /* Muted text */

  /* Utility colors */
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 210 40% 98%;
  --success: 142 71% 45%;
  --warning: 43 96% 56%;

  /* Borders and UI */
  --border: 217.2 32.6% 17.5%; /* Consistent with card */
  --input: 217.2 32.6% 17.5%;
  --ring: 18 100% 60%; /* Soli Orange focus ring */

  /* Premium Effects */
  --radius: 12px;
  --maxw: 1200px;
  --padY: 96px;
  --glow: 0 0 18px rgba(255,106,0,.25);

  /* Enhanced gradients for dark theme */
  --gradient-primary: linear-gradient(
    135deg,
    hsl(var(--soli-orange)) 0%,
    hsl(var(--soli-blue)) 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    hsl(var(--soli-orange)) 0%,
    hsl(var(--soli-blue)) 50%,
    hsl(var(--soli-navy)) 100%
  );
  --gradient-card: linear-gradient(
    135deg,
    hsl(var(--card)) 0%,
    hsl(var(--muted)) 100%
  );

  /* Dark theme shadows with premium glow */
  --shadow:
    0 4px 6px -1px hsl(0 0% 0% / 0.4), 0 2px 4px -1px hsl(0 0% 0% / 0.3);
  --shadow-lg:
    0 10px 15px -3px hsl(0 0% 0% / 0.4), 0 4px 6px -2px hsl(0 0% 0% / 0.3);
  --shadow-primary: 0 10px 25px -5px hsl(var(--primary) / 0.4);
  --shadow-glow: 0 0 20px hsl(var(--primary) / 0.3);
  --shadow-premium: 0 8px 40px rgba(0,0,0,.35);
}

/* Utility Classes */
.text-primary {
  color: hsl(var(--primary));
}

html {
  overflow-x: hidden;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

/* Garantir que todo conteúdo fique acima da animação */
section {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

/* Seções que não precisam ser full height */
section.no-full-height {
  min-height: auto;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
  section {
    min-height: auto;
    padding: 3rem 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    padding: 0 30px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
    padding: 0 40px;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1800px;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(var(--border));
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 hsl(0 0% 0% / 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  min-height: 56px;
}

.logo-container {
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 0 10px hsl(var(--primary) / 0.3));
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 15px hsl(var(--primary) / 0.5))
    drop-shadow(0 0 20px hsl(var(--secondary) / 0.3));
  transform: scale(1.05);
}

/* Logo pulse animation from client platform */
@keyframes logo-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 10px hsl(var(--primary) / 0.3));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 20px hsl(var(--primary) / 0.5))
      drop-shadow(0 0 15px hsl(var(--secondary) / 0.3));
    transform: scale(1.02);
  }
}

.logo.animate-logo-pulse {
  animation: logo-pulse 3s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a:hover {
  color: hsl(var(--primary));
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
}

.language-toggle {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 36px;
}

.language-toggle:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,106,0,.5);
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.language-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(10,10,10,0.98);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}

.language-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-align: left;
}

.language-option:hover {
  background: rgba(255,106,0,.1);
  color: hsl(var(--primary));
}

.language-option.selected {
  background: rgba(255,106,0,.15);
  color: hsl(var(--primary));
  font-weight: 600;
}

.lang-flag {
  font-size: 1.25rem;
}

.lang-name {
  flex: 1;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: hsl(var(--foreground));
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid hsl(var(--border));
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}

.mobile-nav-links {
  list-style: none;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 0;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  color: hsl(var(--primary));
  padding-left: 0.5rem;
}

/* Mobile CTA and Login buttons in menu */
/* Mobile CTAs - Seguindo diretrizes iOS/Android (44-48px) */
.mobile-nav-links .mobile-cta {
  background: hsl(var(--primary));
  color: white;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  text-align: center;
  margin: 0.5rem 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.mobile-nav-links .mobile-cta:hover {
  background: hsl(var(--primary-hover));
  transform: translateY(-2px);
}

.mobile-nav-links .mobile-login {
  background: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  text-align: center;
  margin: 0.5rem 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.mobile-nav-links .mobile-login:hover {
  background: rgba(255, 106, 0, 0.1);
}

.mobile-language-section {
  padding: 1.5rem 0 0.5rem 0;
}

.mobile-language-label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.mobile-language-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-language-option {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-language-option:hover {
  background: rgba(255,106,0,0.1);
  border-color: rgba(255,106,0,0.3);
  color: hsl(var(--primary));
}

.mobile-language-option.selected {
  background: rgba(255,106,0,0.15);
  border-color: rgba(255,106,0,0.5);
  color: hsl(var(--primary));
  font-weight: 600;
}

/* Section Navigation Indicator */
.section-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.section-nav:hover {
  opacity: 1;
}

.section-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.section-nav-dot:hover {
  background: rgba(255,106,0,0.5);
  border-color: rgba(255,106,0,0.8);
  transform: scale(1.2);
}

.section-nav-dot.active {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  width: 12px;
  height: 12px;
  box-shadow: 0 0 10px rgba(255,106,0,0.6);
}

.section-nav-dot::after {
  content: attr(title);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0.75rem;
  background: rgba(0,0,0,0.9);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.section-nav-dot:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .section-nav {
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .section-nav {
    display: none;
  }
}

/* Botões secundários / ícones - Web: 32-40px */
.btn-login {
  background: transparent;
  color: hsl(var(--foreground));
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 44px;
  min-width: 100px;
  box-sizing: border-box;
}

.btn-login:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Botões principais (CTA) - Web: 40-48px */
.cta-header {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  box-shadow: 0 4px 12px rgba(255,106,0,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 44px;
  min-width: 140px;
  box-sizing: border-box;
}

.cta-header:hover {
  background: linear-gradient(135deg, hsl(var(--primary-dark)), hsl(var(--primary)));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,106,0,.35);
}

/* Botões principais (CTA) - Web: 40-48px */
.cta-primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  color: white;
  padding: 0.5rem 1.75rem;
  height: 48px;
  min-width: 140px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255,106,0,0.3);
  box-sizing: border-box;
  border: 2px solid transparent;
}

.cta-primary:hover {
  background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--primary)));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,106,0,0.4);
}

/* Hero Section - Minimalist style (OpenAI/Anthropic inspired) */
.hero {
  background: transparent;
  color: hsl(var(--foreground));
  padding-top: 100px;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
}

/* Ambient glow com cores vibrantes no background */
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  background:
    radial-gradient(ellipse 40% 40% at 30% 30%, rgba(255,106,0,.12), transparent 60%),
    radial-gradient(ellipse 35% 35% at 70% 40%, rgba(56,189,248,.10), transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 70%, rgba(168,85,247,.08), transparent 60%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 15s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .hero-content {
    max-width: 1800px;
    padding: 3rem 3rem;
  }
}

@media (min-width: 1600px) {
  .hero-content {
    max-width: 2000px;
    padding: 3.5rem 3.5rem;
  }
}

/* Centered Hero Content */
.hero-main-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Context Line */
.hero-context {
  font-size: 0.95rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

/* Hero Typography com sutil gradiente */
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(
    135deg,
    hsl(var(--foreground)) 30%,
    rgba(255,106,0,0.9) 60%,
    rgba(56,189,248,0.8) 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.15rem;
  }
}

/* CTA Wrapper - Simplified */
.hero-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Hero Stats - Clean & Minimal */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .hero-stats {
    gap: 3rem;
  }
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
  background: linear-gradient(
    135deg,
    hsl(var(--primary)) 0%,
    hsl(var(--secondary)) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: hsl(var(--foreground));
  line-height: 1.3;
}

/* Right Column: Demo Visual */
.hero-demo-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.demo-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.dashboard-preview {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.dashboard-header {
  margin-bottom: 1.5rem;
}

.dashboard-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.dashboard-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.dashboard-section {
  margin-bottom: 1.5rem;
}

.dashboard-section:last-child {
  margin-bottom: 0;
}

.metric-card {
  background: transparent;
  border-radius: 8px;
  padding: 1rem;
}

.metric-display {
  text-align: center;
}

.metric-bar {
  width: 100%;
  height: 4px;
  background: hsl(var(--border));
  border-radius: 2px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.metric-progress {
  height: 100%;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  border-radius: 2px;
  transition: width 0.8s ease;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.metric-unit {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.performance-chart {
  background: transparent;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.chart-bars {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 60px;
  margin-bottom: 0.75rem;
  gap: 4px;
}

/* Before/After Comparison Component */
.before-after-comparison {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .before-after-comparison {
    padding: 1rem;
    border-radius: 12px;
  }
}

@media (min-width: 1400px) {
  .before-after-comparison {
    padding: 2rem;
  }
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .comparison-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1400px) {
  .comparison-grid {
    gap: 2rem;
  }
}

@media (min-width: 1600px) {
  .comparison-grid {
    gap: 2.5rem;
  }
}

/* Comparison Sides */
.comparison-side {
  padding: 1rem;
  border-radius: 12px;
  min-height: 280px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .comparison-side {
    padding: 1.5rem;
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .comparison-side {
    padding: 0.75rem;
    min-height: 260px;
  }
}

@media (min-width: 1400px) {
  .comparison-side {
    padding: 1.75rem;
    min-height: 340px;
  }
}

.before-side {
  background: linear-gradient(135deg, hsl(var(--muted) / 0.3) 0%, hsl(var(--muted) / 0.1) 100%);
  border: 1px solid hsl(var(--border) / 0.5);
}

.after-side {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, hsl(var(--secondary) / 0.05) 100%);
  border: 1px solid hsl(var(--primary) / 0.2);
}

.side-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}

.side-icon {
  font-size: 1.2rem;
}

.side-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.before-side .side-title {
  color: hsl(var(--muted-foreground));
}

.after-side .side-title {
  color: hsl(var(--primary));
}

/* VS Separator */
.vs-separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
  align-self: stretch;
}

@media (max-width: 768px) {
  .vs-separator {
    display: none;
  }
}

.vs-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow);
}

.improvement-arrow {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Metric Sections */
.metric-section {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  width: 100%;
  box-sizing: border-box;
}

.metric-icon {
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.metric-content {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.metric-label {
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.2rem;
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1200px) {
  .metric-value {
    font-size: 1rem;
  }
}

.before-value {
  color: hsl(var(--muted-foreground));
}

.after-value {
  color: hsl(var(--primary));
}

.metric-improvement {
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.4rem;
}

.metric-improvement-placeholder {
  font-size: 0.7rem;
  height: 1rem;
  margin-bottom: 0.4rem;
  visibility: hidden;
}

/* Chart Components */
.metric-chart {
  margin-top: 0.5rem;
}

.chart-bar {
  height: 6px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  background: hsl(var(--border));
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.before-bar {
  background: linear-gradient(90deg, hsl(var(--muted-foreground) / 0.6), hsl(var(--muted-foreground) / 0.3));
  animation: slideInLeft 1s ease-out 0.5s both;
}

.after-bar {
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  animation: slideInLeft 1s ease-out 1s both;
}

@keyframes slideInLeft {
  from {
    width: 0;
  }
  to {
    width: var(--final-width, 100%);
  }
}

/* Progress Circles */
.progress-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .progress-circle {
    width: 50px;
    height: 50px;
  }
}

.before-circle {
  background: conic-gradient(
    hsl(var(--muted-foreground) / 0.7) 0deg,
    hsl(var(--muted-foreground) / 0.7) calc(18 * 3.6deg),
    hsl(var(--background)) calc(18 * 3.6deg),
    hsl(var(--background)) 360deg
  );
  transform: translateX(-8px);
}

.after-circle {
  background: conic-gradient(
    hsl(var(--primary)) 0deg,
    hsl(var(--primary)) calc(42 * 3.6deg),
    hsl(var(--background)) calc(42 * 3.6deg),
    hsl(var(--background)) 360deg
  );
  transform: translateX(-8px);
}

.progress-fill {
  width: 50px;
  height: 50px;
  background: hsl(var(--card));
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .progress-fill {
    width: 40px;
    height: 40px;
  }
}

.progress-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* Results Section */
.results-section {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid hsl(var(--border) / 0.3);
}

.result-item {
  text-align: center;
  margin-bottom: 0.6rem;
}

.result-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.before-side .result-number {
  color: hsl(var(--muted-foreground));
}

.after-side .result-number {
  color: hsl(var(--primary));
}

.result-label {
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
}

.quality-indicators {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.indicator {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
}

.indicator-icon {
  font-size: 0.9rem;
}

.indicator.negative {
  color: hsl(var(--muted-foreground));
}

.indicator.positive {
  color: hsl(var(--primary));
}

/* Impact Summary */
.impact-summary {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border) / 0.3);
  text-align: center;
}

.impact-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.impact-label {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.impact-value {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-subtext {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.impact-savings-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.impact-savings-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: hsl(var(--secondary));
}

/* Animation Delays */
.before-side {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.after-side {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.impact-summary {
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, hsl(var(--primary)), hsl(var(--secondary)));
  border-radius: 2px 2px 0 0;
  min-height: 8px;
  transition: height 0.8s ease;
}

.chart-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

/* Duplicate CTA Primary - Commented out to avoid conflicts
.cta-primary {
  display: inline-block;
  background: linear-gradient(
    135deg,
    hsl(var(--primary)) 0%,
    hsl(var(--primary-dark)) 100%
  );
  color: hsl(var(--primary-foreground));
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow:
    0 10px 25px -5px hsl(var(--primary) / 0.4),
    0 0 0 1px hsl(var(--primary) / 0.6);
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    hsl(var(--primary-foreground) / 0.2) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  background: linear-gradient(
    135deg,
    hsl(var(--primary-light)) 0%,
    hsl(var(--primary)) 100%
  );
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px -12px hsl(var(--primary) / 0.5),
    0 0 0 1px hsl(var(--primary));
}
*/


.trust-indicators {
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.3);
}

.trust-indicators p {
  margin-bottom: 1rem;
  opacity: 0.8;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1rem;
  border-radius: 16px;
  background: hsl(var(--card) / 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--border) / 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-2px);
  background: hsl(var(--card) / 0.5);
  border-color: hsl(var(--border) / 0.4);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  background: linear-gradient(
    135deg,
    hsl(var(--primary)) 0%,
    hsl(var(--secondary)) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 50px;
  }
  
  .hero-content {
    padding: 1.75rem 1.5rem;
    margin: 0 1rem;
    border-radius: 24px;
  }
  
  .hero-grid {
    gap: 2rem;
  }
  
  .hero-context {
    font-size: 0.85rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Mobile: Área de toque mínima 44-48px conforme diretrizes iOS/Android */
  .cta-primary {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    height: 48px;
    width: 100%;
    min-width: auto;
  }

  .cta-secondary {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    height: 48px;
    width: 100%;
    min-width: auto;
  }

  .btn-login,
  .cta-header {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    height: 44px;
    min-width: auto;
  }

  .cta-header {
    width: 100%;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .hero-stat {
    padding: 0.75rem 0.25rem;
  }
  
  .hero-stat .stat-number {
    font-size: 2rem;
  }
  
  .hero-stat .stat-label {
    font-size: 0.8rem;
  }
  
  .demo-container {
    max-width: 300px;
  }
  
  .dashboard-preview {
    padding: 1.25rem;
  }
  
  .beta-discount-callout {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1.25rem 1rem;
    margin: 0 0.5rem;
  }
  
  .hero-context {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-stat {
    padding: 1rem 0.5rem;
    text-align: center;
  }
  
  .demo-container {
    max-width: 280px;
  }
  
  .dashboard-preview {
    padding: 1rem;
  }
  
  .dashboard-title {
    font-size: 0.9rem;
  }
  
  .dashboard-subtitle {
    font-size: 0.8rem;
  }
  
  .metric-value {
    font-size: 1.25rem;
  }
  
  .beta-discount-callout {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    margin-top: 0.75rem;
  }
  
  .discount-icon {
    font-size: 0.9rem;
  }
}

/* Problem Section */
.problem {
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
}

.problem h2 {
  font-size: 1.875rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: hsl(var(--foreground));
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Responsive grid for Problem Section */
@media (min-width: 768px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.problem-card {
  background: linear-gradient(135deg, rgba(15,15,15,0.95), rgba(25,25,25,0.9));
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,106,0,0.15);
  border-left: 3px solid hsl(var(--destructive));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,0,0.4);
  box-shadow: 0 8px 32px rgba(255,106,0,0.12);
}

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

.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
  letter-spacing: -0.01em;
}

.problem-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
  font-size: 0.9375rem;
  font-weight: 400;
}

.callout {
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: hsl(var(--primary));
  margin-top: 2rem;
  text-shadow: 0 0 10px hsl(var(--primary) / 0.3);
}

/* Solution Section */
.solution {
  padding: 80px 0;
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
}

.solution-header {
  text-align: center;
  margin-bottom: 3rem;
}

.solution h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Responsive grid for Solution Section benefits */
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: hsl(var(--card));
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
}

.benefit:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.benefit-icon {
  font-size: 1.5rem;
  color: hsl(var(--secondary));
}

.benefit:hover .benefit-icon {
  color: hsl(var(--primary-foreground));
}

/* How It Works */
.how-it-works {
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.how-it-works .container {
  width: 100%;
}

.how-it-works h2 {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.how-it-works .subtitle {
  text-align: center;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
}

/* Simple 4-Step Layout */
.steps-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .steps-simple {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-simple {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-simple {
  background: linear-gradient(135deg, rgba(18,18,18,0.95), rgba(28,28,28,0.9));
  padding: 1.5rem 1.5rem;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.step-simple::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgba(56,189,248,0.8), rgba(255,106,0,0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-simple:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.3);
  box-shadow: 0 12px 40px rgba(56,189,248,0.15);
}

.step-simple:hover::before {
  opacity: 1;
}

.step-simple .step-number-large {
  margin-bottom: 0.875rem;
  align-self: flex-start;
}

/* Info icon para o card diferencial */
.step-icon-info {
  width: 48px;
  height: 48px;
  margin-bottom: 0.875rem;
  align-self: flex-start;
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-info svg {
  width: 100%;
  height: 100%;
}

.step-info .step-number-large {
  display: none;
}

.step-simple h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: hsl(var(--foreground));
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.step-simple p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 0.875rem;
  font-weight: 400;
}

/* Legacy 8-step layout (if needed) */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Responsive grid for How It Works Section - Optimized for 8 cards */
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.step {
  background: hsl(var(--card));
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--primary) / 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-glow);
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
  color: hsl(var(--primary));
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--card-foreground));
}

.step p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Social Proof */
.social-proof {
  padding: 80px 0;
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
}

.social-proof h2 {
  font-size: 1.875rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: hsl(var(--foreground));
}

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

/* Responsive grid for Testimonials Section */
@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.testimonial {
  background: hsl(var(--card));
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid hsl(var(--border));
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 4rem;
  color: hsl(var(--primary));
  font-weight: bold;
}

.testimonial-text {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: hsl(var(--card-foreground));
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  font-weight: bold;
  font-size: 1.5rem;
}

.author-info h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: hsl(var(--card-foreground));
}

.author-info p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

/* Comparison */
.comparison {
  padding: 80px 0;
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
}

.comparison h2 {
  font-size: 1.875rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: hsl(var(--foreground));
}

/* New comparison table design */
.comparison-table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  background: linear-gradient(135deg, rgba(15,15,15,0.98), rgba(25,25,25,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  background: rgba(255,255,255,0.03);
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.comparison-header-item {
  padding: 0.75rem 1.25rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.comparison-header-item.empty {
  background: transparent;
}

.comparison-header-item.traditional {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.comparison-header-item.soli {
  border-left: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(255,106,0,0.08), rgba(56,189,248,0.08));
}

.comparison-header-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0;
}

.recommended-badge {
  display: inline-block;
  background: rgba(255,106,0,0.08);
  border: 1px solid rgba(255,106,0,0.2);
  color: rgba(255,106,0,0.85);
  padding: 0.2rem 0.65rem;
  border-radius: 3px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-logo {
  height: 28px;
  width: auto;
}

.comparison-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s ease;
}

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

.comparison-row:hover {
  background: rgba(255,255,255,0.02);
}

.comparison-feature {
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.feature-label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
}

.comparison-value {
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.comparison-value.negative {
  color: rgba(255,255,255,0.7);
}

.comparison-value.positive {
  color: rgba(255,255,255,0.95);
  background: linear-gradient(135deg, rgba(255,106,0,0.04), rgba(56,189,248,0.04));
}

.value-icon {
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
}

.comparison-value.negative .value-icon {
  color: #ef4444;
}

.comparison-value.positive .value-icon {
  color: hsl(var(--primary));
}

/* Mobile responsive */
@media (max-width: 768px) {
  .comparison-header {
    grid-template-columns: 120px 1fr 1fr;
  }

  .comparison-row {
    grid-template-columns: 120px 1fr 1fr;
  }

  .comparison-header-item {
    padding: 0.875rem 0.75rem;
  }

  .comparison-header-item h3 {
    font-size: 0.875rem;
  }

  .comparison-logo {
    height: 26px;
  }

  .recommended-badge {
    font-size: 0.5rem;
    padding: 0.18rem 0.55rem;
  }

  .comparison-feature {
    padding: 1rem 0.75rem;
  }

  .feature-label {
    font-size: 0.8125rem;
  }

  .comparison-value {
    padding: 1rem 0.75rem;
    font-size: 0.8125rem;
    gap: 0.5rem;
  }

  .value-icon {
    font-size: 1rem;
  }

  .recommended-badge {
    font-size: 0.55rem;
    padding: 0.25rem 0.625rem;
  }
}

/* Old card styles (keeping for backwards compatibility if needed) */
.vs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.vs-card {
  background: linear-gradient(135deg, rgba(15,15,15,0.98), rgba(25,25,25,0.95));
  padding: 2rem 2rem 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}

.vs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: opacity 0.3s ease;
}

.vs-card.negative::before {
  background: linear-gradient(90deg, rgba(239,68,68,0.6), rgba(220,38,38,0.6));
}

.vs-card.negative {
  border-color: rgba(239,68,68,0.15);
}

.vs-card.negative:hover {
  border-color: rgba(239,68,68,0.3);
  box-shadow: 0 12px 48px rgba(239,68,68,0.1);
  transform: translateY(-4px);
}

.vs-card.positive::before {
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
}

.vs-card.positive {
  border-color: rgba(255,106,0,0.2);
  position: relative;
}

.vs-card.positive:hover {
  border-color: rgba(255,106,0,0.4);
  box-shadow: 0 12px 48px rgba(255,106,0,0.15);
  transform: translateY(-4px);
}

.vs-card.positive .card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 20px rgba(255,106,0,0.4);
  text-transform: uppercase;
}

.vs-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  text-align: center;
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
}

.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.negative .vs-list li {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
  color: rgba(255,255,255,0.9);
}

.negative .vs-list li:hover {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.25);
}

.positive .vs-list li {
  background: rgba(255,106,0,0.08);
  border: 1px solid rgba(255,106,0,0.15);
  color: rgba(255,255,255,0.95);
}

.positive .vs-list li:hover {
  background: rgba(255,106,0,0.12);
  border-color: rgba(255,106,0,0.25);
}

.vs-icon {
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.negative-icon {
  color: #ef4444;
}

.positive-icon {
  color: #22c55e;
}

/* Pricing */
.pricing {
  padding: 3rem 0;
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.pricing h2 {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Responsive grid for Pricing Section */
@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .pricing-grid {
    gap: 1.5rem;
  }
}

.pricing-card {
  background: linear-gradient(135deg, rgba(18,18,18,0.95), rgba(25,25,25,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .pricing-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 1280px) {
  .pricing-card {
    padding: 1.75rem 1.5rem;
  }
}

/* Starter - Laranja */
.pricing-card:nth-child(1) {
  border-color: rgba(255,106,0,0.3);
}

.pricing-card:nth-child(1):hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,0,0.5);
  box-shadow: 0 12px 40px rgba(255,106,0,0.15);
}

/* Growth - Azul */
.pricing-card.featured {
  border: 1px solid rgba(56,189,248,0.5);
  box-shadow: 0 8px 32px rgba(56,189,248,0.2);
}

.pricing-card.featured:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.7);
  box-shadow: 0 12px 40px rgba(56,189,248,0.25);
}

/* Professional - Verde */
.pricing-card:nth-child(3) {
  border-color: rgba(16,185,129,0.3);
}

.pricing-card:nth-child(3):hover {
  transform: translateY(-4px);
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 12px 40px rgba(16,185,129,0.15);
}

/* Enterprise - Roxo */
.enterprise-card {
  border-color: rgba(168,85,247,0.5) !important;
}

.enterprise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,85,247,0.7) !important;
  box-shadow: 0 12px 40px rgba(168,85,247,0.15);
}

@media (min-width: 1024px) {
  .pricing-card.featured {
    transform: scale(1.02);
  }
}

@media (min-width: 1280px) {
  .pricing-card.featured {
    transform: scale(1.03);
  }
}

/* Badge geral para todos os planos */
.pricing-card .card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  padding: 0.4rem 1.25rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Badge de desconto (50% OFF) à direita */
.pricing-card .card-badge-discount {
  position: absolute;
  top: -10px;
  right: 0.5rem;
  color: #ffffff;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  box-shadow: 0 3px 8px rgba(255,106,0,0.3);
  animation: discount-pulse 2s ease-in-out infinite;
}

@keyframes discount-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.05);
  }
}

/* Starter - Laranja */
.pricing-card:nth-child(1) .card-badge {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  box-shadow: 0 4px 12px rgba(255,106,0,0.3);
}

/* Growth - Azul */
.pricing-card.featured .card-badge {
  background: linear-gradient(135deg, hsl(var(--secondary)), hsl(215, 100%, 55%));
  box-shadow: 0 4px 12px rgba(56,189,248,0.3);
}

/* Professional - Verde */
.pricing-card:nth-child(3) .card-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

/* Enterprise - Roxo */
.enterprise-card .card-badge {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  box-shadow: 0 4px 12px rgba(168,85,247,0.3);
}

.plan-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: hsl(var(--foreground));
  letter-spacing: -0.01em;
}

@media (min-width: 1280px) {
  .plan-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

.plan-price-original {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
  opacity: 0.6;
}

.plan-price-spacer {
  opacity: 0;
  visibility: hidden;
  height: 1.5rem;
}

.plan-cta-text {
  background: transparent;
  border: none;
  padding: 0.75rem 0;
}

.cta-text-content {
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  display: block;
}

.price-strikethrough {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.price-strikethrough::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ef4444 10%, #dc2626 50%, #ef4444 90%, transparent);
  transform: translateY(-50%) rotate(-10deg);
  box-shadow: 0 1px 6px rgba(239, 68, 68, 0.6);
  z-index: 2;
}

.plan-period-small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.plan-price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.plan-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: hsl(var(--primary));
}

.plan-price-discount {
  font-size: 1.5rem;
  font-weight: 900;
  color: hsl(var(--primary));
}

@media (min-width: 1280px) {
  .plan-price {
    font-size: 1.75rem;
  }
  
  .plan-price-discount {
    font-size: 1.75rem;
  }
}

.plan-period {
  color: hsl(var(--muted-foreground));
  font-size: 0.7rem;
  font-weight: 500;
}

.plan-period.enterprise-period {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 1280px) {
  .plan-period {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }
}

.plan-features-wrapper {
  margin-bottom: 0.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.plan-features {
  list-style: none;
  margin-bottom: 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  margin: 0;
  text-align: left;
  color: hsl(var(--card-foreground));
  font-size: 0.75rem;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.plan-features li:last-child {
  border-bottom: none;
}

@media (min-width: 1280px) {
  .plan-features li {
    gap: 0.5rem;
    padding: 0.55rem 0;
    font-size: 0.8rem;
  }
}

.feature-icon {
  color: hsl(var(--secondary));
  font-weight: bold;
}


/* Botões de planos - Web: 44px mínimo */
.plan-cta {
  width: 100%;
  padding: 0.5rem 1.25rem;
  height: 44px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: auto;
}

.plan-cta:hover {
  background: hsl(var(--primary-dark));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Trial CTA */
.trial-cta {
  padding: 80px 0;
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  text-align: center;
  border-bottom: 1px solid hsl(var(--border));
}

.trial-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.trial-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 3rem auto;
}

/* Responsive grid for Trial Features Section */
@media (min-width: 768px) {
  .trial-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trial-features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

.trial-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trial-feature {
  color: hsl(var(--card-foreground));
}

.trial-feature-icon {
  color: hsl(var(--secondary));
  font-size: 1.25rem;
}

.urgency {
  background: hsl(var(--destructive) / 0.1);
  border: 2px solid hsl(var(--destructive));
  border-radius: 15px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.urgency h3 {
  color: hsl(var(--destructive));
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: hsl(var(--foreground));
  padding: 3rem 0 1rem;
  border-top: 1px solid hsl(var(--border));
  position: relative;
  z-index: 20;
}

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

/* Responsive grid for Footer Section */
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: hsl(var(--primary));
}

.footer-section p,
.footer-section a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: hsl(var(--foreground));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav {
    padding: 0.5rem 0;
    min-height: 48px;
  }

  .logo-container {
    height: 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .header-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
    top: 48px;
  }

  .mobile-menu.active {
    max-height: calc(100vh - 48px);
  }

  .language-dropdown {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.25rem;
  }

  .stats {
    gap: 1.5rem;
  }

  .vs-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problem h2,
  .solution h2,
  .how-it-works h2,
  .social-proof h2,
  .comparison h2,
  .pricing h2,
  .trial-cta h2,
  .key-features h2,
  .early-adopter-benefits h2,
  .waitlist-cta h2,
  .faq h2 {
    font-size: 1.5rem;
  }
}

/* New Sections Styles */

/* Launch Badge */
.launch-badge {
  display: block;
  width: 100%;
  text-align: center;
  background: hsl(var(--primary) / 0.15);
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Botões secundários - Web: 40-48px */
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  padding: 0.5rem 1.75rem;
  height: 48px;
  min-width: 140px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  border: 2px solid hsl(var(--primary));
  box-sizing: border-box;
  background: transparent;
}

.cta-secondary:hover {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  transform: translateY(-2px);
  border-color: hsl(var(--primary));
}

/* Solution Header */
.solution-header {
  text-align: center;
  margin-bottom: 3rem;
}

.solution-header h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

/* Quick 3-Step Overview (for merged section) */
.solution-steps-quick {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .solution-steps-quick {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-step-quick {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.solution-step-quick:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--primary) / 0.3);
}

/* Legacy solution-steps (keeping for backwards compatibility) */
.solution-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .solution-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-step {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.solution-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--primary) / 0.3);
}

.step-number-large {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(255,106,0,0.2));
  border: 2px solid rgba(56,189,248,0.4);
  color: hsl(var(--foreground));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(56,189,248,0.15);
}

.solution-step h3,
.solution-step-quick h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--card-foreground));
}

.solution-step p,
.solution-step-quick p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Detailed Steps Divider */
.detailed-steps-divider {
  text-align: center;
  margin: 4rem 0 3rem;
  padding: 2rem 0;
  border-top: 2px solid hsl(var(--border));
  border-bottom: 2px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.2);
}

.detailed-steps-divider h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.detailed-steps-divider p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 700px;
  margin: 0 auto;
}

/* RAG Callout */
.rag-callout {
  background: linear-gradient(
    135deg,
    hsl(var(--secondary) / 0.1) 0%,
    hsl(var(--primary) / 0.1) 100%
  );
  border: 2px solid hsl(var(--secondary) / 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 1200px;
}

.callout-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.callout-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--secondary));
  text-align: left;
}

.callout-content p {
  color: hsl(var(--foreground));
  line-height: 1.5;
  text-align: left;
  font-size: 0.875rem;
}

/* Key Features Section */
.key-features {
  padding: 4rem 0;
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.key-features .container {
  width: 100%;
}

.key-features h2 {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: hsl(var(--foreground));
}

/* New Features Grid - More Visual & Dynamic */
.features-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .features-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .features-grid-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.feature-card-new {
  background: linear-gradient(135deg, rgba(15,15,15,0.98), rgba(25,25,25,0.95));
  padding: 2rem 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

/* Feature card com badge de bônus */
.feature-card-bonus {
  position: relative;
}

.feature-card-bonus .bonus-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  color: hsl(var(--primary-foreground));
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255,106,0,0.3);
}

.feature-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--soli-orange)), hsl(var(--soli-blue)));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.feature-card-new::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg,
    hsl(var(--soli-orange) / 0.3),
    hsl(var(--soli-blue) / 0.2)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-new:hover {
  transform: translateY(-6px);
  border-color: rgba(255,106,0,0.3);
  box-shadow:
    0 12px 40px rgba(255,106,0,0.15),
    0 8px 24px rgba(74,158,255,0.1);
}

.feature-card-new:hover::after {
  opacity: 1;
}

/* Feature Icon */
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    hsl(var(--soli-orange) / 0.15),
    hsl(var(--soli-blue) / 0.1)
  );
  border-radius: 12px;
  border: 1px solid rgba(255,106,0,0.2);
  transition: all 0.4s ease;
}

.feature-card-new:hover .feature-icon {
  background: linear-gradient(135deg,
    hsl(var(--soli-orange) / 0.25),
    hsl(var(--soli-blue) / 0.2)
  );
  border-color: rgba(255,106,0,0.4);
  transform: scale(1.05);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--soli-orange));
  transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon svg {
  color: hsl(var(--soli-orange-light));
}

.feature-card-new h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
}

.feature-card-new p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0;
}

/* Keep old grid for backwards compatibility */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  background: linear-gradient(135deg, rgba(20,20,20,0.95), rgba(30,30,30,0.9));
  padding: 1.5rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(56,189,248,0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(255,106,0,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.3);
  box-shadow: 0 12px 40px rgba(56,189,248,0.15);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: hsl(var(--foreground));
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 0.875rem;
  font-weight: 400;
}

/* Bonus Feature */
.bonus-feature {
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.15) 0%,
    hsl(var(--secondary) / 0.1) 100%
  );
  border: 2px solid hsl(var(--primary) / 0.5);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.bonus-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--soli-orange)), hsl(var(--soli-blue)));
}

.bonus-feature:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--primary));
  box-shadow:
    0 12px 40px rgba(255,106,0,0.2),
    0 8px 24px rgba(74,158,255,0.15);
}

.bonus-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.bonus-badge {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.bonus-feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0;
}

.bonus-feature p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* Early Adopter Benefits Section */
.early-adopter-benefits {
  padding: 3rem 0;
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.early-adopter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .early-adopter-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.early-adopter-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
}

.early-adopter-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    hsl(var(--foreground)) 30%,
    rgba(255,106,0,0.9) 60%,
    rgba(56,189,248,0.8) 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
  .early-adopter-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .early-adopter-content {
    padding-right: 0;
  }

  .early-adopter-content h2 {
    text-align: center;
    font-size: 2.25rem;
  }
}

.early-adopter-intro {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

@media (max-width: 1024px) {
  .early-adopter-intro {
    text-align: center;
  }
}

.early-adopter-badge {
  background: rgba(255,106,0,.15);
  border: 1px solid rgba(255,106,0,.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  width: fit-content;
}

.early-adopter-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,106,0,1);
  display: inline-block;
  box-shadow: 0 0 6px rgba(255,106,0,.8);
  flex-shrink: 0;
}

.early-adopter-badge .badge-text {
  line-height: 1.4;
  color: #FFB380;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .early-adopter-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

.early-adopter-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .early-adopter-cards-container {
    grid-template-columns: 1fr;
  }
}

.early-adopter-card {
  background: linear-gradient(135deg, rgba(20,20,20,0.95), rgba(28,28,28,0.9));
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,106,0,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.early-adopter-card:hover {
  border-color: rgba(255,106,0,0.3);
  box-shadow: 0 8px 32px rgba(255,106,0,0.12);
  transform: translateY(-2px);
}

.early-adopter-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.early-adopter-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.benefits-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .benefits-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .benefits-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.benefit-card {
  background: linear-gradient(135deg, rgba(18,18,18,0.95), rgba(25,25,25,0.9));
  padding: 2rem 1.75rem;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(168,85,247,0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(168,85,247,0.4), rgba(56,189,248,0.4));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,85,247,0.3);
  box-shadow: 0 12px 40px rgba(168,85,247,0.15);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
  letter-spacing: -0.01em;
}

.benefit-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
  font-size: 0.9375rem;
  font-weight: 400;
}

.urgency-badge {
  background: rgba(239,68,68,0.1);
  border: 2px solid rgba(239,68,68,0.4);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto;
}

.urgency-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.urgency-text {
  color: #ef4444;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Waitlist CTA Section */
.waitlist-cta {
  padding: 3rem 0;
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .waitlist-cta {
    min-height: auto;
    padding: 2rem 0;
  }
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .waitlist-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.waitlist-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
}

.waitlist-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    hsl(var(--foreground)) 30%,
    rgba(255,106,0,0.9) 60%,
    rgba(56,189,248,0.8) 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
  .waitlist-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .waitlist-content {
    padding-right: 0;
  }

  .waitlist-content h2 {
    text-align: center;
    font-size: 2.25rem;
  }
}

.waitlist-intro {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

@media (max-width: 1024px) {
  .waitlist-intro {
    text-align: center;
  }
}

.waitlist-content .badge-founder {
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .waitlist-content .badge-founder {
    margin-left: auto;
    margin-right: auto;
  }
}

.waitlist-badges {
  display: flex;
  gap: 0.75rem;
}

.waitlist-badge {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  flex: 1;
  white-space: nowrap;
}

.waitlist-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(34,197,94,1);
  display: inline-block;
  box-shadow: 0 0 6px rgba(34,197,94,.8);
  flex-shrink: 0;
}

.waitlist-badge .badge-text {
  line-height: 1.4;
  color: #86EFAC;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .waitlist-badges {
    align-items: center;
  }
}

.waitlist-form-container {
  background: rgba(15,15,15,0.98);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.waitlist-form-container h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.95rem;
}

.form-group input {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  background: rgba(255,255,255,.08);
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

/* Hide native select */
.form-group select {
  display: none;
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  height: 50px;
  box-sizing: border-box;
}

.custom-select-trigger:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,106,0,.3);
}

.custom-select-trigger.active {
  background: rgba(255,255,255,.08);
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.custom-select-trigger.placeholder {
  color: hsl(var(--muted-foreground));
}

.custom-select-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: hsl(var(--muted-foreground));
}

.custom-select-trigger.active .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  max-height: 250px;
  overflow-y: auto;
}

.custom-select-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-align: left;
  display: block;
}

.custom-select-option:hover {
  background: rgba(255,106,0,.1);
  color: hsl(var(--primary));
}

.custom-select-option.selected {
  background: rgba(255,106,0,.15);
  color: hsl(var(--primary));
  font-weight: 600;
}

.custom-select-option.placeholder {
  color: hsl(var(--muted-foreground));
  font-style: italic;
  cursor: not-allowed;
}

/* Scrollbar for dropdown */
.custom-select-options::-webkit-scrollbar {
  width: 8px;
}

.custom-select-options::-webkit-scrollbar-track {
  background: rgba(255,255,255,.05);
  border-radius: 4px;
}

.custom-select-options::-webkit-scrollbar-thumb {
  background: rgba(255,106,0,.3);
  border-radius: 4px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
  background: rgba(255,106,0,.5);
}

.form-group-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.form-group-checkbox input[type="checkbox"] {
  /* Hide default checkbox */
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form-group-checkbox label {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}

/* Custom checkbox */
.form-group-checkbox label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid hsl(var(--border));
  border-radius: 4px;
  background: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Hover state */
.form-group-checkbox label:hover::before {
  border-color: hsl(var(--primary));
}

/* Checked state */
.form-group-checkbox input[type="checkbox"]:checked + label::before {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  border-color: hsl(var(--primary));
}

/* Checkmark */
.form-group-checkbox input[type="checkbox"]:checked + label::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(45deg);
  margin-top: -2px;
}

/* Focus state */
.form-group-checkbox input[type="checkbox"]:focus + label::before {
  outline: none;
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.cta-form {
  width: 100%;
  margin-top: 1rem;
}

.form-benefits {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

.form-benefits > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .form-benefits {
    font-size: 0.85rem;
    gap: 0.75rem;
  }
}

/* Form Submission Messages */
.form-message {
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease;
}

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

.form-message-success {
  background: hsl(142 76% 36% / 0.1);
  border: 2px solid hsl(142 76% 36%);
  color: hsl(142 76% 36%);
}

.form-message-error {
  background: hsl(var(--destructive) / 0.1);
  border: 2px solid hsl(var(--destructive));
  color: hsl(var(--destructive));
}

.form-message-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-message-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.social-proof-counter {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.counter-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.counter-companies {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}

/* Enhanced Pricing Section Styles */
.pricing-header {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.pricing-header h2 {
  margin: 0;
  display: inline-block;
}

.beta-badge-inline {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  color: hsl(var(--primary-foreground));
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
  animation: discount-pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .pricing-header {
    padding: 0 0.5rem;
  }

  .beta-badge-inline {
    position: static;
    transform: none;
    display: block;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.875rem;
  }
}

.beta-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-glow);
  animation: pulse 2s infinite;
}

.pricing-subtitle {
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.plan-annual {
  font-size: 0.8rem;
  color: hsl(var(--secondary));
  margin-bottom: 0.75rem;
  font-weight: 600;
}

@media (min-width: 1280px) {
  .plan-annual {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

.plan-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  min-height: 32px;
  line-height: 1.3;
}

@media (min-width: 1280px) {
  .plan-description {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
}

.beta-discount {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, hsl(var(--secondary) / 0.1) 100%);
  border: 2px solid hsl(var(--primary));
  border-radius: 12px;
  padding: 0.75rem 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1280px) {
  .beta-discount {
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.9rem;
  }
}

.beta-discount-inline {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  margin-left: 0.5rem;
  display: inline-block;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.5);
  }
}


.enterprise-card .plan-price {
  font-size: 1.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 1280px) {
  .enterprise-card .plan-price {
    font-size: 2rem;
  }
}

/* Pricing Notes Section */
.pricing-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pricing-notes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-note {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid hsl(var(--border));
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-note:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--primary) / 0.3);
}

.pricing-note h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.pricing-note p {
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Pricing CTA Section */
.pricing-cta-section {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.05) 0%,
    hsl(var(--secondary) / 0.05) 100%
  );
  border-radius: 20px;
  border: 1px solid hsl(var(--border));
}

.pricing-cta-section h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.pricing-cta-section p {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta-section .cta-primary {
  margin-top: 1rem;
}

/* Hero Section Enhancements */

/* Enhanced Launch Badge */
.launch-badge {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--secondary) / 0.1)) !important;
  border: 2px solid hsl(var(--primary)) !important;
  animation: pulse-glow 2s infinite !important;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 10px hsl(var(--primary) / 0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 20px hsl(var(--primary) / 0.5);
    transform: scale(1.02);
  }
}

/* Guarantee Badge */
.guarantee-badge {
  background: linear-gradient(135deg, hsl(var(--success) / 0.1), hsl(var(--success) / 0.05));
  border: 1px solid hsl(var(--success) / 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
  font-size: 0.95rem;
}

.guarantee-badge strong {
  color: hsl(var(--success));
  font-weight: 700;
}

/* Urgency Counter */

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: transparent;
  border-bottom: 1px solid hsl(var(--border));
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.faq-subtitle {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(18,18,18,0.95), rgba(25,25,25,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255,106,0,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,106,0,0.12);
}

.faq-question {
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-question.active {
  background: rgba(255,106,0,0.05);
  border-bottom-color: rgba(255,255,255,0.08);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  color: hsl(var(--primary));
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
  background: hsl(var(--primary));
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(0,0,0,0.3);
}

.faq-answer.active {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 1rem 1.5rem 1.25rem 1.5rem;
}

.faq-answer-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.faq-answer-content p:last-of-type {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: hsl(var(--primary));
  font-weight: 700;
}

.faq-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(255,106,0,0.05));
  border-left: 2px solid rgba(56,189,248,0.6);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.faq-highlight span {
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-highlight strong {
  color: rgba(56,189,248,1);
  font-weight: 600;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.faq-cta-content h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.faq-cta-content p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.faq-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }

  .faq h2 {
    font-size: 1.5rem;
  }

  .step-simple h3,
  .problem-card h3,
  .benefit-card h3,
  .feature-card h3,
  .faq-question h3 {
    font-size: 1rem;
  }

  .plan-name {
    font-size: 1.125rem;
  }

  .plan-price {
    font-size: 2rem;
  }

  .bonus-feature h3 {
    font-size: 1.25rem;
  }

  .waitlist-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .waitlist-intro {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .waitlist-content .badge-founder {
    margin-bottom: 1rem;
  }

  .waitlist-badges {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Ajustes de badges específicos para mobile - fontes menores */
  /* Badge "PROGRAMA FUNDADOR" e "APENAS 10 VAGAS" */
  .badge-founder {
    font-size: 0.65rem;
    padding: 5px 10px;
    gap: 5px;
  }

  .badge-founder .dot {
    width: 5px;
    height: 5px;
  }

  .badge-founder strong {
    font-size: 0.65rem;
  }

  .badge-founder .muted {
    font-size: 0.6rem;
  }

  /* Badge "Apenas 10 vagas disponíveis no Programa Fundador" */
  .early-adopter-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
    gap: 6px;
  }

  .early-adopter-badge .dot {
    width: 5px;
    height: 5px;
  }

  .early-adopter-badge .badge-text {
    font-size: 0.7rem;
  }

  /* Badges "Demo gratuita", "Sem compromisso", "Fale direto" */
  .waitlist-badge {
    font-size: 0.7rem;
    padding: 5px 10px;
    gap: 5px;
  }

  .waitlist-badge .dot {
    width: 5px;
    height: 5px;
  }

  .waitlist-badge .badge-text {
    font-size: 0.7rem;
  }

  .waitlist-form-container {
    padding: 1.25rem;
  }

  .waitlist-form-container h3,
  .faq-cta-content h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .waitlist-form {
    gap: 0.875rem;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0.875rem;
  }

  .form-group {
    gap: 0.375rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.875rem;
  }

  .form-group-checkbox {
    margin: 1rem 0;
  }

  .form-group-checkbox label {
    font-size: 0.85rem;
    padding-left: 1.75rem;
  }

  .form-group-checkbox label::before {
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .form-group-checkbox input[type="checkbox"]:checked + label::after {
    left: 6px;
    top: 50%;
    width: 5px;
    height: 9px;
    transform: translateY(-50%) rotate(45deg);
    margin-top: -2px;
  }

  /* Custom select mobile adjustments */
  .custom-select-trigger {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }

  .custom-select-options {
    max-height: 200px;
    bottom: auto;
  }

  .custom-select-option {
    padding: 0.65rem 0.875rem;
    font-size: 0.9rem;
  }

  .how-it-works .subtitle,
  .section-subtitle,
  .waitlist-intro,
  .waitlist-highlight,
  .faq-subtitle,
  .faq-cta-content p {
    font-size: 0.95rem;
  }

  .step-simple p,
  .problem-card p,
  .feature-card p,
  .benefit-card p,
  .plan-features li {
    font-size: 0.85rem;
  }
  
  .faq-question {
    padding: 1.25rem;
    gap: 1rem;
  }

  .faq-question h3 {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .faq-toggle {
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
  }

  .faq-answer-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
  
  .faq-answer-content p {
    font-size: 0.95rem;
  }
  
  .faq-highlight {
    padding: 0.875rem 1rem;
    gap: 0.5rem;
  }
  
  .faq-highlight span:last-child {
    font-size: 0.9rem;
  }
  
  .faq-cta {
    padding: 2rem 1.5rem;
  }
  
  .faq-cta-content h3 {
    font-size: 1.5rem;
  }
  
  .faq-cta-content p {
    font-size: 1rem;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .faq-cta-buttons .cta-primary,
  .faq-cta-buttons .cta-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .faq-header {
    margin-bottom: 3rem;
  }
  
  .faq-subtitle {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 1rem 1rem 1rem;
  }
  
  .faq-highlight {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .highlight-icon {
    font-size: 1rem;
  }
  
  .faq-cta {
    padding: 1.5rem 1rem;
  }
  
  .faq-cta-content h3 {
    font-size: 1.25rem;
  }
}
.urgency-counter {
  margin: 2rem 0 1rem;
  text-align: center;
  padding: 1rem;
  background: hsl(var(--destructive) / 0.1);
  border: 1px solid hsl(var(--destructive) / 0.3);
  border-radius: 12px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.counter-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: hsl(var(--destructive));
  background: linear-gradient(135deg, hsl(var(--destructive)), hsl(var(--destructive) / 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-text {
  font-weight: 600;
  color: hsl(var(--destructive));
}

.deadline-text {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}

/* High urgency state */
.urgency-counter.high-urgency {
  animation: urgent-pulse 1.5s infinite;
}

@keyframes urgent-pulse {
  0%, 100% { 
    border-color: hsl(var(--destructive) / 0.3);
    background: hsl(var(--destructive) / 0.1);
  }
  50% { 
    border-color: hsl(var(--destructive) / 0.6);
    background: hsl(var(--destructive) / 0.15);
  }
}

/* Mobile optimizations for hero enhancements */
@media (max-width: 768px) {
  .guarantee-badge {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .urgency-counter {
    margin: 1.5rem 1rem;
    padding: 0.75rem;
  }
  
  .counter-number {
    font-size: 1.25rem;
  }
  
  .launch-badge {
    font-size: 0.85rem !important;
    padding: 0.6rem 1.25rem !important;
  }
}

/* ========================================
   PREMIUM ANIMATIONS & EFFECTS (from soli.html)
   ======================================== */

/* Animated tech grid fabric background */
.fabric {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0/50px 50px,
    linear-gradient(180deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0/50px 50px;
  mask-image: radial-gradient(70% 70% at 50% 20%, black, transparent 80%);
  opacity: .15;
  animation: fabricMove 60s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes fabricMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 250px 0, 0 250px;
  }
}

/* Ambient gradient glow behind hero content */
.hero .ambient-glow {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70vh;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(255,106,0,.22), transparent 60%),
    radial-gradient(50% 50% at 80% 10%, rgba(56,189,248,.20), transparent 60%),
    radial-gradient(40% 40% at 60% 60%, rgba(168,85,247,.12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -2;
}

/* Scroll reveal animation for data-reveal elements */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Founder badge com pulse animation e cores vibrantes */
.badge-founder {
  background: rgba(255,106,0,.15);
  border: 1px solid rgba(255,106,0,.4);
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* Pulse animation no badge */
.badge-founder:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255,106,0,.6);
  animation: badgePulse 2.5s ease-out infinite;
}

@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,106,0,.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255,106,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,106,0,0);
  }
}

.badge-founder .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: hsl(var(--primary));
  display: inline-block;
  box-shadow: 0 0 8px rgba(255,106,0,.8);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.9);
  }
}

.badge-founder strong {
  font-size: 0.75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: hsl(var(--primary));
}

.badge-founder .muted {
  color: #FFB380;
  font-weight: 500;
  font-size: 0.75rem;
}

/* Voice wave canvas styling */
.wave-wrap {
  position: relative;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-premium);
}

canvas#voiceWave {
  width: 100%;
  height: 220px;
  display: block;
  border-radius: 12px;
  background: linear-gradient(180deg, #0b0b0c, #0a0a0a);
}

/* Global Voice Wave - Fixed FULL HEIGHT */
.voicefield-global {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 40vh !important;
  width: 100% !important;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  margin: 0 !important;
  padding: 0 !important;
  background: #000000;
}

.voicefield-global canvas {
  width: 100%;
  height: 100%;
  display: block;
  filter: none;
  opacity: 0.5;
  margin: 0;
  padding: 0;
  background: #000000;
}

/* Enhanced card hover effects */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
  border-color: rgba(255,106,0,.3);
}

/* Chip styling */
.chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Step counter styling */
.step {
  counter-increment: step;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.step:before {
  content: counter(step);
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, hsl(var(--secondary)), var(--violet));
  font-weight: 800;
  color: #0a0a0a;
  font-size: 0.875rem;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(56,189,248,.2);
}

/* Feature card enhancements */
.feature {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px;
  transition: all .25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(56,189,248,.2);
  border-color: rgba(56,189,248,.3);
}

/* Banner callout */
.banner {
  background: linear-gradient(135deg, rgba(255,106,0,.18), rgba(56,189,248,.14));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 20px;
}

/* Plan card glow effect */
.plan {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  transition: all 0.3s ease;
}

.plan:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  border-color: rgba(255,106,0,.4);
}

/* Details/FAQ accordion animation */
details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 12px 0;
  transition: all 0.3s ease;
}

details[open] {
  box-shadow: 0 0 24px rgba(168,85,247,.18);
  border-color: rgba(168,85,247,.3);
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* Button micro-interaction */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  color: #fff;
  transition: all .3s ease;
  backdrop-filter: blur(4px);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9375rem;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
}

.btn.primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: var(--glow);
}

.btn.primary:hover {
  filter: saturate(1.1);
  box-shadow: 0 0 26px rgba(255,106,0,.35);
}

/* Comparison Section */
.comparison-section {
  background: transparent;
  border-top: 1px solid var(--line);
}

.comparison-section .before-after-comparison {
  max-width: 1000px;
  margin: 0 auto;
}

/* Solution Overview Section */
.solution-overview {
  padding: 80px 0;
  background: transparent;
  min-height: auto;
  border-bottom: 1px solid hsl(var(--border));
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.solution-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.solution-content h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
  line-height: 1.2;
}

.overline {
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.solution-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.solution-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-item::before {
  content: "•";
  color: hsl(var(--primary));
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.highlight-content strong {
  display: block;
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.highlight-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.solution-visual {
  position: relative;
}

/* Mac Window Style */
.mac-window {
  background: rgba(15,15,15,0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.mac-window-header {
  background: linear-gradient(135deg, rgba(255,106,0,0.08), rgba(74,158,255,0.05));
  border-bottom: 1px solid rgba(255,106,0,0.2);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mac-controls {
  display: flex;
  gap: 0.5rem;
}

.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mac-close {
  background: #ff5f56;
}

.mac-minimize {
  background: #ffbd2e;
}

.mac-maximize {
  background: #27c93f;
}

.mac-title {
  font-size: 0.875rem;
  font-weight: 600;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mac-window-content {
  padding: 1rem;
}

.window-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.window-metric {
  text-align: center;
  padding: 0.75rem;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.window-metric:hover {
  background: rgba(255,106,0,0.05);
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-2px);
}

.window-metric:first-child {
  border-color: rgba(255,106,0,0.3);
}

.window-metric:last-child {
  border-color: rgba(74,158,255,0.3);
}

.window-metric-value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.window-metric-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

.comparison-chart {
  background: linear-gradient(135deg, rgba(255,106,0,0.03), rgba(74,158,255,0.02));
  border: 1px solid rgba(255,106,0,0.15);
  border-radius: 8px;
  padding: 1rem;
}

.chart-title {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}

.line-chart {
  width: 100%;
  margin-bottom: 0.75rem;
}

.chart-svg {
  width: 100%;
  height: auto;
}

.line-traditional {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 2s ease-out forwards;
}

.line-ai {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 2s ease-out 0.3s forwards;
  filter: drop-shadow(0 0 8px rgba(255,106,0,0.4));
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.dot-traditional {
  opacity: 0;
  animation: fade-in 0.5s ease-out 2s forwards;
}

.dot-ai {
  opacity: 0;
  animation: fade-in 0.5s ease-out 2.3s forwards, pulse-dot 2s ease-in-out 2.8s infinite;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@keyframes pulse-dot {
  0%, 100% {
    r: 4;
    opacity: 1;
  }
  50% {
    r: 6;
    opacity: 0.7;
  }
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 0.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.legend-line {
  width: 24px;
  height: 2px;
  border-radius: 1px;
}

.legend-line.traditional {
  background: rgba(150,150,150,0.6);
}

.legend-line.ai {
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
}

/* Dashboard CTA - Web: 44px */
.dashboard-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  color: white;
  padding: 0.5rem 1.75rem;
  height: 44px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  border: none;
  box-sizing: border-box;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(255,106,0,0.3);
}

.dashboard-cta:hover {
  background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--primary)));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,106,0,0.4);
}

.dashboard-preview {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

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

.dashboard-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--primary));
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: hsl(var(--primary));
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
}

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

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  background: rgba(255,255,255,0.03);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.metric-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.dashboard-chart {
  background: rgba(255,255,255,0.02);
  padding: 3rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.chart-placeholder {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* CTA Secondary Button */
.cta-secondary {
  background: transparent;
  color: hsl(var(--primary));
  padding: 0.75rem 1.75rem;
  min-height: 44px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  border: 2px solid hsl(var(--primary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.cta-secondary:hover {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateY(-2px);
}

.hero-cta-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Social Proof Section */
.social-proof {
  padding: 4rem 0;
  background: transparent;
  min-height: auto;
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.stat-banner-item {
  text-align: center;
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
}

.stat-big {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.stat-banner-item p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}

.stat-source {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.beta-highlight {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.beta-content {
  text-align: center;
}

.beta-tag {
  display: inline-block;
  background: rgba(255,106,0,0.2);
  color: hsl(var(--primary));
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.beta-highlight h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.beta-highlight p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.beta-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.logo-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.logo-placeholder:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,106,0,0.3);
  transform: translateY(-4px);
}

.logo-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.founder-quote {
  max-width: 900px;
  margin: 0 auto;
}

.quote-content {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: hsl(var(--primary));
  opacity: 0.3;
}

.quote-content blockquote {
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  padding-left: 3rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 3rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* Value Comparison in Pricing */
.value-comparison {
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 6px;
  padding: 0.375rem 0.625rem;
  margin: 0.5rem 0;
  text-align: center;
}

.value-comparison.featured {
  background: rgba(255,106,0,0.08);
  border-color: rgba(255,106,0,0.3);
}

.value-label {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.1rem;
}

.value-amount {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .window-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .window-metric-value {
    font-size: 2rem;
  }

  .mac-window-content {
    padding: 1rem;
  }

  .comparison-chart {
    padding: 1rem;
  }

  .chart-legend {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .solution-visual {
    order: -1;
  }

  .solution-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-banner {
    grid-template-columns: 1fr;
  }

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

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .quote-content {
    padding: 2rem 1.5rem;
  }

  .quote-content blockquote {
    font-size: 1.125rem;
    padding-left: 0;
  }

  .quote-author {
    padding-left: 0;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .fabric {
    animation: none;
  }
  .btn,
  .card,
  .feature,
  .step,
  .plan {
    transition: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .pulse-dot {
    animation: none;
  }
}
