/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - DIGITAL GOAT (OUTLIER & MUNDPAY TYPOGRAPHY)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors - Luxury Dark & Violet Palette */
  --bg-primary: #070708;
  --bg-secondary: #0c0c0f;
  --bg-tertiary: #131317;
  --lead-grey: #1c1c21;
  --lead-border: rgba(124, 58, 237, 0.12); /* Subtle Violet Border */

  --text-primary: #ffffff;
  --text-secondary: #c5c5cb; /* Antique/Classic Grey */
  --text-muted: #71717a;

  /* Violet Branding (Primary Accent) */
  --violet-primary: #7c3aed;
  --violet-hover: #8b5cf6;
  --violet-glow: rgba(124, 58, 237, 0.05);
  --violet-border-glow: rgba(124, 58, 237, 0.25);
  --violet-gradient: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #c084fc 100%);
  --violet-text-gradient: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c084fc 100%);

  /* Antique Gold & Champagne (For Achievements Only) */
  --gold-primary: #c5a880;
  --gold-hover: #ecdcb9;
  --gold-dark: #8d7355;
  --gold-gradient: linear-gradient(135deg, #8d7355 0%, #c5a880 50%, #ecdcb9 100%);

  /* Status Colors */
  --status-success: #10b981;
  --status-success-bg: rgba(16, 185, 129, 0.03);

  /* Glassmorphism */
  --glass-bg: rgba(12, 12, 15, 0.7);
  --glass-backdrop: blur(20px);

  /* Typography - Reference Site Fonts (MundPay Style) */
  --font-headings: 'Space Grotesk', sans-serif;
  --font-italic: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;

  /* Layout & Transitions */
  --max-width: 1200px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth !important;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth !important;
}

main {
  overflow-x: hidden;
  width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--lead-grey);
  border: 1px solid var(--lead-border);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--violet-primary);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select {
  font-family: inherit;
  outline: none;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 9rem 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 6rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet-hover);
  margin-bottom: 1.5rem;
}

.section-tag::before,
.section-tag::after {
  content: '✦';
  font-size: 0.65rem;
  opacity: 0.6;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title span {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-size: inherit;
  background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 50%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(192, 132, 252, 0.3);
  padding-right: 0;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Elegant Separators */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  opacity: 0.3;
}

.luxury-divider::before,
.luxury-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--violet-hover), transparent);
}

.luxury-divider span {
  font-size: 0.75rem;
  color: var(--violet-hover);
  margin: 0 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 10px;
}

.btn-primary {
  background: var(--violet-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(124, 58, 237, 0.45);
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #c084fc 100%);
}

/* Premium Oval Glass CTA Button with Sweep Shine & Floating Particles */
#heroPrimaryCta {
  position: relative;
  overflow: visible !important; /* Allow particles to float outside */
  border-radius: 9999px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.08), 
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 700;
  transition: var(--transition-smooth);
}

#heroPrimaryCta:hover {
  background: rgba(124, 58, 237, 0.22);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 35px rgba(124, 58, 237, 0.25), 
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Shine sweep overlay */
#heroPrimaryCta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0) 100
  );
  transform: skewX(-25deg);
  animation: shine-sweep 4.5s infinite ease-in-out;
  pointer-events: none;
  border-radius: 9999px;
}

@keyframes shine-sweep {
  0% { left: -150%; }
  35%, 100% { left: 150%; }
}

/* Particle styling */
.btn-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--violet-hover);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 8px var(--violet-hover);
  animation: float-particle 1.6s ease-out forwards;
}

@keyframes float-particle {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate3d(var(--dx), var(--dy), 0) scale(0);
    opacity: 0;
  }
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--lead-border);
}

.btn-secondary:hover {
  background: rgba(124, 58, 237, 0.03);
  border-color: var(--violet-hover);
  transform: translateY(-2px);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Glow Background Effects */
.bg-glow-violet {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 70%);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.bg-glow-gold {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.04) 0%, rgba(234, 179, 8, 0) 70%);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */
.announcement-bar {
  background: #050506;
  border-bottom: 1px solid var(--lead-border);
  padding: 0.7rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 400;
  position: relative;
  z-index: 1001;
}

.announcement-bar a {
  color: var(--violet-hover);
  font-weight: 600;
  margin-left: 0.5rem;
  text-decoration: none;
  border-bottom: 1px solid var(--violet-hover);
}

