/* ==========================================================================
   WAYUP LANDING PAGE STYLE SHEET
   Design System: Forest Green, Gold, Off-White, Emerald Accents
   ========================================================================== */

/* 1. VARIABLES & DESIGN SYSTEM */
:root {
  /* Colors */
  --bg-dark-deep: #03170e;
  --bg-dark-medium: #052c1e;
  --bg-dark-light: #083c27;
  --bg-app-grey: #fafaf7;
  --bg-app-card: #ffffff;
  
  --color-primary: #083c27;
  --color-primary-rgb: 8, 60, 39;
  --color-primary-light: #0a462e;
  --color-primary-hover: #0c5639;
  
  --color-gold: #dcae55;
  --color-gold-rgb: 220, 174, 85;
  --color-gold-light: #f2cf83;
  --color-gold-hover: #e5b85f;
  
  --color-emerald: #1eff7f;
  --color-emerald-light: #e6f7f0;
  
  --color-danger: #ffff00;
  --color-danger-light: #fee2e2;
  
  --color-text-dark: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #cbd5e1;
  --color-text-white: #ffffff;
  
  /* Fonts */
  --font-display: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px 0 rgba(220, 174, 85, 0.2);
  --shadow-glow-green: 0 0 25px 0 rgba(16, 185, 129, 0.15);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
}

/* 2. BASE RESET & TYPOGRAPHY */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 3. UTILITY CLASSES & CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-white { color: var(--color-text-white) !important; }
.text-gold { color: var(--color-gold) !important; }
.text-danger { color: var(--color-danger) !important; }
.text-light { color: var(--color-text-light) !important; }
.green-text { color: var(--color-emerald) !important; }
.pink-text { color: #ec4899 !important; }

.section-header {
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--color-text-white);
}

.section-subtitle {
  font-size: 1.15rem;
  color: #cccccc;
}

/* Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff66 0%, #33ff99 100%);
  color: #000000;
  box-shadow: 0 4px 14px 0 rgba(0, 255, 102, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0, 255, 102, 0.8);
  background: linear-gradient(135deg, #33ff99 0%, #00ff66 100%);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background-color: rgba(220, 174, 85, 0.1);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

/* Pulse Animation for buttons */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.8);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 255, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 255, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
  }
}

.pulse {
  animation: pulseGlow 1.5s infinite;
}

/* 4. MAIN HEADER */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(3, 23, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 174, 85, 0.1);
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile hamburger toggle (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text-white);
  border-radius: 2px;
  transition: var(--transition-normal);
}

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

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

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

.header-container.header-minimal {
  justify-content: center;
}

/* Logo styling */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-svg {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-white);
  letter-spacing: -0.03em;
}

.logo-text .highlight {
  color: var(--color-gold);
}

.nav-menu {
  display: none;
  gap: 32px;
}

@media (min-width: 769px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

.nav-item {
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-normal);
}

.nav-item:hover {
  color: var(--color-text-white);
}

.nav-item:hover::after {
  width: 100%;
}

/* 5. HERO SECTION */
.hero-section {
  position: relative;
  background: #000000;
  padding: 160px 0 160px 0;
  overflow: hidden;
  color: var(--color-text-white);
}

.hero-bg-glow {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 174, 85, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-white);
  margin-bottom: 32px;
  animation: float 4s ease-in-out infinite;
}

.hero-badge i {
  color: var(--color-gold);
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 4rem;
  max-width: 900px;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--color-text-white);
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 720px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 40px;
}

.system-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  opacity: 0.8;
  margin-bottom: 48px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* 6. INTERACTIVE APP DASHBOARD PREVIEW */
.dashboard-mockup-wrapper {
  width: 100%;
  max-width: 1050px;
  background-color: #1e1e1e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 25px 50px -12px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  border: 1px solid rgba(220, 174, 85, 0.15);
  transition: transform var(--transition-slow);
}

.dashboard-mockup-wrapper:hover {
  transform: translateY(-4px);
}

.mockup-header-bar {
  background-color: #1a1a1a;
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: #888888;
  font-family: var(--font-body);
}

/* The simulated App Layout */
.app-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  height: 520px;
  background-color: var(--bg-app-grey);
  color: var(--color-text-dark);
  text-align: left;
  pointer-events: none;
}

/* App Sidebar */
.app-sidebar {
  background-color: #ffffff;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  padding: 24px 0 16px 0;
  height: 100%;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  margin-bottom: 28px;
}

