/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
}

/* ===== ANIMATIONS ===== */

/* Fade animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

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

/* Scale animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Float animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse glow */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(37, 99, 235, 0.2);
  }
}

/* Shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Slide in */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Counter animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typing cursor */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Rotate */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Wave animation for background */
@keyframes wave {
  0% { transform: translateX(0) translateZ(0) scaleY(1); }
  50% { transform: translateX(-25%) translateZ(0) scaleY(0.55); }
  100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

/* Scroll reveal classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-900);
  background: white;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blue-500);
  flex-shrink: 0;
}

/* Buttons */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--blue-600);
  color: white;
  font-weight: 700;
  border-radius: var(--radius-xl);
  transition: all 0.2s;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}
.btn-primary:hover { 
  background: var(--blue-700); 
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Ripple effect */
.btn-primary, .btn-outline, .btn-white {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--gray-700);
  font-weight: 600;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--gray-50); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--blue-600);
  font-weight: 700;
  border-radius: var(--radius-2xl);
  transition: all 0.2s;
  box-shadow: var(--shadow-xl);
}
.btn-white:hover { background: var(--blue-50); }

.btn-success {
  background: var(--green-600);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
}

.btn-danger {
  background: var(--red-500);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-600);
  font-weight: 800;
  font-size: 1.125rem;
  transition: gap 0.2s;
}
.btn-link:hover { gap: 1rem; }

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block { width: 100%; }

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--blue-600);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-dot {
  width: 1rem;
  height: 1rem;
  background: white;
  border-radius: var(--radius-full);
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gray-900);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--blue-600); }

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.nav-mobile-btn {
  padding: 0.5rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-mobile-btn { display: none; }
}

/* Navbar animation */
.navbar {
  animation: slideInDown 0.5s ease;
}

.nav-logo {
  animation: fadeInLeft 0.6s ease;
}

.nav-links {
  animation: fadeIn 0.8s ease 0.2s both;
}

/* Hero */
.hero {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, var(--blue-50), white);
  position: relative;
  overflow: hidden;
}

/* Hero background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-container { grid-template-columns: 1fr 1fr; }
  .hero { padding: 6rem 1rem; }
}

.hero-content { 
  text-align: center;
  animation: fadeInUp 0.8s ease;
}
@media (min-width: 1024px) { .hero-content { text-align: left; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  animation: bounceIn 0.8s ease 0.2s both;
}

.hero-badge .icon {
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

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

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

.text-blue { color: var(--blue-600); }

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 36rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@media (min-width: 1024px) { .hero-subtitle { margin-left: 0; margin-right: auto; } }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-buttons .btn-primary {
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 2px solid white;
  margin-left: -0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-avatars img:hover {
  transform: translateY(-5px) scale(1.1);
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.trust-avatars img:first-child { margin-left: 0; }

.trust-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.trust-highlight {
  font-weight: 700;
  color: var(--gray-900);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s ease 0.4s both;
}

.lead-card-demo {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
  width: 100%;
  max-width: 20rem;
  border: 1px solid var(--gray-100);
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-card-demo:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

.lead-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.lead-badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.lead-badge.new {
  background: var(--green-100);
  color: var(--green-700);
  animation: pulse 2s ease-in-out infinite;
}

.lead-time {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.lead-card-body h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lead-card-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.lead-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.lead-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-600);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.stat-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--blue-100);
  font-weight: 500;
}

/* Sections */
.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) { .section-header h2 { font-size: 2.5rem; } }

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 40rem;
  margin: 0 auto;
}

/* How It Works */
.how-it-works {
  padding: 5rem 1rem;
  background: white;
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

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

.step-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  background: var(--gray-50);
  transform: translateY(-5px);
}

.step-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: var(--gray-200);
  display: none;
}

@media (min-width: 768px) {
  .step-card:not(:last-child)::after {
    display: block;
  }
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--blue-600);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--gray-600);
}

/* Benefits */
.benefits-section {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
  position: relative;
}

.benefits-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }

.benefits-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.benefits-content > p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.5s ease forwards;
}

.benefits-list li:nth-child(1) { animation-delay: 0.1s; }
.benefits-list li:nth-child(2) { animation-delay: 0.2s; }
.benefits-list li:nth-child(3) { animation-delay: 0.3s; }
.benefits-list li:nth-child(4) { animation-delay: 0.4s; }

.benefits-list .icon-check {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0.25rem;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: var(--radius-full);
  transition: transform 0.3s ease;
}