.announcement-bar a:hover {
  color: var(--violet-primary);
  border-color: var(--violet-primary);
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 8, 0.8);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid rgba(124, 58, 237, 0.05);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(7, 7, 8, 0.95);
  border-bottom-color: var(--lead-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.logo span {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 1.9rem;
  background: var(--violet-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-img {
  height: 38px;
  width: auto;
  border-radius: var(--border-radius-sm);
}

.logo-goat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--violet-gradient);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.25);
  color: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--violet-hover);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-actions::before {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  margin-right: 0.5rem;
}

.btn-nav-login {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.2rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-nav-login:hover {
  color: #ffffff;
  border-color: var(--violet-hover);
  background: rgba(124, 58, 237, 0.05);
}

.btn-nav-cta {
  padding: 0.8rem 1.6rem;
  font-size: 0.8rem;
  border-radius: var(--border-radius-sm);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 7rem;
}

.hero .bg-glow-violet {
  top: -100px;
  right: -50px;
  width: 650px;
  height: 650px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.2rem;
  border-radius: var(--border-radius-sm);
  background: rgba(124, 58, 237, 0.03);
  border: 1px solid var(--lead-border);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet-hover);
  margin: 0 auto 2rem;
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--violet-hover);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--violet-hover);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.05;
  margin: 0 auto 1.8rem;
  letter-spacing: -0.03em;
  max-width: 850px;
}

.hero-title span {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-size: inherit;
  background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 50%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(192, 132, 252, 0.35);
  padding-right: 0;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 auto 3rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

/* Custom Interactive Mockup Dashboard (Outlier & Violet Edition) */
.hero-mockup-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 4.5rem auto 0;
  will-change: transform;
}

.hero-mockup-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(197, 168, 128, 0.06) 50%, transparent 80%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: ambientGlowPulse 10s infinite ease-in-out alternate;
}