.app-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #042a1c;
}

.app-logo-text .gold {
  color: var(--color-gold);
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  flex-grow: 1;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.menu-item i {
  width: 18px;
  height: 18px;
}

.menu-item:hover {
  background-color: #f3f4f6;
  color: var(--color-text-dark);
}

.menu-item.active {
  background-color: var(--color-primary-light);
  color: var(--color-text-white);
}

.sidebar-profile {
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
  padding: 16px 16px 0 16px;
}

.profile-info {
  margin-bottom: 12px;
}

.profile-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.profile-email {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-new-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px;
  background: none;
  border: 1px dashed var(--color-text-muted);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-new-plan:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
  background-color: rgba(8, 60, 39, 0.04);
}

/* App Main Panel */
.app-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* App Topbar */
.app-topbar {
  height: 56px;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.topbar-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-item i {
  width: 16px;
  height: 16px;
  color: var(--color-text-light);
  opacity: 0.7;
}

.stat-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-text-light);
  opacity: 0.6;
  letter-spacing: 0.05em;
  line-height: 1;
}

.stat-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-white);
}

.status-rhythm {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rhythm-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-emerald);
  border-radius: 50%;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.enem-date {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
}

.notification-bell {
  position: relative;
  cursor: pointer;
}

.notification-bell i {
  width: 18px;
  height: 18px;
}

.bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-gold);
  color: var(--color-primary);
  font-size: 0.6rem;
  font-weight: 700;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* App Viewport */
.app-content-viewport {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-out forwards;
}

.tab-content.active {
  display: block;
}

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

.app-greeting {
  margin-bottom: 20px;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.date-badge i {
  width: 12px;
  height: 12px;
}

.app-main-title {
  font-size: 1.6rem;
  color: #042a1c;
  letter-spacing: -0.01em;
}

/* Metrics Dashboard Card */
.app-metrics-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #05261a 100%);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: var(--color-text-white);
  box-shadow: var(--shadow-md), var(--shadow-glow-green);
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.metric-column {
  display: flex;
  flex-direction: column;
  padding: 0 8px;
}

.metric-column.border-left {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 16px;
}

.app-metrics-card .card-label {
  font-size: 0.6rem;
  font-weight: 700;
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.app-metrics-card .card-value {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2px;
}

.app-metrics-card .card-desc {
  font-size: 0.65rem;
  opacity: 0.7;
}

/* Row Grid */
.app-rows-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.app-card {
  background-color: var(--bg-app-card);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.card-header-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.card-header-title i {
  width: 14px;
  height: 14px;
}

.alert-count {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.task-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius-md);
  padding: 12px;
}

.task-icon-wrapper {
  background-color: #fdf2f8;
  border-radius: var(--radius-sm);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.task-icon-wrapper i {
  width: 18px;
  height: 18px;
}

.task-details {
  flex-grow: 1;
}

.task-tag {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 800;
  color: #db2777;
  background-color: #fdf2f8;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.task-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.task-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.btn-action-task {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  cursor: pointer;
  white-space: nowrap;
}

.btn-action-task:hover {
  text-decoration: underline;
}

/* Card Preparacao */
.card-preparacao .prep-progress-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 12px;
}

.progress-big-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #042a1c;
  line-height: 1;
}

.progress-subtext {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-emerald) 100%);
  border-radius: 100px;
  transition: width var(--transition-slow);
}

/* Tab: Jornada timeline */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 15px;
  width: 2px;
  height: calc(100% - 16px);
  background-color: #e5e7eb;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #e5e7eb;
  background-color: #ffffff;
}

.step-icon i {
  width: 14px;
  height: 14px;
}

.timeline-step.completed .step-icon {
  background-color: var(--color-emerald-light);
  border-color: var(--color-emerald);
  color: var(--color-emerald);
}

.timeline-step.current .step-icon {
  background-color: rgba(220, 174, 85, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}

.timeline-step.locked .step-icon {
  color: #cbd5e1;
}

.step-content {
  background-color: #ffffff;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
  flex-grow: 1;
}

.step-content h4 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.step-content p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.badge-status {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  background-color: rgba(220, 174, 85, 0.1);
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 6px;
}

/* Tab: Evolution Chart */
.evolution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.evolution-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 14px;
}

.area-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-dark);
  display: block;
  margin-bottom: 8px;
}