.benefits-list li:hover .icon-check {
  transform: scale(1.2);
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--blue-100);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.testimonial-content p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

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

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Pricing */
.pricing-section {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
  position: relative;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

.pricing-card {
  position: relative;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.pricing-card.highlighted {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(37, 99, 235, 0.1);
  transform: scale(1.05);
  z-index: 10;
  background: linear-gradient(180deg, white 0%, var(--blue-50) 100%);
}

.pricing-card.highlighted:hover {
  transform: scale(1.08) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

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

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-header p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-price .price {
  font-size: 2.5rem;
  font-weight: 800;
}

.pricing-price .period {
  color: var(--gray-500);
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.pricing-features .icon-check {
  color: var(--blue-500);
  margin-top: 0.125rem;
}

/* FAQ */
.faq-section {
  padding: 5rem 1rem;
  background: var(--gray-50);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--gray-900);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--blue-600);
}

.faq-question .icon {
  transition: transform 0.3s ease;
  color: var(--gray-400);
}

.faq-item.open .faq-question .icon {
  transform: rotate(180deg);
  color: var(--blue-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--gray-600);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

/* CTA */
.cta-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 50%, var(--blue-800, #1e40af) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) { .cta-section h2 { font-size: 3rem; } }

.cta-section p {
  font-size: 1.25rem;
  color: var(--blue-100);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0a0a0a 100%);
  color: white;
  padding: 4rem 1rem 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-400);
  max-width: 24rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover { 
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-bottom p {
  opacity: 0.8;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: white;
  border-radius: var(--radius-3xl);
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.5);
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.modal-close:hover { color: var(--gray-600); }

.modal-body {
  padding: 2rem;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  background: var(--blue-600);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-xl);
}

.modal-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.modal-header p {
  color: var(--gray-500);
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-left: 2.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  font-size: 1rem;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

.form-error {
  padding: 0.75rem;
  background: var(--red-50);
  border: 1px solid var(--red-100);
  color: var(--red-600);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}

.form-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
  text-align: center;
}

.form-footer p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.form-footer button {
  color: var(--blue-600);
  font-weight: 700;
}

.form-footer button:hover { text-decoration: underline; }

/* Dashboard */
.dashboard {
  min-height: 100vh;
  background: var(--gray-50);
  display: flex;
}

.sidebar {
  width: 18rem;
  background: white;
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 40;
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.sidebar.open { transform: translateX(0); }

@media (min-width: 768px) {
  .sidebar { transform: translateX(0); position: sticky; }
}

.sidebar-header {
  padding: 2rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-nav {
  flex: 1;
  padding: 1.5rem;
}

.sidebar-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 1rem;
  margin-bottom: 0.5rem;
}

.sidebar-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-2xl);
  font-weight: 700;
  color: var(--gray-500);
  transition: all 0.2s;
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
}

.sidebar-btn:hover { background: var(--gray-50); }

.sidebar-btn.active {
  background: var(--blue-50);
  color: var(--blue-600);
  border-color: var(--blue-100);
}

.sidebar-btn.admin {
  color: var(--amber-600);
  border-color: var(--amber-100);
}

.sidebar-btn.admin:hover { background: var(--amber-50); }

.sidebar-tip {
  margin-top: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  border-radius: var(--radius-3xl);
  color: white;
}

.sidebar-tip-label {
  font-size: 0.75rem;
  color: var(--blue-400);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.sidebar-tip p {
  font-size: 0.75rem;
  color: var(--gray-300);
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  margin-bottom: 1rem;
}

.sidebar-user img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-xl);
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.sidebar-user-info {
  flex: 1;
  min-width: 0;
}

.sidebar-user-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-plan {
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-logout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  color: var(--red-500);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  transition: all 0.2s;
}

.sidebar-logout:hover {
  background: var(--red-50);
  border-color: var(--red-100);
}

/* Dashboard Main */
.dashboard-main {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .dashboard-main { padding: 3rem; margin-left: 0; }
}

.dashboard-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .dashboard-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--green-500);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

.dashboard-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-900);
}

.dashboard-subtitle {
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 0.25rem;
}

.dashboard-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 0.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.meta-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-xl);
  font-weight: 700;
}

/* Dashboard Cards */
.dashboard-card {
  background: white;
  border-radius: 2.5rem;
  border: 1px solid var(--gray-100);
  padding: 3rem;
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(59, 130, 246, 0.05);
  position: relative;
  overflow: hidden;
}

.dashboard-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: var(--blue-600);
  animation: pulse 2s infinite;
}

.dashboard-card-content {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.mascot {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  box-shadow: var(--shadow-xl);
}

.dashboard-card h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.dashboard-card > p {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

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

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-3xl);
  border: 1px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card.blue {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.1);
}

.info-card.gray {
  background: var(--gray-50);
  border-color: var(--gray-100);
}

.info-card.orange {
  background: rgba(249, 115, 22, 0.05);
  border-color: rgba(249, 115, 22, 0.1);
}

