/* ====================================================================
   COMMERCIAL WEBSITE ENHANCEMENTS
   Premium UI/UX improvements for conversion optimization
   Version: 1.0.0
   ==================================================================== */

/* ====================================================================
   TYPOGRAPHY SYSTEM - Premium, Distinctive Fonts
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Premium Typography */
  --font-display: 'Plus Jakarta Sans', 'SF Pro Display', -apple-system, system-ui, sans-serif;
  --font-body: 'Manrope', 'SF Pro Text', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  
  /* Enhanced Color Palette - Sophisticated & High-Converting */
  --accent-primary: #6366f1;     /* Indigo - primary action color */
  --accent-secondary: #8b5cf6;   /* Violet - supporting accent */
  --accent-gold: #f59e0b;        /* Amber - urgency/highlight */
  --accent-success: #10b981;     /* Emerald - positive signals */
  --accent-danger: #ef4444;      /* Red - caution/importance */
  
  /* Premium Gradients */
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 35%, #334155 100%);
  --gradient-accent: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Enhanced Shadows - More depth */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 5px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.08), 0 30px 64px rgba(0,0,0,0.12);
  --shadow-glow-primary: 0 4px 24px rgba(99, 102, 241, 0.35);
  --shadow-glow-gold: 0 4px 24px rgba(245, 158, 11, 0.4);
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  
  /* Border Radius Scale */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ====================================================================
   BASE TYPOGRAPHY OVERRIDES
   ==================================================================== */

html {
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px - slightly larger for readability */
  line-height: 1.7;
  letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6,
.display-5, .display-4, .display-3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* ====================================================================
   HERO PHONE SCREENSHOTS
   ==================================================================== */

.hero-phone {
  width: 180px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
  border: 3px solid rgba(255,255,255,0.1);
}

.hero-phone:first-child {
  transform: rotate(-5deg) translateY(10px);
}

.hero-phone:last-child {
  transform: rotate(5deg) translateY(-10px);
}

@media (hover: hover) {
  .hero-phone:hover {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.5);
    z-index: 10;
  }
  
  .hero-phone:first-child:hover {
    transform: rotate(-2deg) translateY(0) scale(1.05) !important;
  }
  
  .hero-phone:last-child:hover {
    transform: rotate(2deg) translateY(-20px) scale(1.05) !important;
  }
}

.hero-mobile-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

@media (max-width: 576px) {
  .hero-phone {
    width: 140px;
  }
  
  .hero-phone:first-child {
    transform: rotate(-3deg) translateY(5px);
  }
  
  .hero-phone:last-child {
    transform: rotate(3deg) translateY(-5px);
  }
  
  .hero-mobile-wrapper {
    gap: 16px;
    padding: 1rem 0;
  }
}

/* ====================================================================
   ENHANCED HERO SECTION
   ==================================================================== */

#hero {
  background: var(--gradient-hero) !important;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated gradient orbs background */
#hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 60%);
  animation: hero-orb-1 25s ease-in-out infinite;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 55%);
  animation: hero-orb-2 30s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes hero-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-3%, 5%) scale(1.05); }
  66% { transform: translate(2%, -3%) scale(0.95); }
}

@keyframes hero-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, -5%) scale(1.1); }
}

/* Grid pattern overlay */
#hero .dot-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.6;
}

/* Hero headline styling */
#hero .display-5 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Enhanced gradient text */
.gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 30%, #ef4444 60%, #ec4899 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero lead text */
#hero .lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  max-width: 580px;
}

/* ====================================================================
   ENHANCED CTA BUTTONS - High Conversion
   ==================================================================== */

/* Primary CTA - Maximum visibility */
.btn-primary.pulse-shadow,
#hero .btn-primary {
  background: var(--gradient-gold) !important;
  border: none !important;
  color: #0f172a !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow-gold);
  text-shadow: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary.pulse-shadow::before,
#hero .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  border-radius: inherit;
}

.btn-primary.pulse-shadow:hover,
#hero .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
}

.btn-primary.pulse-shadow:active,
#hero .btn-primary:active {
  transform: translateY(-1px) scale(1);
}

/* Button text styling */
.btn-text {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-subtext {
  font-weight: 500;
  opacity: 0.85;
  font-size: 0.8125rem;
}

/* Secondary CTA */
.btn-outline-primary,
#hero .btn-outline-primary {
  background: rgba(255,255,255,0.08) !important;
  border: 2px solid rgba(255,255,255,0.25) !important;
  color: #ffffff !important;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-primary:hover,
#hero .btn-outline-primary:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.4) !important;
  transform: translateY(-2px);
}

