@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

/* ===== VARIABLES & DESIGN SYSTEM ===== */
:root {
  --bg-main: #060913;
  --bg-surface: rgba(17, 24, 39, 0.5);
  --bg-card: rgba(30, 41, 59, 0.4);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.2);
  
  --primary: #8b5cf6;
  --primary-hover: #7c3aed;
  --primary-glow: rgba(139, 92, 246, 0.4);
  
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.2);
  
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-inverse: #060913;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --glass-blur: blur(16px);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLE ===== */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#features, #maps, #funcionamento, #pricing {
  scroll-margin-top: 80px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background glows */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 700;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== LAYOUT & SHELL ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: var(--glass-blur);
  background: rgba(6, 9, 19, 0.7);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.07);
}

nav a:not(.nav-links a):not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

nav a:not(.nav-links a):not(.btn):hover {
  color: var(--text-main);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.6);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(139, 92, 246, 0.1);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* ===== GLASS CARD ===== */
.card {
  backdrop-filter: var(--glass-blur);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  will-change: transform;
  transform-style: flat;
}

.card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12), 0 0 0 1px rgba(139,92,246,0.08);
}

/* ===== LANDING PAGE SPECIFICS ===== */
.hero {
  padding: 100px 0 60px 0;
  text-align: center;
}

.badge {
  background: rgba(139, 92, 246, 0.07);
  color: rgba(167, 139, 250, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.18);
  padding: 5px 13px 5px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  letter-spacing: 0;
  text-transform: none;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--primary);
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(160deg, #fff 25%, #c4b5fd 75%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 36px auto;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-proof-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-proof-label {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.07);
}

/* Simulated Interface Mockup */
.mockup-container {
  margin-top: 40px;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.2) 0%, rgba(0,0,0,0) 60%);
  padding: 20px;
  border-radius: 24px;
}

.mockup {
  background: #0f1322;
  border: 4px solid #1e293b;
  border-radius: 16px;
  height: 380px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  display: flex;
  overflow: hidden;
  text-align: left;
}

.mockup-sidebar {
  width: 200px;
  background: #090d16;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
}

.mockup-item {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  margin-bottom: 16px;
}

.mockup-item.active {
  background: var(--primary);
  width: 80%;
}

.mockup-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  display: inline-block;
  animation: pulse-green 2s infinite;
}

/* Features Grid */
.features {
  padding: 80px 0;
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bento-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  will-change: transform;
}

.bento-card:hover {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 24px rgba(139,92,246,0.1);
}

.bento-card.wide { grid-column: span 2; }

.bento-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(139,92,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #a78bfa;
}

.bento-icon i { width: 20px; height: 20px; }

.bento-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bento-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
}

.section-title {
  text-align: center;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: radial-gradient(ellipse at bottom, rgba(16, 185, 129, 0.05) 0%, rgba(0,0,0,0) 60%);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.popular {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(139,92,246,0.15);
}

.price-card.popular:hover {
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.35), 0 0 0 1px rgba(139,92,246,0.3);
}

.price-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.price {
  font-size: 48px;
  font-family: var(--font-display);
  color: #fff;
  margin: 20px 0;
  display: flex;
  align-items: baseline;
}

.price span {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  flex: 1;
}

.pricing-features li {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

/* ===== AUTH PAGE SPECIFICS ===== */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h2 {
  font-size: 28px;
  margin-top: 12px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.auth-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.auth-link:hover {
  text-decoration: underline;
}

/* ===== DASHBOARD SPECIFICS ===== */
.dashboard-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 40px 0;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.db-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
}

.db-nav-item:hover, .db-nav-item.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-color);
}

.db-nav-item.active {
  border-color: var(--primary-glow);
  color: var(--primary);
  background: rgba(139, 92, 246, 0.05);
}

.dashboard-content {
  min-height: 500px;
}

/* Key display card */
.key-box {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0;
  font-family: monospace;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--primary);
  font-weight: bold;
}

.key-blur {
  filter: blur(5px);
  user-select: none;
}

.step-card {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.01);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: bold;
  flex-shrink: 0;
}