.info-card-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.info-card.blue .info-card-label { color: var(--blue-400); }
.info-card.gray .info-card-label { color: var(--gray-400); }
.info-card.orange .info-card-label { color: #f97316; }

.info-card-value {
  font-size: 1.25rem;
  font-weight: 900;
}

.info-card.blue .info-card-value { color: var(--blue-700); }
.info-card.orange .info-card-value { color: #c2410c; }

.info-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-2xl);
}

/* Action Cards */
.action-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.action-card {
  padding: 2rem;
  border-radius: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.action-card:hover { box-shadow: var(--shadow-xl); }

.action-card.primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: white;
}

.action-card.secondary {
  background: white;
  border: 1px solid var(--gray-100);
}

.action-card h4 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.action-card p {
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 500;
}

.action-card.secondary h4 { color: var(--gray-900); }
.action-card.secondary p { color: var(--gray-400); }

.action-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.action-card:hover .action-icon { transform: translateX(0.5rem); }

.action-card.primary .action-icon { background: rgba(255, 255, 255, 0.2); }
.action-card.secondary .action-icon { background: var(--gray-100); }

/* Checkout */
.checkout-success {
  text-align: center;
}

.checkout-success-icon {
  width: 5rem;
  height: 5rem;
  background: var(--green-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.checkout-success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--green-600);
}

.pix-box {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.pix-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--green-800);
}

.pix-key {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1rem;
  margin-bottom: 1rem;
}

.pix-key-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.pix-key-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pix-key-value code {
  flex: 1;
  font-size: 0.875rem;
  font-family: monospace;
  color: var(--gray-800);
  word-break: break-all;
}

.pix-key-copy {
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  transition: background 0.2s;
}

.pix-key-copy:hover { background: var(--gray-100); }

.pix-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.pix-amount span:last-child {
  font-size: 1.125rem;
  font-weight: 900;
}

.pix-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--amber-50);
  color: var(--amber-700);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.plan-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.plan-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.plan-summary-name {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.plan-summary-title {
  font-size: 1.25rem;
  font-weight: 900;
}

.plan-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-summary-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.plan-summary-price span:first-child { color: var(--gray-600); }
.plan-summary-price span:last-child {
  font-size: 1.875rem;
  font-weight: 900;
}

.pix-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.btn-pix {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--green-600);
  color: white;
  font-weight: 700;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  transition: all 0.2s;
}

.btn-pix:hover { background: var(--green-700); }
.btn-pix:disabled { opacity: 0.7; cursor: not-allowed; }

/* Admin */
.admin-page {
  min-height: 100vh;
  background: var(--gray-50);
}

.admin-header {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-header-top {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-xl);
  color: var(--gray-600);
  font-weight: 500;
  transition: background 0.2s;
}

.admin-back:hover { background: var(--gray-100); }

.admin-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gray-900);
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-user span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.admin-tabs {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid var(--gray-100);
}

.admin-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.admin-tab:hover { color: var(--gray-700); }

.admin-tab.active {
  color: var(--blue-600);
  border-bottom-color: var(--blue-600);
}

.admin-main {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.admin-table-container {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.admin-table th {
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.admin-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.admin-table tr:hover { background: rgba(249, 250, 251, 0.5); }

.admin-table .user-cell {
  display: flex;
  flex-direction: column;
}

.admin-table .user-name {
  font-weight: 500;
  color: var(--gray-900);
}

.admin-table .user-email {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-blue {
  background: var(--blue-50);
  color: var(--blue-700);
}

.badge-green {
  background: var(--green-50);
  color: var(--green-700);
}

.badge-red {
  background: var(--red-50);
  color: var(--red-600);
}

.badge-gray {
  background: var(--gray-100);
  color: var(--gray-700);
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.admin-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

/* Loader */
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
}

.spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid var(--gray-200);
  border-top-color: var(--blue-600);
  border-radius: var(--radius-full);
  animation: spin 1s linear infinite;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-icon {
  width: 5rem;
  height: 5rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.empty-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gray-400);
}

.empty-state h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--gray-500);
  max-width: 24rem;
  margin: 0 auto;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

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

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

/* Referral System */
.referral-card {
  background: white;
  border-radius: 2.5rem;
  border: 1px solid var(--gray-100);
  padding: 2rem;
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(59, 130, 246, 0.05);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .referral-card { padding: 3rem; } }

.referral-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) { .referral-grid { grid-template-columns: 1fr 24rem; } }

.referral-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-2xl);
  margin-bottom: 1.5rem;
}

.referral-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.referral-title span { color: var(--blue-600); }

.referral-description {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  font-weight: 500;
  max-width: 32rem;
}

.referral-input-group {
  max-width: 28rem;
}