@keyframes ambientGlowPulse {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.dashboard-mockup {
  display: flex;
  width: 100%;
  min-height: 480px;
  background: rgba(8, 8, 10, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--border-radius-md);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 
              0 0 50px rgba(124, 58, 237, 0.08), 
              inset 0 1px 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Sidebar Styling */
.dashboard-sidebar {
  width: 185px;
  background: rgba(19, 19, 23, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.dashboard-sidebar .dashboard-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #ffffff;
  padding-left: 0.5rem;
}

.dashboard-sidebar .dashboard-logo .logo-icon {
  font-size: 1rem;
}

.dashboard-sidebar .dashboard-logo span {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  background: var(--violet-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-img-sidebar {
  height: 24px;
  width: auto;
  border-radius: 4px;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sidebar-menu .menu-item svg {
  opacity: 0.65;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.sidebar-menu .menu-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
}

.sidebar-menu .menu-item:hover svg {
  opacity: 1;
  color: var(--violet-hover);
}

.sidebar-menu .menu-item.active {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.sidebar-menu .menu-item.active svg {
  opacity: 1;
  color: var(--violet-hover);
}

/* Main Dashboard Panel */
.dashboard-main {
  flex-grow: 1;
  background: rgba(7, 7, 8, 0.25);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow: hidden;
}

.dashboard-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
}

.dashboard-main-header .header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dashboard-main-header .toggle-icon {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  cursor: pointer;
}

.dashboard-main-header .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.08);
}

.dashboard-main-header .breadcrumb-current {
  color: var(--text-secondary);
  font-weight: 500;
}

.dashboard-main-header .user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lead-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.dashboard-content-greeting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.dashboard-content-greeting .greeting-left h2 {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;
}

.dashboard-content-greeting .date-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dashboard-content-greeting .date-selector:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

/* 3-Column Metrics Grid */
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.dashboard-metrics .metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dashboard-metrics .metric-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  border-radius: 0 2px 2px 0;
}

.dashboard-metrics .metric-card.violet-indicator::before {
  background: var(--violet-primary);
}

.dashboard-metrics .metric-card.green-indicator::before {
  background: var(--status-success);
}

.dashboard-metrics .metric-card.gold-indicator::before {
  background: var(--gold-primary);
}

.dashboard-metrics .metric-card .metric-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
}

.dashboard-metrics .metric-card .metric-val {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Bottom Panel Layout Grid */
.dashboard-bottom-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 0.8rem;
}

.dashboard-bottom-grid .chart-card,
.dashboard-bottom-grid .award-progress-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Chart Card Styling */
.chart-card-header,
.award-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-card-title,
.award-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.chart-card-badge {
  font-size: 0.62rem;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.svg-chart-container {
  position: relative;
  width: 100%;
  height: 125px;
}

.line-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.chart-pulse-dot {
  animation: pulse-violet-chart 2s infinite;
  transform-origin: center;
}

@keyframes pulse-violet-chart {
  0% { transform: scale(0.9); opacity: 0.5; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

.chart-tooltip {
  position: absolute;
  background: #09090b;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 4px;
  padding: 0.35rem 0.55rem;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--font-body);
}

.chart-tooltip .tooltip-time {
  color: #ffffff;
  font-weight: 500;
}

.chart-tooltip .tooltip-vbar {
  color: rgba(255, 255, 255, 0.1);
}

.chart-tooltip .tooltip-txt {
  color: var(--text-muted);
}

.chart-tooltip .tooltip-val {
  color: var(--status-success);
  font-weight: 600;
}

/* Award Card Styling */
.award-progress-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.award-progress-details .progress-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.award-progress-details .progress-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.award-progress-details .progress-subtitle {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.award-progress-details .progress-radial {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radial-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.radial-percentage {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.radial-ring-svg .ring-progress {
  transition: stroke-dasharray 0.3s ease;
}

/* CSS Money stack graphic inside Dashboard */
.award-graphic-box {
  position: relative;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(19, 19, 23, 0.8) 0%, rgba(12, 12, 15, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.02);
  height: 75px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
}

.award-graphic-box .graphic-glow-violet {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.award-graphic-box .graphic-canvas {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.terminal-brand-pill {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
  font-size: 0.58rem;
  color: var(--violet-hover);
  font-weight: 500;
  font-family: var(--font-headings);
  letter-spacing: 0.01em;
}

.cash-stacks-wrapper {
  position: relative;
  width: 120px;
  height: 38px;
  will-change: transform;
}

.cash-brick {
  position: absolute;
  width: 60px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
  box-shadow: 0 3px 6px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cash-brick .brick-band {
  width: 10px;
  height: 100%;
  background: linear-gradient(90deg, #78350f 0%, #eab308 50%, #78350f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.42rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
}

.brick-bottom {
  bottom: 0px;
  left: 15px;
  transform: rotate(-4deg);
  z-index: 1;
}

.brick-mid {
  bottom: 3px;
  right: 15px;
  transform: rotate(5deg);
  z-index: 2;
  background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
}

.brick-top-stack {
  bottom: 6px;
  left: 30px;
  transform: rotate(1deg);
  z-index: 3;
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  border-color: rgba(16, 185, 129, 0.35);
}

/* ==========================================================================
   RESPONSIVE MOCKUP STYLING & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .dashboard-metrics .metric-card .metric-val {
    font-size: 1.05rem;
  }
  .dashboard-metrics .metric-card {
    padding: 0.8rem;
  }
}

/* Scaled desktop mockup on smaller viewports to preserve layout integrity */
@media (max-width: 1024px) {
  .hero-mockup-wrapper {
    container-type: inline-size;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%; /* 2:1 aspect ratio of 960x480 mockup */
    margin-top: 2rem;
    overflow: visible; /* Allow glowing background to bleed out beautifully */
  }
  .dashboard-mockup {
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    min-height: 480px;
    transform: scale(calc(100cqw / 960));
    transform-origin: top left;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   GLOBAL SALES SECTION (EXPANSÃO SEM FRONTEIRAS)
   ========================================================================== */
.global-sales {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.global-sales .container {
  max-width: 100%;
  padding: 0 6%;
}

.global-sales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.global-sales-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  justify-self: start;
}

.global-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.global-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.gf-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-hover);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.global-features-list li:hover .gf-icon {
  background: var(--violet-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.global-features-list li strong {
  display: block;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.global-features-list li p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.global-sales-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 600px;
}

.globe-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0) 65%);
  z-index: 0;
  pointer-events: none;
}

#globeViz {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#globeViz canvas {
  outline: none;
}

@media (max-width: 968px) {
  .global-sales-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .global-sales-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .global-sales-visual {
    height: 350px;
  }
}

/* ==========================================================================
   TICKER/MARQUEE SECTION
   ========================================================================== */
.ticker-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--lead-border);
  border-bottom: 1px solid var(--lead-border);
  padding: 1.8rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ticker-wrapper {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--text-primary);
  padding: 0 3.5rem;
  letter-spacing: 0.02em;
}

.ticker-item span {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.8rem;
  background: var(--violet-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 4px;
}

.ticker-dot {
  font-size: 0.85rem;
  color: var(--violet-hover);
  margin-right: 1.8rem;
  opacity: 0.7;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   DIFFERENTIALS (THE DISRUPTION PROTOCOLS)
   ========================================================================== */
.differentials {
  position: relative;
  overflow: hidden;
}

.differentials .bg-glow-violet {
  top: 20%;
  left: -200px;
}

.diff-card {
  background: var(--glass-bg);
  border: 1px solid var(--lead-border);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  padding: 3rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(124, 58, 237, 0.04), transparent 40%);
  pointer-events: none;
}

.diff-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet-border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.diff-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.02);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-hover);
  margin-bottom: 2.2rem;
  transition: var(--transition-smooth);
}

.diff-card:hover .diff-icon-wrap {
  background: var(--violet-gradient);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
  border-color: transparent;
}

.diff-title {
  font-family: var(--font-headings);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.diff-description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ==========================================================================
   FEATURES GRID (THE SOVEREIGNTY ENGINE)
   ========================================================================== */
.features {
  background: var(--bg-secondary);
  border-top: 1px solid var(--lead-border);
  border-bottom: 1px solid var(--lead-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-item {
  background: var(--bg-primary);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  border-color: var(--violet-border-glow);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.feature-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--violet-hover);
  width: 26px;
  height: 26px;
  background: rgba(124, 58, 237, 0.03);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item:hover .feature-number {
  border-color: var(--violet-primary);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.15);
}

.feature-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ==========================================================================
   PROFIT CALCULATOR SECTION (DRAIN MATRIX SIMULATOR)
   ========================================================================== */
.calculator {
  position: relative;
  overflow: hidden;
}

.calculator .bg-glow-violet {
  bottom: 10%;
  left: -200px;
  width: 600px;
  height: 600px;
}

.calc-container {
  background: var(--glass-bg);
  border: 1px solid var(--lead-border);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-radius: var(--border-radius-sm);
  padding: 4.5rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.calc-control-group {
  display: flex;
  flex-direction: column;
}

.calc-label-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.calc-label {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.calc-value-display {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--violet-hover);
  background: rgba(124, 58, 237, 0.03);
  border: 1px solid rgba(124, 58, 237, 0.15);
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-sm);
}

/* Range Slider Custom Styling */
.range-slider-wrap {
  position: relative;
  width: 100%;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 9999px;
  background: var(--lead-grey);
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--violet-primary);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4), 0 0 0 4px var(--bg-primary);
  cursor: pointer;
  transition: transform 0.1s;
  border: 1px solid var(--violet-primary);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.competitor-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.competitor-btn {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--lead-border);
  color: var(--text-secondary);
  padding: 0.9rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.competitor-btn:hover {
  background: rgba(124, 58, 237, 0.02);
  border-color: rgba(124, 58, 237, 0.2);
}

.competitor-btn.active {
  background: rgba(124, 58, 237, 0.05);
  border-color: var(--violet-primary);
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

/* Results panel */
.calc-results {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--lead-border);
  padding: 2.5rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.results-top {
  display: flex;
  flex-direction: column;
}

.result-card-glow {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--border-radius-sm);
  padding: 1.8rem;
  text-align: center;
  margin-bottom: 2.2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.result-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.result-amount {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--violet-hover);
  text-shadow: 0 0 25px rgba(124, 58, 237, 0.25);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.result-savings-annual {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.result-savings-annual strong {
  color: var(--text-primary);
}

.rates-comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.05);
  font-size: 0.85rem;
}

.comparison-item:last-child {
  border-bottom: none;
}

.comp-label {
  color: var(--text-secondary);
}

.comp-val {
  font-weight: 600;
}

.comp-val.text-violet {
  color: var(--violet-hover);
}

.comp-val.text-red {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.8;
}

.calc-cta-btn {
  margin-top: 2rem;
  width: 100%;
}

/* ==========================================================================
   RATES CARDS SECTION
   ========================================================================== */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.rate-card {
  background: var(--bg-secondary);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  padding: 3.5rem 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.rate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lead-border);
}

.rate-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet-border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.rate-card.featured {
  border-color: rgba(124, 58, 237, 0.2);
  background: var(--bg-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.rate-card.featured::before {
  background: var(--violet-gradient);
}

.rate-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.3rem 0.8rem;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid var(--violet-primary);
  color: var(--violet-hover);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rate-title {
  font-family: var(--font-headings);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.rate-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.rate-price-wrap {
  margin-bottom: 2.5rem;
}

.rate-percentage {
  font-family: var(--font-headings);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text-primary);
}

.rate-percentage span {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--violet-hover);
  margin-left: 2px;
}

.rate-fixed {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rate-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(124, 58, 237, 0.06);
  padding-top: 2rem;
}

.rate-feature-item {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.rate-feature-item svg {
  color: var(--violet-hover);
  flex-shrink: 0;
}

/* ==========================================================================
   GAMIFICATION SECTION (THE COVENANT OF THE TOP)
   ========================================================================== */
.awards {
  background: var(--bg-secondary);
  border-top: 1px solid var(--lead-border);
  border-bottom: 1px solid var(--lead-border);
}

.awards-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 3rem;
}

.awards-carousel-track-container {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0;
}

.awards-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}

.awards-grid .award-card {
  width: 360px;
  flex-shrink: 0;
}

.carousel-ctrl {
  background: var(--bg-secondary);
  border: 1px solid var(--lead-border);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-ctrl:hover {
  background: var(--violet-primary);
  border-color: var(--violet-hover);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.prev-ctrl {
  left: -25px;
}

.next-ctrl {
  right: -25px;
}

.award-card {
  background: var(--bg-primary);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.award-card:hover {
  transform: translateY(-5px);
  border-color: var(--violet-border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.award-card.bronze:hover { box-shadow: 0 15px 40px rgba(141, 115, 85, 0.1); }
.award-card.silver:hover { box-shadow: 0 15px 40px rgba(255, 255, 255, 0.03); }
.award-card.gold:hover { box-shadow: 0 15px 40px rgba(197, 168, 128, 0.12); }
.award-card.black:hover { box-shadow: 0 15px 50px rgba(124, 58, 237, 0.25); }

.award-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  padding: 0.5rem;
}

.award-card:hover .award-img {
  transform: scale(1.05);
  border-color: var(--violet-hover);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.25);
}

.award-graphic {
  width: 90px;
  height: 90px;
  margin: 0 auto 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-smooth);
}

.award-card:hover .award-graphic {
  transform: scale(1.1);
}

.award-badge-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.award-icon-svg {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.1));
}

.award-card.gold .award-icon-svg { filter: drop-shadow(0 0 12px rgba(234, 179, 8, 0.3)); }
.award-card.black .award-icon-svg { filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5)); }

.award-milestone {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.award-milestone.bronze { color: #a16207; }
.award-milestone.silver { color: #a1a1aa; }
.award-milestone.gold { color: #eab308; }
.award-milestone.black { background: var(--violet-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.award-name {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.award-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================================================
   INTEGRATIONS SECTION
   ========================================================================== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.integration-card {
  background: var(--bg-primary);
  border: 1px solid var(--lead-border);
  padding: 2.2rem 1.2rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition-smooth);
  height: 120px;
}

.integration-card:hover {
  border-color: var(--violet-border-glow);
  background: rgba(124, 58, 237, 0.01);
  transform: translateY(-2px);
}

.integration-logo-text {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.integration-type {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   FAQ SECTION (THE ACCORDION)
   ========================================================================== */
.faq {
  position: relative;
  overflow: hidden;
}

.faq .bg-glow-violet {
  bottom: 0;
  right: -200px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2.2rem;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: var(--transition-smooth);
}

.faq-icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.faq-icon-line {
  position: absolute;
  width: 12px;
  height: 1px;
  background: currentColor;
  transition: var(--transition-smooth);
}

.faq-icon-line.vertical {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 2.2rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* FAQ Active Styles */
.faq-item.active {
  border-color: var(--violet-primary);
  background: var(--bg-secondary);
}

.faq-item.active .faq-question {
  color: var(--violet-hover);
}

.faq-item.active .faq-icon-line.vertical {
  transform: rotate(0deg);
}

.faq-item.active .faq-icon-wrap {
  color: var(--violet-hover);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background: #040405;
  border-top: 1px solid var(--lead-border);
  padding: 7rem 0 4rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4.5rem;
  margin-bottom: 5rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer-logo {
  font-size: 1.8rem;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
}

.footer-apps {
  display: flex;
  gap: 0.8rem;
}

.app-badge {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.app-badge:hover {
  background: rgba(124, 58, 237, 0.02);
  border-color: var(--violet-hover);
  transform: translateY(-2px);
}

.app-badge-icon {
  font-size: 1.1rem;
}

.app-badge-text span {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link a {
  color: var(--text-secondary);
}

.footer-link a:hover {
  color: var(--violet-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.05);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.7;
}

.footer-legal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.social-link:hover {
  color: var(--violet-hover);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rates-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .header-container {
    height: 60px;
  }

  .header.menu-open .nav-menu {
    top: 60px;
  }

  .header.menu-open .header-actions {
    top: 335px;
  }

  .hero {
    padding: 1rem 0 2rem;
    text-align: center;
  }

  .hero-badge {
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
    padding: 0.4rem 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .hero-title span {
    font-size: 2.2rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  .nav-menu {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-container {
    padding: 2.5rem 1.8rem;
  }

  .competitor-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-legal-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .competitor-selector-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   MOBILE EXPANDED NAV STYLING
   ========================================================================== */
.header.menu-open .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--lead-border);
  padding: 2.5rem 2rem;
  gap: 1.8rem;
  align-items: flex-start;
  box-shadow: 0 20px 45px rgba(0,0,0,0.8);
}

.header.menu-open .header-actions {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 360px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  padding: 0 2rem 2.5rem;
  gap: 1.2rem;
  align-items: stretch;
}

.header.menu-open .btn-nav-cta {
  text-align: center;
}

.rates-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .prev-ctrl {
    left: -10px;
  }
  .next-ctrl {
    right: -10px;
  }

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .header-container {
    height: 60px;
  }

  .header.menu-open .nav-menu {
    top: 60px;
  }

  .header.menu-open .header-actions {
    top: 335px;
  }

  .hero {
    padding: 1rem 0 2rem;
    text-align: center;
  }

  .hero-badge {
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
    padding: 0.4rem 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .hero-title span {
    font-size: 2.2rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  .nav-menu {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
  
  .container {
    padding: 0 1.25rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-container {
    padding: 2.5rem 1.8rem;
  }

  .competitor-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-legal-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .carousel-ctrl {
    width: 40px;
    height: 40px;
  }
  .awards-grid .award-card {
    width: 300px;
  }
  .awards-grid .award-card .award-img {
    height: 230px;
  }

  .competitor-selector-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   MOBILE EXPANDED NAV STYLING
   ========================================================================== */
.header.menu-open .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--lead-border);
  padding: 2.5rem 2rem;
  gap: 1.8rem;
  align-items: flex-start;
  box-shadow: 0 20px 45px rgba(0,0,0,0.8);
}

.header.menu-open .header-actions {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 360px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  padding: 0 2rem 2.5rem;
  gap: 1.2rem;
  align-items: stretch;
}

.header.menu-open .btn-nav-cta {
  text-align: center;
}

@media (max-width: 768px) {
  /* Fix Dashboard Mockup Mobile Framing */
  .hero-mockup-wrapper {
    padding-bottom: 0;
    height: auto;
    margin-top: 3rem;
  }
  .dashboard-mockup {
    position: relative;
    width: 100%;
    min-height: auto;
    transform: none !important; /* Disable the desktop scale */
    display: flex;
    flex-direction: column;
  }
  .dashboard-sidebar {
    display: none;
  }
  .dashboard-main {
    padding: 1.2rem;
  }
  .dashboard-bottom-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .dashboard-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 0;
  }
  .dashboard-metrics .metric-card {
    min-width: unset;
    width: 100%;
  }
  .svg-chart-container {
    height: 150px;
  }
  .award-graphic-box {
    height: 100px;
  }
}