.bar-evolution-wrapper .bar-label {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.bar-container {
  width: 100%;
  height: 6px;
  background-color: #f3f4f6;
  border-radius: 10px;
  overflow: hidden;
}

.bar-indicator {
  height: 100%;
  background-color: var(--color-primary-light);
  border-radius: 10px;
}

/* Tab Generic placeholder */
.tab-generic-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.generic-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.tab-generic-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 280px;
  margin-bottom: 20px;
}

.tab-section-title {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.tab-section-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* Floating support button inside app preview */
.app-support-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: #00e676; /* Vivid emerald from screenshot */
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0, 230, 118, 0.4);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.app-support-btn:hover {
  transform: scale(1.05);
}

.app-support-btn i {
  width: 16px;
  height: 16px;
}

/* 7. PROBLEM SECTION */
.problem-section {
  padding: 60px 0 100px 0;
  background: #000000;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

/* Problem cards now use LED card base but with danger theme */
.prob-led-card { cursor: default; }

.prob-card-inner {
  padding: 32px !important;
  background-color: #ffffff !important;
}

#prob-card-1 .led-card-glow { background: conic-gradient(from 180deg, #00ff66, #33ff99, #00ff66); }
#prob-card-2 .led-card-glow { background: conic-gradient(from 180deg, #00ff66, #33ff99, #00ff66); }
#prob-card-3 .led-card-glow { background: conic-gradient(from 180deg, #00ff66, #33ff99, #00ff66); }

#prob-card-1::before {
  border-color: rgba(0, 255, 102, 0.25);
  box-shadow: 0 0 0 1px rgba(0, 255, 102, 0.1), 0 0 12px rgba(0, 255, 102, 0.08), inset 0 0 12px rgba(0, 255, 102, 0.02);
}
#prob-card-2::before {
  border-color: rgba(0, 255, 102, 0.25);
  box-shadow: 0 0 0 1px rgba(0, 255, 102, 0.1), 0 0 12px rgba(0, 255, 102, 0.08), inset 0 0 12px rgba(0, 255, 102, 0.02);
}
#prob-card-3::before {
  border-color: rgba(0, 255, 102, 0.25);
  box-shadow: 0 0 0 1px rgba(0, 255, 102, 0.1), 0 0 12px rgba(0, 255, 102, 0.08), inset 0 0 12px rgba(0, 255, 102, 0.02);
}

.prob-card-inner .problem-icon {
  width: 64px;
  height: 64px;
  background-color: #00ff66;
  color: #000000;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-weight: 700;
}

.prob-card-inner .problem-icon i {
  width: 32px;
  height: 32px;
}

#prob-card-2 .problem-icon { 
  background-color: #ffff00;
  color: #000000;
}
#prob-card-3 .problem-icon { 
  background-color: #ff00ff;
  color: #000000;
}

.prob-card-inner h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.prob-card-inner p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 8. INTERACTIVE SIMULATOR SECTION */
.simulator-section {
  padding: 100px 0;
  background-color: var(--bg-dark-deep);
  background-image: radial-gradient(circle at 10% 20%, rgba(10, 70, 46, 0.3) 0%, transparent 40%);
  color: var(--color-text-white);
}

.simulator-card-wrapper {
  background-color: var(--bg-dark-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.simulator-left {
  padding: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.simulator-left h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.simulator-form {
  margin-top: 32px;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-dark-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-text-white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(220, 174, 85, 0.2);
}

.form-control option {
  background-color: var(--bg-dark-medium);
}

.simulator-right {
  padding: 48px;
  background-color: rgba(3, 23, 14, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.simulation-feedback-card {
  background-color: var(--bg-dark-light);
  border: 1px solid rgba(220, 174, 85, 0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.simulation-feedback-card h3 {
  font-size: 1.4rem;
  color: var(--color-text-white);
  margin-bottom: 24px;
}

.feedback-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

.feedback-stat {
  display: flex;
  flex-direction: column;
}

.f-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-text-light);
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.f-value {
  font-size: 1.25rem;
  font-weight: 800;
}

.quote-box {
  border-left: 3px solid var(--color-gold);
  padding-left: 16px;
  margin-bottom: 24px;
}

.quote-box p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  font-style: italic;
}

.action-arrow-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-gold-light);
}

.action-arrow-indicator i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* 9. FEATURES DETAIL SECTION */
.features-detail-section {
  padding: 100px 0;
  background: #000000;
}

/* LED Cards Grid */
.led-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

/* Staggered cascade animation for LED cards */
#led-card-1 {
  animation: cascadeIn 0.8s ease-out 0s;
}

#led-card-2 {
  animation: cascadeIn 0.8s ease-out 0.15s;
}

#led-card-3 {
  animation: cascadeIn 0.8s ease-out 0.3s;
}