/* ====================================================================
   PSYCHOLOGICAL PROOF SECTION
   ==================================================================== */

.psychological-proof {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.proof-item {
  text-align: center;
  position: relative;
}

.proof-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

.proof-item .fs-2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.proof-item .text-success {
  color: #34d399 !important;
  text-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}

.proof-item .text-primary {
  color: #818cf8 !important;
  text-shadow: 0 0 20px rgba(129, 140, 248, 0.4);
}

.proof-item .text-warning {
  color: #fbbf24 !important;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.proof-item small {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
}

/* ====================================================================
   ENHANCED FEATURE CARDS
   ==================================================================== */

#features .card,
.feature-card {
  background: #ffffff;
  border: none !important;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#features .card::before,
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#features .card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

#features .card:hover::before,
.feature-card:hover::before {
  opacity: 1;
}

#features .card-body,
.feature-card .card-body {
  padding: 2rem;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.icon-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  opacity: 0.2;
  transform: scale(1.4);
  filter: blur(10px);
}

.icon-wrapper i {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

#features .card-title,
.feature-card .card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

#features .card-text,
.feature-card .card-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

/* ====================================================================
   ENHANCED PRICING SECTION
   ==================================================================== */

#pricing .pricing-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

#pricing .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Popular plan highlight */
#pricing .pricing-card.border-primary {
  border: 2px solid var(--accent-primary) !important;
  position: relative;
}

#pricing .pricing-card.border-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-accent);
  z-index: -1;
  opacity: 0.15;
}

/* Price display */
.tiered-pricing .display-6 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.tiered-pricing .fs-6 {
  font-weight: 400;
  color: #64748b;
}

/* Pricing list */
#pricing .list-unstyled li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

#pricing .list-unstyled li i {
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* ====================================================================
   ENHANCED TESTIMONIALS
   ==================================================================== */

#testimonials .card {
  background: var(--gradient-accent) !important;
  border: none !important;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

#testimonials .card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

#testimonials blockquote {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
}

#testimonials .badge {
  background: rgba(255,255,255,0.95) !important;
  color: #0f172a !important;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
}

/* ====================================================================
   PRESS LOGO MARQUEE
   ==================================================================== */

.press-logo-marquee {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.press-logo-track img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.press-logo-track img:hover {
  opacity: 1;
}

.as-seen-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ====================================================================
   HERO BENEFITS PILLS
   ==================================================================== */

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-benefits li,
.hero-benefits .list-inline-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hero-benefits li:hover,
.hero-benefits .list-inline-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.hero-benefits li i,
.hero-benefits .list-inline-item i {
  color: var(--accent-gold);
}

/* ====================================================================
   SECTION HEADERS
   ==================================================================== */

section h2.fw-bold {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 1rem;
}

section .text-muted {
  color: #64748b !important;
  font-size: 1.0625rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ====================================================================
   LIGHT MODE OVERRIDES
   ==================================================================== */

@media (prefers-color-scheme: light) {
  #hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%) !important;
  }
  
  #hero::before {
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 60%);
  }
  
  #hero::after {
    background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 55%);
  }
  
  #hero .dot-pattern {
    background-image: 
      radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  }
  
  #hero .display-5 {
    color: #0f172a;
    text-shadow: none;
  }
  
  #hero .lead {
    color: #475569;
  }
  
  .psychological-proof {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.06);
  }
  
  .proof-item small {
    color: rgba(0,0,0,0.5);
  }
  
  .hero-benefits li,
  .hero-benefits .list-inline-item {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.08);
    color: #334155;
  }
  
  .hero-benefits li:hover,
  .hero-benefits .list-inline-item:hover {
    background: rgba(0,0,0,0.06);
  }
  
  .press-logo-marquee {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.06);
  }
  
  .press-logo-track img {
    filter: none;
    opacity: 0.5;
  }
  
  .as-seen-label {
    color: #64748b;
  }
  
  .btn-outline-primary,
  #hero .btn-outline-primary {
    background: rgba(0,0,0,0.04) !important;
    border-color: rgba(0,0,0,0.12) !important;
    color: #334155 !important;
  }
  
  .btn-outline-primary:hover,
  #hero .btn-outline-primary:hover {
    background: rgba(0,0,0,0.08) !important;
    border-color: rgba(0,0,0,0.2) !important;
  }
}