.referral-input-wrapper {
  position: relative;
  margin-bottom: 0.5rem;
}

.referral-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  padding-right: 7rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-600);
}

.referral-copy-btn {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  padding: 0 1rem;
  background: var(--blue-600);
  color: white;
  font-weight: 700;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.referral-copy-btn:hover { background: var(--blue-700); }

.referral-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.referral-progress-card {
  background: var(--gray-50);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  position: relative;
}

.referral-progress-bar-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: var(--blue-600);
}

.referral-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.referral-progress-label {
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.referral-progress-value {
  font-size: 1.875rem;
  font-weight: 900;
}

.referral-progress-icon {
  width: 3rem;
  height: 3rem;
  background: var(--blue-100);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.referral-progress-track {
  margin-bottom: 2rem;
}

.referral-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.referral-progress-bg {
  height: 1rem;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  overflow: hidden;
}

.referral-progress-fill {
  height: 100%;
  background: var(--blue-600);
  border-radius: var(--radius-full);
  transition: width 1s ease;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.referral-reward {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  margin-bottom: 1rem;
}

.referral-reward-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.referral-reward-label {
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.referral-reward-value {
  font-size: 0.875rem;
  font-weight: 700;
}

.referral-remaining {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

.referral-remaining span {
  color: var(--blue-600);
  font-weight: 900;
}

/* Lead History */
.history-card {
  background: white;
  border-radius: 2.5rem;
  border: 1px solid var(--gray-100);
  padding: 2rem;
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(59, 130, 246, 0.05);
}

@media (min-width: 768px) { .history-card { padding: 3rem; } }

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

.history-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--blue-600);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 99, 235, 0.2);
}

.history-title {
  font-size: 1.875rem;
  font-weight: 900;
}

.history-subtitle {
  color: var(--gray-500);
  font-weight: 500;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.history-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
}

.history-item:hover { box-shadow: var(--shadow-md); }

.history-item-count {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--green-100);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  font-size: 1.25rem;
  font-weight: 900;
}

.history-item-content {
  flex: 1;
}

.history-item-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.history-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.history-item-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.history-total {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--blue-50);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--blue-100);
  text-align: center;
  color: var(--blue-900);
  font-weight: 500;
}

.history-total strong { font-weight: 900; }

.history-item-badge {
  flex-shrink: 0;
}

/* Order Timer */
.order-timer-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1rem;
  margin-top: 0.5rem;
}

.order-timer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.order-timer-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.order-timer-label .icon {
  color: var(--amber-500);
}

.order-timer-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--amber-600);
  font-variant-numeric: tabular-nums;
}

.order-timer-track {
  height: 8px;
  background: var(--gray-200);
  border-radius: 9999px;
  overflow: hidden;
}

.order-timer-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--amber-400), var(--amber-500));
  border-radius: 9999px;
  transition: width 1s linear;
}

.pending-order-item {
  border: 2px solid var(--amber-200) !important;
}

.badge-amber {
  background: var(--amber-100);
  color: var(--amber-700);
}

.badge-green {
  background: var(--green-100);
  color: var(--green-700);
}

/* Utility */
.text-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-gray-500 { color: var(--gray-500); }
.text-gray-400 { color: var(--gray-400); }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

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

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--gray-600);
  border-radius: var(--radius-lg);
}

.mobile-menu-btn:hover { background: var(--gray-100); }

@media (max-width: 767px) {
  .mobile-menu-btn { display: flex; }
}

/* Mobile Dashboard Header */
.mobile-dashboard-header {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-100);
}

@media (max-width: 767px) {
  .mobile-dashboard-header { display: flex; }
}

/* Mobile Sidebar Overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 35;
}

.sidebar-overlay.active { display: block; }

/* Mobile Navigation */
@media (max-width: 767px) {
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .nav-buttons .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .nav-buttons .btn-outline {
    display: none;
  }
}

/* Mobile Hero */
@media (max-width: 767px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .lead-card-demo {
    max-width: 100%;
  }
}

/* Mobile Stats */
@media (max-width: 767px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

/* Mobile Sections */
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .how-it-works,
  .benefits-section,
  .pricing-section,
  .faq-section {
    padding: 3rem 1rem;
  }
}

/* Mobile Benefits */
@media (max-width: 767px) {
  .benefits-content h2 {
    font-size: 1.75rem;
  }
  
  .benefits-content > p {
    font-size: 1rem;
  }
  
  .benefits-list li {
    font-size: 1rem;
  }
}

/* Mobile Pricing */
@media (max-width: 767px) {
  .pricing-card {
    padding: 1.5rem;
  }
  
  .pricing-card.highlighted {
    transform: none;
  }
  
  .pricing-price .price {
    font-size: 2rem;
  }
}

