/* ==========================================================================
   MATRYZ SAAS LANDING PAGE MAIN STYLE SHEET — LIGHT MODE (landing.css)
   ========================================================================== */

/* --- 1. DESIGN SYSTEM VARIABLES (LIGHT MODE) --- */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* HSL Colors - Light Mode Base */
  --bg-dark: 240 20% 98%;           /* #F8F9FC */
  --bg-surface: 0 0% 100%;          /* #FFFFFF */
  --border-color: 240 8% 90%;       /* Subtle light gray border */
  
  --primary-hsl: 263 90% 55%;       /* Brand Purple */
  --primary-glow: 263 90% 55% / 0.06;
  
  --secondary-hsl: 190 95% 42%;     /* Brand Cyan - slightly darkened for light mode contrast */
  --secondary-glow: 190 95% 50% / 0.06;
  
  --success-hsl: 142 76% 40%;
  --warning-hsl: 32 95% 50%;
  --danger-hsl: 346 84% 50%;
  
  /* Text and Material Tokens */
  --text-primary: #111118;          /* Crisp dark charcoal */
  --text-secondary: rgba(17, 17, 24, 0.72);
  --text-muted: rgba(17, 17, 24, 0.45);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--bg-dark));
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* --- 3. BACKGROUND EFFECTS (AMBIENT GLOWS - PASTEL SOFT GRADIENTS) --- */
.bg-grid-pattern {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(17, 17, 24, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 24, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -3;
}

.ambient-glow-purple {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsl(var(--primary-hsl) / 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: -2;
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.ambient-glow-cyan {
  position: absolute;
  top: 45%;
  right: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, hsl(var(--secondary-hsl) / 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -2;
  pointer-events: none;
  animation: floatGlow 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}

/* --- 4. TYPOGRAPHY & COMMON MODULES --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(90deg, hsl(var(--secondary-hsl)), hsl(var(--primary-hsl)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.section-title-outfit {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, hsl(var(--secondary-hsl)) 0%, hsl(var(--primary-hsl)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #7c24ec 0%, hsl(var(--primary-hsl)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider-glass {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 24, 0.06), transparent);
  width: 100%;
  margin: 20px 0;
}

/* --- 5. LOGO GRADIENT DESIGN (EXACTLY MATCHING USER METADATA IMAGE IN LIGHT MODE) --- */
.brand-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-matr {
  color: #111116; /* Exactly matching the black/charcoal text of your original logo */
  font-weight: 800;
  transition: opacity var(--transition-fast);
}

.logo-yz {
  background: linear-gradient(135deg, #5c24b3 30%, #8833ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.brand-logo:hover .logo-matr {
  opacity: 0.8;
}

/* --- 6. PREMIUM BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

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

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary-hsl)) 0%, #7c24ec 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(136, 51, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #964fff 0%, hsl(var(--primary-hsl)) 100%);
  box-shadow: 0 8px 24px rgba(136, 51, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.btn-secondary {
  background: rgba(17, 17, 24, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(17, 17, 24, 0.08);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(17, 17, 24, 0.06);
  border-color: rgba(17, 17, 24, 0.15);
  transform: translateY(-2px);
}

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

/* --- 7. NAVBAR FLOTANTE GLASSMORPHIC (LIGHT GLASS) --- */
.navbar-container {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  padding: 0 24px;
  z-index: 100;
}

.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(17, 17, 24, 0.06);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(17, 17, 24, 0.04);
  transition: all var(--transition-normal);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

/* Mobile Toggle classes */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle .bar {
  width: 20px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
}

/* --- 8. HERO SECTION --- */
.hero-section {
  padding-top: 180px;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  background: rgba(136, 51, 255, 0.05);
  color: #7c24ec;
  border: 1px solid rgba(136, 51, 255, 0.15);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(136, 51, 255, 0.02);
}

.hero-title {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

/* --- 9. INTERACTIVE MOCKUP SECTION (REDESIGNED IN LIGHT MODE FOR Matryz LIGHT APP) --- */
.mockup-section {
  padding: 60px 24px 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mockup-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.mockup-tabs {
  background: rgba(17, 17, 24, 0.03);
  border: 1px solid rgba(17, 17, 24, 0.06);
  padding: 4px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 4px;
  overflow-x: auto;
  max-width: 100%;
}

.mockup-tab {
  background: none;
  border: none;
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.mockup-tab.active {
  background: #FFFFFF;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(17, 17, 24, 0.05);
  border: 1px solid rgba(17, 17, 24, 0.06);
}

.mockup-tab:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(17, 17, 24, 0.01);
}

/* Screen Chrome container */
.mockup-screen-outer {
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.3) 100%);
  padding: 10px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 24, 0.06);
  box-shadow: 0 20px 50px rgba(17, 17, 24, 0.06);
}

.mockup-screen-inner {
  background: #F3F4F8; /* Light gray layout background representing the actual app */
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 24, 0.04);
}

.mockup-chrome {
  background: #EBECEF;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(17, 17, 24, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

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

.chrome-dot.red { background: #FF5F56; }
.chrome-dot.yellow { background: #FFBD2E; }
.chrome-dot.green { background: #27C93F; }

.chrome-address {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 17, 24, 0.04);
  padding: 4px 40px;
  font-family: monospace;
  font-size: 11px;
  color: var(--text-secondary);
  border-radius: 6px;
  max-width: 40%;
  overflow: hidden;
  white-space: nowrap;
}

/* Screen Contents */
.mockup-content {
  display: none;
  min-height: 380px;
  padding: 24px;
  animation: fadeEffect 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

/* MOCKUP: DASHBOARD DESIGN */
.mockup-dashboard-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mockup-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.mockup-metric-card {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 24, 0.04);
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(17, 17, 24, 0.02);
}

.mockup-metric-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.mockup-metric-card.green::before { background: hsl(var(--success-hsl)); }
.mockup-metric-card.blue::before { background: hsl(var(--secondary-hsl)); }
.mockup-metric-card.purple::before { background: hsl(var(--primary-hsl)); }
.mockup-metric-card.neon::before { background: #16b916; }

.card-label {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}

.card-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-subtext {
  font-size: 11px;
  color: var(--text-muted);
}

.card-subtext.green { color: hsl(var(--success-hsl)); }

.card-progress-bar {
  height: 4px;
  background: rgba(17, 17, 24, 0.05);
  border-radius: 2px;
  margin: 6px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, hsl(var(--secondary-hsl)), hsl(var(--primary-hsl)));
  border-radius: 2px;
}

/* Row 2: Chart + Projects */
.mockup-dashboard-row-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.mockup-chart-card, .mockup-projects-card {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 24, 0.04);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 4px 12px rgba(17, 17, 24, 0.02);
}

.card-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(17, 17, 24, 0.05);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.legend-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  font-size: 10.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.indicator.green::before { background: hsl(var(--success-hsl)); }
.indicator.red::before { background: hsl(var(--danger-hsl)); }

.mockup-bars-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 140px;
  padding-top: 10px;
}

.mockup-bar-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 15%;
}

.bar {
  width: 8px;
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.bar.green { background: hsl(var(--success-hsl)); }
.bar.red { background: hsl(var(--danger-hsl)); }

.bar-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

.mockup-project-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-project-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.project-name {
  font-weight: 600;
  color: var(--text-secondary);
}

.project-hours {
  color: var(--text-muted);
}

.project-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 6px;
  background: rgba(17, 17, 24, 0.04);
  border-radius: 3px;
  position: relative;
}

.project-progress .progress-fill {
  background: hsl(var(--primary-hsl));
}

.progress-pct {
  font-size: 10px;
  color: var(--text-muted);
  position: absolute;
  right: -30px;
}

/* MOCKUP: CRM KANBAN DESIGN */
.mockup-crm-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.crm-column {
  background: rgba(17, 17, 24, 0.015);
  border: 1px solid rgba(17, 17, 24, 0.04);
  border-radius: var(--radius-md);
  padding: 12px;
}

.crm-column-header {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.crm-column-header .count {
  font-size: 10px;
  background: rgba(17, 17, 24, 0.05);
  padding: 2px 6px;
  border-radius: 10px;
  color: var(--text-muted);
}

.crm-card {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 24, 0.04);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(17, 17, 24, 0.03);
}

.crm-card.interactive-hover {
  border-color: hsl(var(--primary-hsl) / 0.2);
  animation: cardFloating 4s ease-in-out infinite alternate;
}

@keyframes cardFloating {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); border-color: hsl(var(--primary-hsl) / 0.5); }
}

.crm-card.success-border {
  border-left: 3px solid hsl(var(--success-hsl));
}

.crm-card-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.crm-card-client {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.crm-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  border-top: 1px dashed rgba(17, 17, 24, 0.06);
  padding-top: 8px;
}

.crm-card-meta .price {
  font-weight: 700;
  color: hsl(var(--secondary-hsl));
}

.crm-card-meta .date {
  color: var(--text-muted);
}

/* MOCKUP: TIME TRACKER DESIGN */
.mockup-tracker-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  gap: 24px;
}

