@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
  --bg-dark: #07070a;
  --bg-card: rgba(15, 15, 24, 0.7);
  --bg-card-hover: rgba(22, 22, 38, 0.8);
  
  --primary-gradient: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
  --secondary-gradient: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
  --text-gradient: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  --accent-glow: radial-gradient(circle, rgba(129, 140, 248, 0.15) 0%, rgba(0,0,0,0) 70%);

  --color-primary: #818cf8;
  --color-secondary: #22d3ee;
  --color-purple: #c084fc;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(129, 140, 248, 0.3);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(129, 140, 248, 0.2);
  
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Background Blobs */
.bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  mix-blend-mode: screen;
}

.blob-1 {
  top: 10%;
  left: 15%;
  width: 40vw;
  height: 40vw;
  background: var(--color-primary);
  animation: float-blob 20s infinite alternate;
}

.blob-2 {
  top: 40%;
  right: 10%;
  width: 35vw;
  height: 35vw;
  background: var(--color-secondary);
  animation: float-blob 25s infinite alternate-reverse;
}

.blob-3 {
  bottom: 10%;
  left: 20%;
  width: 30vw;
  height: 30vw;
  background: var(--color-purple);
  animation: float-blob 18s infinite alternate;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 10%) scale(1.1); }
  100% { transform: translate(-5%, -5%) scale(0.95); }
}

/* Grid overlay effect */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
}

/* ==========================================
   REUSABLE COMPONENTS
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
  gap: 8px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #07070a;
  border: none;
  box-shadow: 0 4px 15px rgba(129, 140, 248, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(129, 140, 248, 0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(129, 140, 248, 0.05);
}

.text-glow {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.badge-primary {
  background: rgba(129, 140, 248, 0.1);
  border: 1px solid rgba(129, 140, 248, 0.2);
  color: var(--color-primary);
}

/* ==========================================
   NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-normal);
  padding: 24px 0;
}

header.scrolled {
  padding: 16px 0;
  background: rgba(7, 7, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.logo:hover .logo-icon::after {
  left: 100%;
  transition: 0.8s;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

nav a:hover {
  color: var(--text-main);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* High Fidelity Interactive Dashboard Preview */
.hero-mockup-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.hero-mockup-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.dashboard-mockup {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(10, 10, 16, 0.85);
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  backdrop-filter: blur(20px);
  text-align: left;
}

.mockup-header {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-title {
  font-size: 0.8rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup-search {
  width: 120px;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.mockup-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 380px;
  gap: 24px;
}

.mockup-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-item {
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  width: 100%;
}

.sidebar-item.active {
  background: rgba(129, 140, 248, 0.15);
  border: 1px dashed rgba(129, 140, 248, 0.3);
}

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.mockup-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-col h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.mockup-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
  border-color: rgba(129, 140, 248, 0.4);
}

.mockup-card .card-bar {
  height: 4px;
  width: 40px;
  border-radius: 2px;
  background: var(--color-primary);
  margin-bottom: 8px;
}

.mockup-card .card-bar.cyan { background: var(--color-secondary); }
.mockup-card .card-bar.purple { background: var(--color-purple); }

.mockup-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Sparking floating indicators for premium look */
.floating-element {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.fe-1 {
  top: 15%;
  left: -8%;
  animation: float 6s ease-in-out infinite;
}

.fe-2 {
  bottom: 20%;
  right: -8%;
  animation: float 6s ease-in-out infinite 3s;
}

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

.fe-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.fe-text h5 {
  font-size: 0.8rem;
  font-weight: 600;
}
.fe-text p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(129, 140, 248, 0.1);
  border: 1px solid rgba(129, 140, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.glass-card:hover .feature-icon {
  background: var(--primary-gradient);
  color: #000;
  transform: scale(1.05);
}

.features h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

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

/* ==========================================
   SIMULATOR SECTION
   ========================================== */
.simulator-section {
  padding: 100px 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(129, 140, 248, 0.04) 0%, rgba(0,0,0,0) 100%);
  position: relative;
}

.simulator-box {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  background: rgba(15, 15, 24, 0.6);
  border-radius: 32px;
  padding: 40px;
  backdrop-filter: blur(20px);
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.sim-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.sim-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sim-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-gradient);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
  transition: all var(--transition-fast);
  color: #07070a;
}

.sim-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.5);
  filter: brightness(1.1);
}

.sim-action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.sim-container {
  display: grid;
  grid-template-columns: 1.2fr 80px 1.2fr;
  gap: 20px;
  min-height: 320px;
  align-items: center;
}

/* Messy Board styling */
.messy-board {
  border: 1px dashed rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.02);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  transition: all var(--transition-slow);
}

.messy-card {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #fca5a5;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.messy-card.urgent {
  grid-column: span 2;
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
}

.messy-card h5 {
  font-weight: 700;
  margin-bottom: 4px;
}

.messy-card .card-source {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.65rem;
  background: rgba(239, 68, 68, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Streamline Connector */
.sim-arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sim-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  transition: all var(--transition-normal);
}

.sim-arrow.active {
  background: rgba(34, 211, 238, 0.1);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  animation: pulse-arrow 1.5s infinite;
}

@keyframes pulse-arrow {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

/* Clean Board styling */
.clean-board {
  border: 1px dashed rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.02);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  transition: all var(--transition-slow);
}

.clean-placeholder {
  text-align: center;
  color: var(--text-dark);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.clean-placeholder .loader-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-top-color: var(--color-secondary);
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.clean-card {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  padding: 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #e0f7fa;
  transform: translateX(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clean-card.show {
  transform: translateX(0);
  opacity: 1;
}

.clean-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clean-card h5 {
  font-weight: 700;
  font-family: var(--font-heading);
}

.clean-card p {
  font-size: 0.75rem;
  color: #80deea;
}

.clean-tag {
  background: rgba(34, 211, 238, 0.15);
  color: var(--color-secondary);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Transitions for Simulator */
.messy-board.streamlined {
  opacity: 0.2;
  filter: blur(2px);
  pointer-events: none;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing {
  padding: 100px 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pricing-card.popular {
  border-color: var(--color-primary);
  position: relative;
}

.pricing-card.popular::after {
  content: 'POPULAIRE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.price {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.features-list {
  list-style: none;
  margin: 24px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.features-list li::before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: bold;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: #040406;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 60px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-newsletter h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-newsletter p {
  color: var(--text-dark);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: 50px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: rgba(129, 140, 248, 0.5);
  box-shadow: 0 0 10px rgba(129, 140, 248, 0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  font-size: 0.85rem;
}

/* ==========================================
   SCROLL & FADE-IN ANIMATIONS
   ========================================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  visibility: hidden;
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .features-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    gap: 24px;
  }
  
  .sim-container {
    grid-template-columns: 1fr;
  }
  
  .sim-arrow-container {
    transform: rotate(90deg);
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    display: none; /* Can add dropdown logic if requested */
  }
  
  .nav-actions {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .features-grid, .pricing-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    gap: 32px;
  }
  
  .simulator-box {
    padding: 24px;
  }
  
  .messy-board {
    grid-template-columns: 1fr;
  }
  
  .messy-card.urgent {
    grid-column: span 1;
  }
  
  .fe-1, .fe-2 {
    display: none;
  }
}