/* Mobile FAQ */
@media (max-width: 767px) {
  .faq-question {
    padding: 1rem;
    font-size: 0.875rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
  }
}

/* Mobile CTA */
@media (max-width: 767px) {
  .cta-section {
    padding: 3rem 1rem;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-white,
  .cta-buttons .btn-outline {
    width: 100%;
  }
}

/* Mobile Footer */
@media (max-width: 767px) {
  .footer {
    padding: 2rem 1rem;
  }
  
  .footer-grid {
    gap: 2rem;
  }
}

/* Mobile Modal */
@media (max-width: 767px) {
  .modal-overlay {
    padding: 0.5rem;
    align-items: flex-end;
  }
  
  .modal-content {
    max-width: 100%;
    max-height: 95vh;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-header h3 {
    font-size: 1.25rem;
  }
}

/* Mobile Dashboard */
@media (max-width: 767px) {
  .dashboard {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    height: auto;
    max-height: 80vh;
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    transform: translateY(100%);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    border-right: none;
    border-top: 1px solid var(--gray-200);
    z-index: 50;
  }
  
  .sidebar.open {
    transform: translateY(0);
  }
  
  .sidebar-header {
    padding: 1rem 1.5rem;
  }
  
  .sidebar-nav {
    padding: 1rem;
    max-height: 40vh;
    overflow-y: auto;
  }
  
  .sidebar-tip {
    display: none;
  }
  
  .sidebar-footer {
    padding: 1rem;
  }
  
  .dashboard-main {
    padding: 1rem;
    padding-bottom: 5rem;
  }
  
  .dashboard-header {
    margin-bottom: 1.5rem;
  }
  
  .dashboard-title {
    font-size: 1.75rem;
  }
  
  .dashboard-meta {
    flex-wrap: wrap;
  }
  
  .dashboard-card {
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
  }
  
  .dashboard-card h2 {
    font-size: 1.375rem;
  }
  
  .dashboard-card > p {
    font-size: 1rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .mascot {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .action-grid {
    grid-template-columns: 1fr;
  }
  
  .action-card {
    padding: 1.25rem;
  }
  
  .action-card h4 {
    font-size: 1rem;
  }
}

/* Mobile Bottom Nav for Dashboard */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 0.5rem;
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    gap: 0.25rem;
  }
}

.mobile-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  color: var(--gray-500);
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}

.mobile-nav-btn.active {
  color: var(--blue-600);
  background: var(--blue-50);
}

.mobile-nav-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Referral */
@media (max-width: 767px) {
  .referral-card {
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
  }
  
  .referral-title {
    font-size: 1.5rem;
  }
  
  .referral-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .referral-input {
    padding: 1rem;
    padding-right: 5rem;
    font-size: 0.75rem;
  }
  
  .referral-copy-btn {
    padding: 0 0.75rem;
    font-size: 0.75rem;
  }
  
  .referral-copy-btn span:not(.icon) {
    display: none;
  }
  
  .referral-progress-card {
    padding: 1.5rem;
  }
  
  .referral-progress-value {
    font-size: 1.5rem;
  }
}

/* Mobile History */
@media (max-width: 767px) {
  .history-card {
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
  }
  
  .history-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .history-title {
    font-size: 1.375rem;
  }
  
  .history-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  
  .history-item-count {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  
  .history-item-title {
    font-size: 1rem;
  }
  
  .history-item-meta {
    font-size: 0.75rem;
  }
  
  .history-total {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

/* Mobile Order Timer */
@media (max-width: 767px) {
  .pending-order-item {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  .pending-order-item .history-item-count {
    width: 100%;
    height: auto;
    padding: 0.75rem;
    border-radius: var(--radius-xl);
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .pending-order-item .history-item-content {
    width: 100%;
  }
  
  .order-timer-box {
    padding: 0.75rem;
  }
  
  .order-timer-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .order-timer-value {
    font-size: 1.5rem;
  }
}

/* Mobile Admin */
@media (max-width: 767px) {
  .admin-header-top {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .admin-title {
    font-size: 1rem;
  }
  
  .admin-user {
    width: 100%;
    justify-content: space-between;
  }
  
  .admin-user span {
    display: none;
  }
  
  .admin-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .admin-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .admin-tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  
  .admin-main {
    padding: 1rem;
  }
  
  .admin-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .admin-table {
    min-width: 600px;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  .admin-section-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* Touch-friendly buttons */
@media (max-width: 767px) {
  .btn-primary,
  .btn-outline,
  .btn-success,
  .btn-danger {
    min-height: 44px;
  }
  
  .form-input {
    min-height: 48px;
    font-size: 16px; /* Prevents iOS zoom */
  }
}

/* Safe area for notched devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-bottom-nav {
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  }
  
  @media (max-width: 767px) {
    .dashboard-main {
      padding-bottom: calc(5rem + env(safe-area-inset-bottom));
    }
  }
}

/* ==================== NEW COMPONENTS ==================== */

/* Mascot */
.mascot-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.mascot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-sm { width: 3rem; height: 3rem; }
.mascot-md { width: 5rem; height: 5rem; }
.mascot-lg { width: 8rem; height: 8rem; }

.mascot-glow {
  position: absolute;
  inset: 0;
  background: var(--blue-400);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.2;
  animation: pulse 2s ease-in-out infinite;
}

.mascot-body {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: var(--radius-2xl);
  padding: 0.75rem;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.5s ease;
}

.mascot-body .icon {
  width: 100%;
  height: 100%;
}

.mascot-thinking .mascot-body {
  animation: bounce 1s ease-in-out infinite;
}

.mascot-celebrating .mascot-body {
  animation: bounceIn 0.8s ease;
}

.mascot-eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1rem;
}

.mascot-eye {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--blue-200);
  border-radius: 50%;
}

.mascot-thinking .mascot-eye {
  animation: ping 1s ease-in-out infinite;
}

.mascot-sparkle {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--amber-400);
  border-radius: 50%;
  padding: 0.375rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid white;
  animation: bounce 1s ease-in-out infinite;
}

.mascot-sparkle .icon {
  width: 1rem;
  height: 1rem;
  color: white;
}

.mascot-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-2xl);
  padding: 0.5rem 0.75rem;
  margin-top: -0.5rem;
  border: 1px solid var(--gray-100);
}

.status-pulse {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.status-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-400);
  border-radius: 50%;
  animation: ping 1s ease-in-out infinite;
}

.status-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-500);
  border-radius: 50%;
}

.status-text {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .hero-badges { justify-content: flex-start; }
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
}

.hero-badge-item .icon {
  width: 1rem;
  height: 1rem;
}

/* Interactive Demo */
.interactive-demo {
  padding: 5rem 1rem;
  background: white;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  border: 1px solid var(--blue-100);
}

.demo-steps {
  display: inline-flex;
  background: var(--gray-50);
  padding: 0.375rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--gray-200);
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.demo-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-2xl);
  font-weight: 700;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.demo-step.active {
  background: white;
  color: var(--gray-900);
  box-shadow: var(--shadow-md);
}