#led-card-4 {
  animation: cascadeIn 0.8s ease-out 0.45s;
}

@keyframes cascadeIn {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
  }
}

/* Individual LED Card */
.led-card {
  position: relative;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  isolation: isolate;
  transform: translateY(-8px) scale(1.02);
}

.led-card:hover {
  transform: translateY(-12px) scale(1.05);
}

/* The ambient LED glow behind the card - always active with high intensity */
.led-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(
    from 180deg,
    var(--led-color-a, #10b981),
    var(--led-color-b, #dcae55),
    var(--led-color-a, #10b981)
  );
  opacity: 0.12;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(10px);
}

.led-card:hover .led-card-glow,
.led-card.active .led-card-glow {
  opacity: 0.2;
}

/* Colored LED border via pseudo element */
.led-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(220, 174, 85, 0.5);
  box-shadow:
    0 0 0 1px rgba(220, 174, 85, 0.25),
    0 0 20px rgba(220, 174, 85, 0.2),
    inset 0 0 20px rgba(220, 174, 85, 0.04);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

.led-card:hover::before {
  border-color: rgba(220, 174, 85, 0.6);
  box-shadow:
    0 0 0 1px rgba(220, 174, 85, 0.3),
    0 0 24px rgba(220, 174, 85, 0.25),
    inset 0 0 24px rgba(220, 174, 85, 0.05);
}

/* Card 1 - Book/Study: green LED */
#led-card-1::before {
  border-color: rgba(0, 255, 102, 0.2);
  box-shadow:
    0 0 0 1px rgba(0, 255, 102, 0.15),
    0 0 8px rgba(0, 255, 102, 0.06),
    inset 0 0 8px rgba(0, 255, 102, 0.01);
}
#led-card-1:hover::before {
  border-color: rgba(0, 255, 102, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 255, 102, 0.25),
    0 0 12px rgba(0, 255, 102, 0.1),
    inset 0 0 12px rgba(0, 255, 102, 0.02);
}
#led-card-1 .led-card-glow {
  background: conic-gradient(from 180deg, #00ff66, #33ff99, #00ff66);
}

/* Card 2 - Brain/Review: green LED */
#led-card-2::before {
  border-color: rgba(0, 255, 102, 0.2);
  box-shadow:
    0 0 0 1px rgba(0, 255, 102, 0.15),
    0 0 8px rgba(0, 255, 102, 0.06),
    inset 0 0 8px rgba(0, 255, 102, 0.01);
}
#led-card-2:hover::before {
  border-color: rgba(0, 255, 102, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 255, 102, 0.25),
    0 0 12px rgba(0, 255, 102, 0.1),
    inset 0 0 12px rgba(0, 255, 102, 0.02);
}
#led-card-2 .led-card-glow {
  background: conic-gradient(from 180deg, #00ff66, #33ff99, #00ff66);
}

/* Card 3 - Target/Priority: green LED */
#led-card-3::before {
  border-color: rgba(0, 255, 102, 0.2);
  box-shadow:
    0 0 0 1px rgba(0, 255, 102, 0.15),
    0 0 8px rgba(0, 255, 102, 0.06),
    inset 0 0 8px rgba(0, 255, 102, 0.01);
}
#led-card-3:hover::before {
  border-color: rgba(0, 255, 102, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 255, 102, 0.25),
    0 0 12px rgba(0, 255, 102, 0.1),
    inset 0 0 12px rgba(0, 255, 102, 0.02);
}
#led-card-3 .led-card-glow {
  background: conic-gradient(from 180deg, #00ff66, #33ff99, #00ff66);
}

/* Card 4 - Chart/Progress: green LED */
#led-card-4::before {
  border-color: rgba(0, 255, 102, 0.2);
  box-shadow:
    0 0 0 1px rgba(0, 255, 102, 0.15),
    0 0 8px rgba(0, 255, 102, 0.06),
    inset 0 0 8px rgba(0, 255, 102, 0.01);
}
#led-card-4:hover::before {
  border-color: rgba(0, 255, 102, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 255, 102, 0.25),
    0 0 12px rgba(0, 255, 102, 0.1),
    inset 0 0 12px rgba(0, 255, 102, 0.02);
}
#led-card-4 .led-card-glow {
  background: conic-gradient(from 180deg, #00ff66, #33ff99, #00ff66);
}