/* ====================================================================
   MOBILE OPTIMIZATIONS
   ==================================================================== */

@media (max-width: 768px) {
  .psychological-proof {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .proof-item:not(:last-child)::after {
    display: none;
  }
  
  .proof-item .fs-2 {
    font-size: 2rem !important;
  }
  
  #hero .display-5 {
    font-size: 2rem;
  }
  
  .hero-benefits {
    justify-content: center;
  }
  
  .btn-primary.pulse-shadow,
  #hero .btn-primary {
    width: 100%;
    padding: 1.125rem 1.5rem;
  }
}

/* ====================================================================
   PERFORMANCE - REDUCED MOTION
   ==================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .gradient-text {
    animation: none;
    background-position: 0% 50%;
  }
  
  #hero::before,
  #hero::after {
    animation: none;
  }
}

/* ====================================================================
   UTILITY CLASSES
   ==================================================================== */

.text-balance {
  text-wrap: balance;
}

.glow-primary {
  box-shadow: var(--shadow-glow-primary);
}

.glow-gold {
  box-shadow: var(--shadow-glow-gold);
}

/* ====================================================================
   ENHANCED NAVIGATION
   ==================================================================== */

.ace-nav {
  background: rgba(15, 23, 42, 0.95) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ace-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-menu a,
.ace-nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.ace-nav-cta {
  background: var(--gradient-accent) !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ace-nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4) !important;
}

/* ====================================================================
   SECTION BADGE PILLS
   ==================================================================== */

section .badge.rounded-pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ====================================================================
   ENHANCED ALERTS & CALLOUTS
   ==================================================================== */

.alert {
  border-radius: var(--radius-lg);
  border: none;
  font-size: 0.9375rem;
}

.alert-success {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.05));
  border-left: 4px solid var(--accent-success);
}

.alert-info {
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(99,102,241,0.05));
  border-left: 4px solid var(--accent-primary);
}

/* ====================================================================
   BLOOMBERG COMPARISON CARD
   ==================================================================== */

#market-intelligence .card.border-warning {
  border: 2px solid #f59e0b !important;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

#market-intelligence .card.border-warning .card-header {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  padding: 1.25rem;
}

#market-intelligence .card.border-warning .card-header h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #0f172a;
}

/* ====================================================================
   BILLING FLEXIBILITY CARDS
   ==================================================================== */

.billing-option {
  border-radius: var(--radius-xl) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.billing-option:hover {
  transform: translateY(-4px);
}

.billing-option .card-header {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important;
  padding: 1.25rem;
}

.billing-option.billing-active {
  box-shadow: var(--shadow-xl);
}

/* ====================================================================
   FOOTER ENHANCEMENTS
   ==================================================================== */

footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
  font-family: var(--font-body);
}

footer h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

footer a {
  color: rgba(255,255,255,0.5) !important;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

footer a:hover {
  color: #ffffff !important;
  transform: translateX(2px);
  text-decoration: none !important;
}

footer .btn-primary {
  background: var(--gradient-accent) !important;
  border: none !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

footer .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

/* ====================================================================
   SCROLL-TRIGGERED ANIMATIONS
   ==================================================================== */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out both;
}

/* Staggered animations for cards */
.row > .col-md-6:nth-child(1) .card,
.row > .col-md-4:nth-child(1) .card,
.row > .col-lg-4:nth-child(1) .card {
  animation-delay: 0.1s;
}

.row > .col-md-6:nth-child(2) .card,
.row > .col-md-4:nth-child(2) .card,
.row > .col-lg-4:nth-child(2) .card {
  animation-delay: 0.2s;
}

.row > .col-md-4:nth-child(3) .card,
.row > .col-lg-4:nth-child(3) .card {
  animation-delay: 0.3s;
}

/* ====================================================================
   FOCUS STATES - ACCESSIBILITY
   ==================================================================== */

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ====================================================================
   SMOOTH SCROLLING ENHANCEMENT
   ==================================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* ====================================================================
   LOADING SKELETON ENHANCEMENT
   ==================================================================== */

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.06) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ====================================================================
   PRINT STYLES
   ==================================================================== */

@media print {
  .ace-nav,
  .back-to-top,
  .geometric-bg,
  .dot-pattern {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
    padding-top: 0 !important;
  }
  
  #hero {
    min-height: auto !important;
    padding: 2rem 0 !important;
    background: white !important;
  }
  
  .card,
  .feature-card,
  .pricing-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}