.demo-step .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.demo-step.active .icon {
  color: var(--blue-600);
}

.demo-canvas {
  background: var(--gray-900);
  border-radius: 3.75rem;
  box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.4);
  padding: 2rem;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-800);
}

@media (min-width: 768px) {
  .demo-canvas { padding: 3rem; }
}

.demo-canvas::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

/* Demo Step 1 */
.demo-step1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  animation: fadeIn 0.5s ease;
}

.demo-icon-wrapper {
  width: 5rem;
  height: 5rem;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.demo-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue-500);
  opacity: 0.1;
  filter: blur(20px);
  border-radius: 50%;
}

.demo-icon-wrapper .icon {
  width: 2rem;
  height: 2rem;
  color: var(--blue-500);
  position: relative;
  z-index: 1;
}

.demo-step1 h3 {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.demo-step1 > p {
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

.demo-search {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.demo-search .icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-500);
  transition: color 0.2s;
}

.demo-search input {
  width: 100%;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
}

.demo-search input::placeholder {
  color: var(--gray-600);
}

.demo-search input:focus {
  outline: none;
  border-color: var(--blue-500);
  background: rgba(15, 23, 42, 0.8);
}

.demo-search input:focus + .icon {
  color: var(--blue-500);
}

.demo-states {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-height: 320px;
  overflow-y: auto;
  padding: 0.5rem;
}

@media (min-width: 640px) {
  .demo-states { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .demo-states { grid-template-columns: repeat(5, 1fr); }
}

.demo-state {
  padding: 1.5rem;
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-3xl);
  font-weight: 700;
  color: var(--gray-500);
  transition: all 0.2s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.demo-state:hover {
  border-color: var(--gray-600);
  color: white;
  background: rgba(15, 23, 42, 0.6);
}

.demo-state.popular {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.05);
  color: white;
}

/* Demo Step 2 - Mining */
.demo-step2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  animation: fadeIn 0.7s ease;
}

.demo-mascot-mining {
  position: relative;
  margin-bottom: 3rem;
  transform: scale(1.1);
}

.demo-mascot-mining::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 2s ease-in-out infinite;
}

.mining-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--blue-600);
  padding: 0.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  animation: bounce 1s ease-in-out infinite;
}

.mining-badge .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.mining-info {
  text-align: center;
  max-width: 32rem;
  width: 100%;
}

.mining-info h3 {
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
}