.led-card-inner {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  height: 100%;
  overflow: hidden;
}

/* Colored top gradient bar - always visible */
.led-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, transparent, rgba(220, 174, 85, 0.5), transparent);
  opacity: 1;
  transition: opacity 0.35s ease;
}

#led-card-1 .led-card-inner::after { background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.6), transparent); }
#led-card-2 .led-card-inner::after { background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.6), transparent); }
#led-card-3 .led-card-inner::after { background: linear-gradient(90deg, transparent, rgba(220, 174, 85, 0.7), transparent); }
#led-card-4 .led-card-inner::after { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.6), transparent); }

/* LED Card Icon */
.led-card-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.led-emoji {
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 0px transparent);
}

.led-card:hover .led-emoji {
  transform: scale(1.15);
}

#led-card-1 .led-emoji { filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6)); }
#led-card-2 .led-emoji { filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6)); }
#led-card-3 .led-emoji { filter: drop-shadow(0 0 8px rgba(220, 174, 85, 0.7)); }
#led-card-4 .led-emoji { filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.6)); }

/* LED ring behind icon */
.led-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(220, 174, 85, 0.15);
  background: rgba(220, 174, 85, 0.04);
  transition: all 0.35s ease;
}

#led-card-1 .led-icon-ring { border-color: rgba(16, 185, 129, 0.5); background: rgba(16, 185, 129, 0.08); box-shadow: 0 0 16px rgba(16, 185, 129, 0.2); }
#led-card-2 .led-icon-ring { border-color: rgba(99, 102, 241, 0.5); background: rgba(99, 102, 241, 0.08); box-shadow: 0 0 16px rgba(99, 102, 241, 0.2); }
#led-card-3 .led-icon-ring { border-color: rgba(220, 174, 85, 0.6); background: rgba(220, 174, 85, 0.08); box-shadow: 0 0 16px rgba(220, 174, 85, 0.25); }
#led-card-4 .led-icon-ring { border-color: rgba(236, 72, 153, 0.5); background: rgba(236, 72, 153, 0.08); box-shadow: 0 0 16px rgba(236, 72, 153, 0.2); }

/* LED Card Text */
.led-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

#led-card-1 .led-card-title { color: #059669; }
#led-card-2 .led-card-title { color: #4f46e5; }
#led-card-3 .led-card-title { color: #b45309; }
#led-card-4 .led-card-title { color: #be185d; }

.led-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}

.led-card-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  background-color: rgba(8, 60, 39, 0.06);
  color: var(--color-primary);
  border: 1px solid rgba(8, 60, 39, 0.12);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

#led-card-1 .led-card-badge { background-color: rgba(16, 185, 129, 0.1); color: #059669; border-color: rgba(16, 185, 129, 0.3); }
#led-card-2 .led-card-badge { background-color: rgba(99, 102, 241, 0.1); color: #4f46e5; border-color: rgba(99, 102, 241, 0.3); }
#led-card-3 .led-card-badge { background-color: rgba(220, 174, 85, 0.15); color: #b45309; border-color: rgba(220, 174, 85, 0.4); }
#led-card-4 .led-card-badge { background-color: rgba(236, 72, 153, 0.1); color: #be185d; border-color: rgba(236, 72, 153, 0.3); }

/* Click/Active pulse effect */
.led-card:active {
  transform: translateY(-4px) scale(1.01);
}

@keyframes ledPulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.led-card.active .led-card-glow {
  animation: ledPulse 2s ease-in-out infinite;
}