.alert-box {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 8px;
  padding: 16px;
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.alert-box i {
  color: var(--danger);
  font-size: 20px;
  flex-shrink: 0;
}

/* Toast System */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f1322;
  border: 1px solid var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  font-size: 14px;
  font-weight: 500;
  animation: slide-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== MOCKUP TAB SIMULATOR ===== */
.mockup-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mockup-tab-btn:hover {
  color: var(--text-main);
}

.mockup-tab-btn.active {
  color: #a78bfa;
  border-bottom-color: #6c4de6;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-green {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes slide-in {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  header nav { display: none; }
}

/* Layout centralizado para usuários sem licença ativa */
.unlicensed-layout {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

/* ===== BLUR SENSITIVE DATA ===== */
.blur-sensitive {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  transition: filter 0.3s ease;
}

/* ===== WHATSAPP WEB SIMULATOR ===== */
.wa-container {
  display: flex;
  background: #111b21;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  height: 600px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  font-family: Segoe UI, Helvetica Neue, Helvetica, Lucida Grande, Arial, Ubuntu, Cantarell, Fira Sans, sans-serif;
  text-align: left;
}

/* 1. Left Icons Sidebar */
.wa-sidebar-left {
  width: 60px;
  background: #202c33;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-sidebar-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aebac1;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.wa-sidebar-icon:hover, .wa-sidebar-icon.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* 2. Chats Column */
.wa-chat-list {
  width: 320px;
  background: #111b21;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-chat-header {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-search-bar {
  padding: 8px 16px;
}

.wa-search-input {
  width: 100%;
  background: #202c33;
  border: none;
  border-radius: 8px;
  padding: 8px 12px 8px 32px;
  color: #d1d7db;
  font-size: 13px;
  outline: none;
}

.wa-filter-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 16px;
  overflow-x: auto;
}

.wa-filter-tag {
  background: #202c33;
  color: #aebac1;
  border: none;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.wa-filter-tag.active {
  background: #0a5f54;
  color: #e9edef;
}

/* Chats Scroll Area */
.wa-chats-scroll {
  flex: 1;
  overflow-y: auto;
}

.wa-chat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.wa-chat-item:hover {
  background: #202c33;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #53bdeb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.wa-chat-info {
  flex: 1;
  min-width: 0;
}

.wa-chat-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.wa-chat-title {
  color: #e9edef;
  font-size: 14px;
  font-weight: 500;
}

.wa-chat-time {
  font-size: 11px;
  color: #8696a0;
}

.wa-chat-msg {
  font-size: 12px;
  color: #8696a0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 3. Main Welcome Column */
.wa-middle-content {
  flex: 1;
  background: #222e35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  position: relative;
}

.wa-welcome-title {
  font-size: 28px;
  color: #e9edef;
  margin: 24px 0 10px 0;
  font-weight: 300;
}

.wa-welcome-desc {
  font-size: 14px;
  color: #8696a0;
  max-width: 460px;
}

.wa-crypt-footer {
  position: absolute;
  bottom: 24px;
  font-size: 12px;
  color: #667781;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 4. Right Extension Dock Panel */
.wa-ext-panel {
  width: 320px;
  background: #0b0b1a;
  border-left: 1px solid #2a2a4a;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

/* ===== STEPS ===== */
.steps-grid {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover {
  border-color: rgba(108,77,230,0.4);
  transform: translateY(-4px);
}
.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #6c4de6, #8b6cf0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 18px auto;
  box-shadow: 0 0 20px rgba(108,77,230,0.35);
}
.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@keyframes faq-slide-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.08s linear;
  position: relative;
  will-change: transform;
  --mx: -9999px; --my: -9999px;
}
.faq-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(139,92,246,0.09), transparent 50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.faq-item:hover::after { opacity: 1; }
.faq-item > * { position: relative; z-index: 1; }

.faq-item:hover {
  border-color: rgba(108,77,230,0.35);
  box-shadow: 0 6px 24px rgba(108,77,230,0.08);
}
.faq-item.is-open {
  border-color: rgba(108,77,230,0.5);
  box-shadow: 0 8px 32px rgba(108,77,230,0.14), inset 0 0 0 1px rgba(108,77,230,0.08);
}
.faq-item summary {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 12px;
  transition: color 0.2s;
}
.faq-item.is-open summary { color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
  line-height: 1;
}
.faq-item.is-open summary::after {
  transform: rotate(45deg);
  color: #a78bfa;
}
.faq-body {
  padding: 8px 16px 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  border-top: 1px solid rgba(108,77,230,0.12);
  overflow: hidden;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, rgba(108,77,230,0.1), rgba(139,108,240,0.04));
  border-top: 1px solid rgba(108,77,230,0.2);
  border-bottom: 1px solid rgba(108,77,230,0.2);
  padding: 80px 0;
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.cta-final p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SCROLL REVEAL ===== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    transition: none;
    opacity: 1;
    transform: none;
  }
}