.mining-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.mining-stat {
  text-align: left;
}

.mining-label {
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mining-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
}

.mining-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mining-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue-500);
}

.mining-log {
  text-align: left;
  margin-bottom: 1.5rem;
}

.mining-log-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  animation: slideInFromLeft 0.3s ease;
}

.log-time {
  color: var(--blue-500);
  font-weight: 700;
  opacity: 0.5;
}

.mining-progress {
  height: 0.625rem;
  background: var(--gray-800);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--gray-700);
  padding: 0.125rem;
}

.mining-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-500));
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

/* Demo Step 3 - Results */
.demo-step3 {
  display: flex;
  flex-direction: column;
  animation: fadeIn 1s ease;
}

.demo-results-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .demo-results-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.demo-complete-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-500);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pulse-dot {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.demo-results-header h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
}

.text-muted {
  color: var(--gray-500);
  font-weight: 300;
}

.demo-results-header > p {
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 0.5rem;
}

.demo-leads {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.demo-lead-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(51, 65, 85, 0.4);
  padding: 1.5rem;
  border-radius: var(--radius-3xl);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .demo-lead-card {
    flex-direction: row;
    align-items: center;
    padding: 2rem 2.5rem;
  }
}

.demo-lead-card:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(100, 116, 139, 0.5);
  box-shadow: var(--shadow-2xl);
}

.lead-avatar {
  width: 4rem;
  height: 4rem;
  background: var(--gray-800);
  border-radius: var(--radius-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-700);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lead-avatar {
    width: 5rem;
    height: 5rem;
  }
}

.lead-avatar .icon {
  width: 2rem;
  height: 2rem;
  color: var(--gray-500);
  transition: color 0.3s;
}

.demo-lead-card:hover .lead-avatar .icon {
  color: var(--blue-500);
}

.lead-info {
  flex: 1;
}

.lead-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.lead-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
}

@media (min-width: 768px) {
  .lead-name { font-size: 1.5rem; }
}

.lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-400);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lead-badge .icon {
  width: 0.875rem;
  height: 0.875rem;
}

.lead-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.lead-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-500);
}

.lead-detail .icon {
  width: 1rem;
  height: 1rem;
}

.lead-phone {
  background: rgba(15, 23, 42, 0.5);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
}

.blur-text {
  filter: blur(4px);
  user-select: none;
}

.lead-value {
  text-align: right;
}

.value-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.value-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-500);
}

.demo-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-500);
}

@media (min-width: 1024px) {
  .demo-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.demo-partners {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.partner-avatars {
  display: flex;
}

.partner-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 4px solid var(--gray-900);
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gray-400);
  box-shadow: var(--shadow-lg);
  margin-left: -0.75rem;
}

.partner-avatar:first-child {
  margin-left: 0;
}

.demo-partners > span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
}

.demo-audit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
}

.demo-audit .icon {
  width: 1rem;
  height: 1rem;
}

/* Rescue Modal */
.rescue-modal {
  text-align: center;
}

.rescue-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: var(--blue-50);
  border-radius: var(--radius-3xl);
  margin-bottom: 2rem;
}

.rescue-icon .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--blue-600);
}

.rescue-icon-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
}

.rescue-icon-badge .icon {
  width: 1rem;
  height: 1rem;
  color: white;
}

.rescue-modal h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.rescue-modal > p {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.rescue-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--gray-100);
  text-align: left;
}

.rescue-stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rescue-stat-icon.green {
  background: var(--green-100);
  color: var(--green-600);
}

.rescue-stat-icon.blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.rescue-stat-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.rescue-stat-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rescue-stat-value {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--gray-900);
}

.rescue-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

.rescue-guarantee .icon {
  width: 1rem;
  height: 1rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  background: var(--gray-900);
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--gray-800);
}

@media (min-width: 768px) {
  .testimonials-carousel { height: 600px; }
}

.testimonial-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: transform 10s ease;
}

.testimonial-slide:hover .testimonial-bg {
  transform: scale(1.1);
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--gray-900) 0%, rgba(15, 23, 42, 0.8) 50%, transparent 100%);
}

.testimonial-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

@media (min-width: 768px) {
  .testimonial-content { padding: 3rem; }
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating .star {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--amber-500);
}

.testimonial-verified {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  font-weight: 900;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 1px solid var(--gray-700);
  padding-left: 0.75rem;
  margin-left: 0.5rem;
}

.testimonial-verified .icon {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--blue-400);
}

.testimonial-quote-icon {
  position: absolute;
  top: 3rem;
  left: 2rem;
  opacity: 0.2;
}

.testimonial-quote-icon .icon {
  width: 4rem;
  height: 4rem;
  color: var(--blue-600);
}