/* Responsive: 2 cols on tablet */
@media (max-width: 1024px) {
  .led-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 col on mobile */
@media (max-width: 640px) {
  .led-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Keep old vertical-flow styles for reference (not used anymore) */
.features-vertical-flow {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}

.flow-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.flow-row.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.flow-row.reverse .flow-info {
  grid-column: 2;
}

.flow-row.reverse .flow-visual {
  grid-column: 1;
}

.flow-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(8, 60, 39, 0.1);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.flow-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #042a1c;
}

.flow-info p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.flow-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.flow-check-list li i {
  color: var(--color-emerald);
  width: 18px;
  height: 18px;
}

.flow-visual {
  display: flex;
  justify-content: center;
}

.flow-card-preview {
  background-color: var(--bg-app-grey);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.card-glow {
  position: relative;
}

.card-glow::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: radial-gradient(circle, rgba(8, 60, 39, 0.05) 0%, transparent 70%);
  z-index: -1;
}

.task-box.mini {
  background-color: #ffffff;
  border-color: #e5e7eb;
}

.font-lg {
  font-size: 1.5rem !important;
}

.review-preview-box {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 12px;
}

.review-badge {
  display: inline-block;
  background-color: rgba(220, 174, 85, 0.15);
  color: var(--color-gold-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.review-preview-box h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.review-preview-box p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

.pad-lg {
  padding: 32px !important;
}

.streak-circle-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.streak-fire-icon {
  width: 56px;
  height: 56px;
  background-color: #fffbeb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.15);
}

.streak-fire-icon i {
  width: 28px;
  height: 28px;
}

.streak-count {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #042a1c;
  margin-bottom: 4px;
}

.streak-circle-preview p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  max-width: 180px;
}

/* 9b. HOW IT WORKS — ANIMATED TIMELINE */
.how-section {
  padding: 100px 0;
  background: #000000;
  position: relative;
}

.how-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(8, 60, 39, 0.06);
  border: 1px solid rgba(8, 60, 39, 0.15);
  color: var(--color-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.how-badge i {
  width: 14px;
  height: 14px;
  color: var(--color-gold-hover);
}

.how-steps-wrapper {
  max-width: 720px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.how-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--bg-dark-deep);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  box-shadow: 0 6px 16px rgba(220, 174, 85, 0.35);
  position: relative;
  z-index: 2;
}

.how-step-content {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background-color: #ffffff;
  border: 1px solid rgba(8, 60, 39, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.how-step-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(8, 60, 39, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step-icon-wrap i {
  width: 22px;
  height: 22px;
}

.how-step-icon-gold {
  background-color: rgba(220, 174, 85, 0.18);
  color: var(--color-gold-hover);
}

.how-step-text h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.how-step-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.how-highlight {
  color: var(--color-gold-hover);
  font-weight: 700;
}

.how-ready-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 100px;
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-size: 0.8rem;
  font-weight: 700;
}

.how-ready-badge i {
  width: 14px;
  height: 14px;
}

/* Vertical connector line between steps - fills in as it scrolls into view */
.how-step-connector {
  display: flex;
  justify-content: center;
  width: 56px;
  height: 40px;
  opacity: 1 !important;
  transform: none !important;
}

.how-step-connector span {
  display: block;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-primary));
  border-radius: 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s ease;
}

.how-step-connector.reveal-visible span {
  transform: scaleY(1);
}

@media (max-width: 640px) {
  .how-steps-wrapper {
    margin-top: 48px;
  }
  .how-step {
    gap: 16px;
  }
  .how-step-number {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
  .how-step-content {
    flex-direction: column;
    padding: 20px;
    gap: 14px;
  }
  .how-step-connector {
    width: 44px;
    height: 28px;
  }
}

/* 10. METHODOLOGY (COMPARISON TABLE) */
.methodology-section {
  padding: 100px 0;
  background: #000000;
  color: var(--color-text-white);
}

.comparison-table-wrapper {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: 
    var(--shadow-xl),
    0 0 24px rgba(255, 255, 0, 0.15),
    0 0 48px rgba(255, 255, 0, 0.08),
    inset 0 0 24px rgba(255, 255, 0, 0.04);
  border: 1px solid rgba(255, 255, 0, 0.12);
  transition: all 0.4s ease;
}

.comparison-table-wrapper:hover {
  box-shadow: 
    var(--shadow-xl),
    0 0 32px rgba(255, 255, 0, 0.25),
    0 0 64px rgba(255, 255, 0, 0.12),
    inset 0 0 32px rgba(255, 255, 0, 0.06);
  border-color: rgba(255, 255, 0, 0.18);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

.comparison-table th, 
.comparison-table td {
  padding: 24px 32px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  background-color: var(--bg-dark-medium);
}

.danger-header {
  color: #f87171;
}

.gold-header {
  color: var(--color-gold);
  background-color: var(--bg-dark-light) !important;
}

.feature-title {
  font-weight: 600;
  color: var(--color-text-white);
  width: 25%;
}

.comparison-table td:nth-child(2) {
  color: var(--color-text-light);
  opacity: 0.8;
  width: 37.5%;
}

.success-cell {
  background-color: rgba(8, 60, 39, 0.3);
  color: var(--color-text-white);
  font-weight: 500;
  border-left: 1px solid rgba(220, 174, 85, 0.1);
  border-right: 1px solid rgba(220, 174, 85, 0.1);
  width: 37.5%;
}

.success-cell i {
  color: var(--color-emerald);
  margin-right: 8px;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  display: inline-block;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* 11. TESTIMONIALS SECTION — AUTO-SCROLLING SOCIAL FEED */
.testimonials-section {
  padding: 100px 0;
  background: #000000;
  overflow: hidden;
}

.testimonials-section .section-header {
  margin-bottom: 56px;
}

/* Full-bleed marquee wrapper with edge fade mask */
.t-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.t-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 4px 0 4px 24px;
  animation: tMarqueeScroll 60s linear infinite;
}

.t-marquee-wrapper:hover .t-marquee-track {
  animation-play-state: paused;
}

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

.t-card {
  flex: 0 0 340px;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 60, 39, 0.08);
}

.t-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.t-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.bg-gold { background-color: rgba(220, 174, 85, 0.2); color: #b45309 !important; }
.bg-emerald { background-color: var(--color-emerald-light); color: var(--color-primary-light) !important; }
.bg-blue { background-color: #eff6ff; color: #1d4ed8 !important; }

.t-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.t-verified {
  width: 14px;
  height: 14px;
  color: var(--color-emerald);
}

.t-outcome {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 2px;
}

.t-msg {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.t-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  padding-top: 12px;
  border-top: 1px solid rgba(8, 60, 39, 0.06);
}

.t-channel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--color-primary-light);
}

.t-channel i {
  width: 13px;
  height: 13px;
}

.t-time {
  margin-right: auto;
}

.t-seen {
  width: 15px;
  height: 15px;
  color: #34b7f1;
}

@media (max-width: 640px) {
  .t-card {
    flex: 0 0 280px;
  }
}

/* 12. PRICING SECTION */
.pricing-section {
  padding: 100px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.pricing-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.pricing-section .container {
  position: relative;
  z-index: 10;
}

.pricing-card-container {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 40px;
}

.pricing-card.featured {
  background-color: #1a1a1a;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 0 40px rgba(220, 174, 85, 0.25);
}

.badge-featured {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold-hover) 0%, var(--color-gold) 100%);
  color: #020f0a;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(220, 174, 85, 0.3);
}

.plan-name {
  font-size: 1.8rem;
  color: var(--color-text-white);
  margin-bottom: 8px;
  text-align: center;
}

.plan-desc {
  font-size: 0.95rem;
  color: #bbbbbb;
  text-align: center;
  margin-bottom: 32px;
  opacity: 0.9;
}

.plan-price-box {
  text-align: center;
  background-color: #0f0f0f;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid rgba(220, 174, 85, 0.2);
}

.price-original {
  font-size: 0.95rem;
  color: #888888;
  text-decoration: line-through;
  opacity: 0.6;
}

.price-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 4px 0;
}

.price-main .currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-white);
}