.tracker-capsule {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 24, 0.05);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 6px 24px rgba(17, 17, 24, 0.03);
}

.tracker-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tracker-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot-glowing-green {
  width: 8px;
  height: 8px;
  background-color: hsl(var(--success-hsl));
  border-radius: 50%;
  box-shadow: 0 0 10px hsl(var(--success-hsl));
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 16px hsl(var(--success-hsl)); }
}

.tracker-text {
  display: flex;
  flex-direction: column;
}

.tracker-status {
  font-size: 10px;
  font-weight: 700;
  color: hsl(var(--success-hsl));
}

.tracker-project {
  font-size: 13.5px;
  font-weight: 600;
}

.tracker-timer {
  font-family: monospace;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
}

.tracker-btn.pause {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: hsl(var(--danger-hsl));
  border: none;
  cursor: pointer;
  position: relative;
}

.tracker-btn.pause::before, .tracker-btn.pause::after {
  content: '';
  position: absolute;
  top: 10px;
  width: 3px;
  height: 16px;
  background: white;
}

.tracker-btn.pause::before { left: 14px; }
.tracker-btn.pause::after { left: 19px; }

.tracker-hint {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.tracker-history {
  width: 100%;
  max-width: 520px;
  background: rgba(17, 17, 24, 0.01);
  border: 1px solid rgba(17, 17, 24, 0.04);
  border-radius: var(--radius-md);
  padding: 16px;
}

.tracker-history h4 {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 600;
}

.history-item {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 17, 24, 0.02);
}