.testimonial-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .testimonial-text { font-size: 1.5rem; }
}

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

.testimonial-author img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(59, 130, 246, 0.3);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.testimonial-author strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.125rem;
}

.testimonial-author span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-controls {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-controls button {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.testimonial-controls button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-controls .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-counter {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-counter .current {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--blue-400);
}

.counter-bar {
  width: 3rem;
  height: 2px;
  background: var(--gray-800);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.counter-progress {
  height: 100%;
  background: var(--blue-600);
  animation: progressFill 8s linear;
}

@keyframes progressFill {
  from { width: 0; }
  to { width: 100%; }
}

.testimonial-counter .total {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
}

/* Opportunity Modal */
.opportunity-modal {
  text-align: center;
}

.opportunity-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: var(--green-100);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.opportunity-icon .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--green-600);
}

.opportunity-icon-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.opportunity-icon-badge .icon {
  width: 0.75rem;
  height: 0.75rem;
  color: white;
}

.opportunity-modal h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.opportunity-modal > p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.opportunity-quote {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.opportunity-quote p {
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--blue-900);
  line-height: 1.6;
}

/* Quiz Page */
.quiz-page {
  min-height: 100vh;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.quiz-container {
  max-width: 32rem;
  width: 100%;
}

.quiz-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.quiz-back:hover {
  color: var(--gray-900);
}

.quiz-back .icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.quiz-back:hover .icon {
  transform: translateX(-0.25rem);
}

.quiz-mascot {
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-leo-message {
  position: relative;
  display: inline-block;
  background: var(--blue-600);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  margin-top: 1rem;
  max-width: 20rem;
}

.quiz-leo-message p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.quiz-leo-message::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border: 0.5rem solid transparent;
  border-bottom-color: var(--blue-600);
}

.quiz-card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

.quiz-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--blue-50);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blue-600);
}

.quiz-title {
  flex: 1;
}

.quiz-title h3 {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.quiz-progress {
  height: 0.25rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--blue-600);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.quiz-content {
  margin-bottom: 1.5rem;
}

.quiz-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.quiz-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  font-size: 1.125rem;
  transition: all 0.2s;
}

.quiz-input:focus {
  outline: none;
  border-color: var(--blue-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.quiz-actions {
  display: flex;
  gap: 1rem;
}

.quiz-actions .btn-primary {
  flex: 1;
  padding: 1.25rem;
}

.quiz-actions .btn-outline {
  padding: 1.25rem 1.5rem;
}

.quiz-plans {
  max-width: 72rem;
  width: 100%;
}

.quiz-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Tips Modal */
.tips-leo-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--blue-50);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--blue-100);
  margin-bottom: 2rem;
}

.tips-leo-message p {
  font-size: 0.875rem;
  font-weight: 500;
  font-style: italic;
  color: var(--blue-900);
  line-height: 1.5;
}

.tips-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tips-step {
  border-left: 4px solid var(--blue-600);
  padding-left: 1.5rem;
}

.tips-step h4 {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.tips-step p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* CTA Button White Outline */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(59, 130, 246, 0.5);
  backdrop-filter: blur(10px);
  color: white;
  font-weight: 700;
  border: 1px solid rgba(147, 197, 253, 0.3);
  border-radius: var(--radius-2xl);
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline-white:hover {
  background: var(--blue-700);
}

/* Spinner */
.spinner {
  animation: spin 1s linear infinite;
}

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

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

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

.animate-in {
  animation: fadeInUp 0.5s ease;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--blue-600);
}

.footer-social .icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* PIX Payment Enhancements */
.pix-qrcode {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.pix-qrcode img {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
}

.pix-key-value code {
  font-size: 0.75rem;
  word-break: break-all;
  max-height: 60px;
  overflow-y: auto;
  display: block;
}

.pix-expires {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  border-radius: var(--radius-lg);
  color: var(--amber-700);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}

.pix-expires .icon {
  width: 1rem;
  height: 1rem;
}

.pix-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-lg);
  color: var(--blue-700);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pix-status .icon {
  width: 1rem;
  height: 1rem;
}

.spinner-small {
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--blue-200);
  border-top-color: var(--blue-600);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--gray-100);
  color: var(--gray-700);
  font-weight: 600;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.btn-secondary:hover {
  background: var(--gray-200);
}

.checkout-success-icon.green {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
}

/* Form in checkout modal */
#checkout-form .form-group {
  margin-bottom: 1rem;
}

#checkout-form .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

#checkout-form .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all 0.2s;
}

#checkout-form .form-input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#checkout-form .form-error {
  color: var(--red-500);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

#checkout-form .pix-info {
  margin: 1rem 0;
}

#checkout-form .btn-pix {
  margin-top: 0.5rem;
}