.price-main .value {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-gold);
  line-height: 1;
}

.price-cash {
  display: block;
  font-size: 0.85rem;
  color: var(--color-emerald);
  font-weight: 600;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-white);
}

.plan-features-list li i {
  color: var(--color-emerald);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.plan-features-list .bonus-item {
  color: var(--color-gold-light);
}

.plan-features-list .bonus-item i {
  color: var(--color-gold);
}

.pricing-cta-wrapper {
  text-align: center;
}

.security-text {
  font-size: 0.75rem;
  color: var(--color-text-light);
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.security-text i {
  width: 14px;
  height: 14px;
  color: var(--color-emerald);
}

/* Guarantee Box */
.guarantee-box {
  background-color: var(--bg-dark-medium);
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(220, 174, 85, 0.1);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon i {
  width: 28px;
  height: 28px;
}

.guarantee-text h3 {
  font-size: 1.15rem;
  color: var(--color-text-white);
  margin-bottom: 6px;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  opacity: 0.9;
}

/* 13. FAQ SECTION */
.faq-section {
  padding: 100px 0;
  background: #000000;
}

.faq-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #333333;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
  background-color: #0f0f0f;
}

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

.faq-trigger {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-white);
  text-align: left;
  cursor: pointer;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  color: #888888;
  transition: transform var(--transition-normal);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 24px;
  background-color: #000000;
}

.faq-content p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
  padding-bottom: 24px;
}