.history-item:last-child {
  border-bottom: none;
}

.history-item .badge {
  background: rgba(17, 17, 24, 0.04);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-secondary);
}

/* MOCKUP: INVOICE DESIGN */
.mockup-invoice-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.invoice-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.invoice-toolbar h3 {
  font-size: 13.5px;
  color: var(--text-primary);
}

.mockup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.mockup-table th, .mockup-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 17, 24, 0.04);
  color: var(--text-secondary);
}

.mockup-table th {
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(17, 17, 24, 0.01);
}

.invoice-number {
  font-family: monospace;
  font-weight: 600;
  color: hsl(var(--secondary-hsl));
}

.invoice-client {
  font-weight: 600;
  color: var(--text-primary);
}

.total-col {
  font-weight: 700;
  color: var(--text-primary);
}

.invoice-danger-row {
  background: rgba(239, 68, 68, 0.01);
}

.mockup-badge {
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.mockup-badge.success {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.mockup-badge.warning {
  background: rgba(245, 158, 11, 0.08);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.mockup-badge.danger {
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

/* --- 10. FEATURES SECTION GRID --- */
.features-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 17, 24, 0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(17, 17, 24, 0.02);
  /* Custom Cursor Glow property */
  --x: 0px;
  --y: 0px;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--x) var(--y), rgba(136, 51, 255, 0.04) 0%, transparent 60%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(136, 51, 255, 0.2);
  box-shadow: 0 10px 30px rgba(136, 51, 255, 0.04);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  z-index: 1;
  position: relative;
}

.feature-card-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

/* --- 11. CALCULATOR / SIMULATOR SECTION --- */
.simulator-section {
  background: radial-gradient(100% 100% at 50% 0%, rgba(136, 51, 255, 0.015) 0%, transparent 100%), #FFFFFF;
  border-top: 1px solid rgba(17, 17, 24, 0.05);
  border-bottom: 1px solid rgba(17, 17, 24, 0.05);
  padding: 100px 24px;
}

.simulator-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.simulator-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.saving-metrics {
  display: flex;
  gap: 36px;
  margin-top: 40px;
}

.saving-metric {
  display: flex;
  flex-direction: column;
}

.saving-metric-value {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: hsl(var(--primary-hsl));
  line-height: 1;
  margin-bottom: 6px;
}

.saving-metric-label {
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 600;
}

.simulator-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(17, 17, 24, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 15px 40px rgba(17, 17, 24, 0.03);
}

.simulator-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(17, 17, 24, 0.06);
  padding-bottom: 12px;
}

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

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.slider-value-lbl {
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(17, 17, 24, 0.04);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12.5px;
}

/* Range Slider Stylings */
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(17, 17, 24, 0.06);
  border-radius: 3px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: hsl(var(--primary-hsl));
  border: 2px solid #FFFFFF;
  cursor: pointer;
  box-shadow: 0 2px 8px hsl(var(--primary-hsl) / 0.3);
  transition: transform 0.1s;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.simulator-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.value-highlight {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}

.value-highlight.green {
  color: hsl(var(--success-hsl));
  font-size: 18px;
}

/* --- 12. PRICING CONTAINER --- */
.pricing-section {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 17, 24, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(17, 17, 24, 0.02);
}

.pricing-card.featured {
  background: radial-gradient(100% 100% at 50% 0%, rgba(136, 51, 255, 0.03) 0%, transparent 100%), rgba(255, 255, 255, 0.95);
  border-color: hsl(var(--primary-hsl) / 0.35);
  box-shadow: 0 15px 40px rgba(136, 51, 255, 0.08);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: hsl(var(--primary-hsl));
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
}

.plan-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: 40px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
}

.price-period {
  font-size: 12.5px;
  color: var(--text-muted);
}

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

.plan-features li {
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* --- 13. FOOTER DESIGN (SOFT LIGHT GRAY) --- */
.footer-container {
  border-top: 1px solid rgba(17, 17, 24, 0.05);
  padding: 80px 24px 40px 24px;
  background: #FFFFFF;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-links-side {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-group h5 {
  font-size: 13px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-link-group a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-link-group a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(17, 17, 24, 0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* --- 14. RESPONSIVE MEDIA QUERIES (ADAPTATIVE DESIGN) --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 46px;
  }
  
  .simulator-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .navbar-content {
    padding: 10px 16px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }

  .mockup-dashboard-row-2 {
    grid-template-columns: 1fr;
  }
  
  .mockup-crm-layout {
    grid-template-columns: 1fr;
  }

  .section-title-outfit {
    font-size: 32px;
  }
  
  .saving-metrics {
    justify-content: space-between;
    width: 100%;
  }
  
  .saving-metric-value {
    font-size: 36px;
  }
}