/* Active FAQ State */
.faq-item.active {
  border-color: var(--color-gold);
}

.faq-item.active .faq-trigger {
  color: var(--color-primary-light);
}

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

.faq-item.active .faq-content {
  max-height: 200px; /* Suficiente para a resposta */
  padding-top: 8px;
}

/* 13b. MID-PAGE CONVERSION CTA */
.mid-cta-section {
  padding: 56px 0;
  background: #000000;
  color: var(--color-text-white);
  text-align: center;
}

.mid-cta-text {
  font-size: 1.15rem;
  color: var(--color-text-white);
  margin-bottom: 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.mid-cta-text strong {
  color: var(--color-gold);
}

/* 14. PRE-FOOTER CONVERSION CALLOUT */
.conversion-callout {
  padding: 80px 0;
  background: #000000;
  color: var(--color-text-white);
  text-align: center;
}

.conversion-callout h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--color-gold);
}

.conversion-callout p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

/* 15. MAIN FOOTER */
.main-footer {
  background: #000000;
  padding: 80px 0 40px 0;
  color: var(--color-text-white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 56px;
}

.footer-brand {
  max-width: 500px;
}

.footer-brand .logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-brand .logo-svg {
  height: 32px;
  width: auto;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-top: 16px;
  line-height: 1.6;
  opacity: 1;
  color: #bbbbbb;
}

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #bbbbbb;
  opacity: 0.85;
}

.footer-links a:hover {
  color: var(--color-gold);
  opacity: 1;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
  color: #999999;
}

/* 16. RESPONSIVE MEDIA QUERIES */

/* Responsive: Desktops / Laptops (1024px) */
@media (max-width: 1024px) {
  .app-container {
    grid-template-columns: 200px 1fr;
  }
  .app-metrics-card {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .metric-column.border-left {
    border-left: none;
    padding-left: 8px;
  }
  .metric-column:nth-child(n+4) {
    grid-column: span 1;
    margin-top: 12px;
  }
  .problem-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .simulator-card-wrapper {
    grid-template-columns: 1fr;
  }
  .simulator-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Responsive: Tablets (768px) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Mobile Menu Navigation */
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background-color: rgba(3, 23, 14, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(220, 174, 85, 0.15);
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-menu.mobile-active {
    display: flex;
  }
  .nav-menu .nav-item {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-menu .nav-item:last-child {
    border-bottom: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* App Mockup becomes stacked/scrollable or adjusted */
  .app-container {
    grid-template-columns: 1fr;
    height: auto;
  }
  .app-sidebar {
    height: auto;
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  .sidebar-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
  }
  .menu-item {
    width: auto;
    padding: 8px 12px;
  }
  .sidebar-profile {
    display: none; /* Simplifica no mobile */
  }
  .app-topbar {
    flex-direction: column;
    height: auto;
    padding: 12px 16px;
    gap: 8px;
    align-items: flex-start;
  }
  .topbar-stats {
    flex-wrap: wrap;
    gap: 12px;
  }
  .topbar-right {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8px;
  }
  
  .app-metrics-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-column:nth-child(5) {
    grid-column: span 2;
  }
  
  .app-rows-grid {
    grid-template-columns: 1fr;
  }
  
  .problem-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .flow-row, .flow-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .flow-row.reverse .flow-info {
    grid-column: 1;
  }
  .flow-row.reverse .flow-visual {
    grid-column: 1;
  }
  .flow-visual {
    order: 2;
  }
  .flow-info {
    order: 1;
  }
  
  .comparison-table th, 
  .comparison-table td {
    padding: 16px;
    font-size: 0.85rem;
  }
  
  .pricing-card.featured {
    padding: 24px;
  }
  .plan-price-box {
    padding: 16px;
  }
  .value {
    font-size: 2.8rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

/* Responsive: Small Phones (480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
    width: 100%;
  }
  .app-metrics-card {
    grid-template-columns: 1fr;
  }
  .metric-column.border-left {
    padding-left: 8px;
    margin-top: 12px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
  }
  .metric-column:nth-child(5) {
    grid-column: span 1;
  }
  .btn-action-task {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }
  .task-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .simulator-left, .simulator-right {
    padding: 24px 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .feedback-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
