/* ============================================
   SlotNearMe - Premium Brand Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================
   CSS Custom Properties (Brand Tokens)
   ============================================ */
:root {
  /* Deep Navy — Primary anchor (60-70% of UI) */
  --navy-900: #0D1A2D;
  --navy-800: #1A2B4A;
  --navy-700: #2D4A6F;
  --navy-500: #4A6B8A;
  --navy-400: #6B8BA8;
  --navy-300: #8FABC4;

  /* Royal Gold — Premium accent (5-10% of UI) */
  --gold-600: #A68B2A;
  --gold-500: #D4AF37;
  --gold-400: #E5C54D;
  --gold-300: #F4E4A6;

  /* Casino Coral — Energy/CTA (15-25% of UI) */
  --coral-600: #C93C3C;
  --coral-500: #E85A5A;
  --coral-400: #F07070;
  --coral-300: #FFB3B3;

  /* Semantic Colors */
  --profit-600: #1B8754;
  --profit-500: #22A366;
  --profit-400: #34D399;
  --loss-600: #B91C1C;
  --loss-500: #DC2626;
  --loss-400: #F87171;
  --warning-500: #F59E0B;

  /* Neutral Steel */
  --steel-900: #111827;
  --steel-800: #1F2937;
  --steel-700: #374151;
  --steel-600: #4B5563;
  --steel-500: #6B7280;
  --steel-400: #9CA3AF;
  --steel-300: #D1D5DB;
  --steel-200: #E5E7EB;
  --steel-100: #F3F4F6;
  --steel-50: #F9FAFB;

  /* Gradients */
  --gradient-surface: linear-gradient(180deg, #1A2B4A 0%, #0D1A2D 100%);
  --gradient-surface-dark: linear-gradient(180deg, #0D1A2D 0%, #060C14 100%);
  --gradient-cta: linear-gradient(135deg, #E85A5A 0%, #C93C3C 100%);
  --gradient-primary: linear-gradient(135deg, #2D4A6F 0%, #1A2B4A 100%);
  --gradient-gold: linear-gradient(135deg, #F4E4A6 0%, #D4AF37 50%, #E5C54D 100%);
  --gradient-profit: linear-gradient(135deg, #34D399 0%, #22A366 100%);

  /* Glows (dark backgrounds only) */
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.2);
  --glow-coral: 0 0 20px rgba(232, 90, 90, 0.35), 0 0 40px rgba(232, 90, 90, 0.18);
  --glow-profit: 0 0 20px rgba(34, 163, 102, 0.3), 0 0 40px rgba(34, 163, 102, 0.15);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(13, 26, 45, 0.06), 0 1px 2px rgba(13, 26, 45, 0.04);
  --shadow-md: 0 4px 6px rgba(13, 26, 45, 0.05), 0 2px 4px rgba(13, 26, 45, 0.04);
  --shadow-lg: 0 10px 15px rgba(13, 26, 45, 0.08), 0 4px 6px rgba(13, 26, 45, 0.04);
  --shadow-xl: 0 20px 25px rgba(13, 26, 45, 0.1), 0 8px 10px rgba(13, 26, 45, 0.04);
  --shadow-2xl: 0 25px 50px rgba(13, 26, 45, 0.15);
  --shadow-coral: 0 4px 14px rgba(232, 90, 90, 0.25);
  --shadow-gold: 0 4px 14px rgba(212, 175, 55, 0.25);
  --shadow-profit: 0 4px 14px rgba(34, 163, 102, 0.25);

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, monospace;

  /* Font Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  --transition-slower: 500ms ease;
}

/* ============================================
   CSS Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel-800);
  background: var(--steel-50);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--weight-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: var(--weight-bold);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

h4 {
  font-size: clamp(18px, 2vw, 22px);
}

p {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--steel-600);
  line-height: 1.7;
}

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

.text-coral {
  color: var(--coral-500);
}

.text-profit {
  color: var(--profit-500);
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: 960px;
}

.container-wide {
  max-width: 1440px;
}

.section {
  padding: var(--space-20) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 16px;
  border-radius: var(--radius-2xl);
}

.btn-xl {
  padding: var(--space-5) var(--space-10);
  font-size: 18px;
  border-radius: var(--radius-2xl);
}

/* Button Variants */
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
}

.btn-cta {
  background: var(--gradient-cta);
  color: white;
  box-shadow: var(--shadow-coral);
}

.btn-cta:hover {
  box-shadow: var(--glow-coral);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

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

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--navy-300);
}

.btn-outline:hover {
  border-color: var(--navy-800);
  background: rgba(26, 43, 74, 0.05);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: rgba(26, 43, 74, 0.08);
  color: var(--navy-800);
}

.btn-ghost:hover {
  background: rgba(26, 43, 74, 0.12);
}

/* Store Buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--navy-900);
  color: white;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.store-btn svg {
  width: 28px;
  height: 28px;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn-text span:first-child {
  font-size: 10px;
  font-weight: var(--weight-medium);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-btn-text span:last-child {
  font-size: 16px;
  font-weight: var(--weight-semibold);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: all var(--transition-slow);
  background: transparent;
}

.nav.scrolled {
  background: rgba(13, 26, 45, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy-900);
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.nav-logo-text {
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: white;
  letter-spacing: -0.02em;
}

.nav-logo-slot {
  color: var(--coral-500);
}

.nav-logo-text span:not(.nav-logo-slot) {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: 15px;
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: white;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Mobile Navigation */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-surface-dark);
  z-index: 999;
  padding: var(--space-20) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-menu-link {
  font-size: 24px;
  font-weight: var(--weight-semibold);
  color: white;
  opacity: 0;
  transform: translateX(-20px);
  transition: all var(--transition-slow);
}

.mobile-menu.active .mobile-menu-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 100ms; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 150ms; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 200ms; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 250ms; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { transition-delay: 300ms; }

.mobile-menu-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-surface-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(232, 90, 90, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(45, 74, 111, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated Background Elements */
.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.hero-bg-circle:nth-child(1) {
  width: 600px;
  height: 600px;
  background: var(--gold-500);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-bg-circle:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--coral-500);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.hero-bg-circle:nth-child(3) {
  width: 300px;
  height: 300px;
  background: var(--profit-500);
  top: 40%;
  left: 10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -20px) scale(1.05); }
  50% { transform: translate(-10px, 10px) scale(0.95); }
  75% { transform: translate(-20px, -10px) scale(1.02); }
}

/* Grid Pattern Overlay */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-20) 0;
}

.hero-text {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-badge-text {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  color: white;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.1s;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.2;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(232, 90, 90, 0.4);
  z-index: -1;
  transform: skewX(-5deg);
}

.hero-description {
  font-size: clamp(18px, 2vw, 20px);
  color: var(--steel-400);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 32px;
  font-weight: var(--weight-extrabold);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--steel-400);
  margin-top: var(--space-1);
}

/* Hero Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.5s;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 620px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.phone-mockup::before {
  display: none;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  position: relative;
}

.phone-screen-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: var(--space-8) var(--space-4);
  padding-top: var(--space-12);
}

.phone-screen-placeholder:has(img) {
  padding: 0;
  display: block;
}

.phone-screen-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.screen-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.screen-logo {
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: white;
}

.screen-logo span {
  color: var(--gold-500);
}

.screen-stat-card {
  background: linear-gradient(135deg, rgba(34, 163, 102, 0.15) 0%, rgba(34, 163, 102, 0.05) 100%);
  border: 1px solid rgba(34, 163, 102, 0.3);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  text-align: center;
  margin-bottom: var(--space-4);
}

.screen-stat-label {
  font-size: 11px;
  font-weight: var(--weight-medium);
  color: var(--steel-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.screen-stat-value {
  font-size: 32px;
  font-weight: var(--weight-extrabold);
  color: var(--profit-400);
  letter-spacing: -0.02em;
}

.screen-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.screen-mini-stat {
  background: rgba(45, 74, 111, 0.15);
  border: 1px solid rgba(45, 74, 111, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-3);
  text-align: center;
}

.screen-mini-stat-label {
  font-size: 10px;
  color: var(--steel-400);
  margin-bottom: var(--space-1);
}

.screen-mini-stat-value {
  font-size: 16px;
  font-weight: var(--weight-bold);
  color: white;
}

.screen-nav {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-3);
  right: var(--space-3);
  background: var(--gradient-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-3);
  display: flex;
  justify-content: space-around;
}

.screen-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  color: var(--steel-400);
  font-size: 10px;
}

.screen-nav-item.active {
  color: white;
}

.screen-nav-item.active .nav-icon {
  background: var(--gradient-cta);
  box-shadow: var(--glow-coral);
}

.nav-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 16px;
  height: 16px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(26, 43, 74, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-2xl);
  animation: floatCard 6s infinite ease-in-out;
}

.floating-card-1 {
  top: 10%;
  right: -60px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  left: -40px;
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.floating-card-icon.gold {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-400);
}

.floating-card-icon.coral {
  background: rgba(232, 90, 90, 0.2);
  color: var(--coral-400);
}

.floating-card-title {
  font-size: 12px;
  font-weight: var(--weight-medium);
  color: var(--steel-400);
  margin-bottom: var(--space-1);
}

.floating-card-value {
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: white;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
  }

  .hero-text {
    max-width: 100%;
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: var(--space-12);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-6);
  }

  .phone-mockup {
    width: 260px;
    height: 540px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   Features Section
   ============================================ */
.features {
  background: white;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--steel-50) 0%, transparent 100%);
  pointer-events: none;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--coral-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--coral-500);
}

.features-title {
  color: var(--navy-900);
  margin-bottom: var(--space-4);
}

.features-description {
  font-size: 18px;
  color: var(--steel-500);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  position: relative;
  padding: var(--space-8);
  background: var(--steel-50);
  border-radius: var(--radius-3xl);
  transition: all var(--transition-slow);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background: white;
}

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

.feature-card:nth-child(1)::before { background: var(--gradient-gold); }
.feature-card:nth-child(2)::before { background: var(--gradient-cta); }
.feature-card:nth-child(3)::before { background: var(--gradient-profit); }
.feature-card:nth-child(4)::before { background: var(--gradient-primary); }
.feature-card:nth-child(5)::before { background: var(--gradient-gold); }
.feature-card:nth-child(6)::before { background: var(--gradient-cta); }

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-icon.gold {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  color: var(--gold-500);
}

.feature-icon.coral {
  background: linear-gradient(180deg, rgba(232, 90, 90, 0.15) 0%, rgba(232, 90, 90, 0.05) 100%);
  color: var(--coral-500);
}

.feature-icon.profit {
  background: linear-gradient(180deg, rgba(34, 163, 102, 0.15) 0%, rgba(34, 163, 102, 0.05) 100%);
  color: var(--profit-500);
}

.feature-icon.navy {
  background: linear-gradient(180deg, rgba(45, 74, 111, 0.15) 0%, rgba(45, 74, 111, 0.05) 100%);
  color: var(--navy-700);
}

.feature-title {
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
  margin-bottom: var(--space-3);
}

.feature-description {
  font-size: 15px;
  color: var(--steel-500);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  background: var(--gradient-surface-dark);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(232, 90, 90, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.how-it-works .features-header {
  position: relative;
  z-index: 10;
}

.how-it-works .section-label {
  color: var(--gold-400);
}

.how-it-works .section-label::before,
.how-it-works .section-label::after {
  background: var(--gold-400);
}

.how-it-works .features-title {
  color: white;
}

.how-it-works .features-description {
  color: var(--steel-400);
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.step-card {
  position: relative;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: var(--weight-extrabold);
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
  z-index: 0;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-5);
  background: rgba(26, 43, 74, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.step-card:hover .step-icon {
  border-color: var(--gold-500);
  box-shadow: var(--glow-gold);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold-400);
}

.step-title {
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: white;
  margin-bottom: var(--space-3);
}

.step-description {
  font-size: 14px;
  color: var(--steel-400);
  line-height: 1.6;
}

/* Step Connectors */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500) 0%, transparent 100%);
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .step-card::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  background: white;
  border-top: 1px solid var(--steel-200);
  border-bottom: 1px solid var(--steel-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.stat-value {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
}

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

.stat-value.coral {
  color: var(--coral-500);
}

.stat-value.profit {
  color: var(--profit-500);
}

.stat-value.navy {
  color: var(--navy-800);
}

.stat-label {
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--steel-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
  background: var(--steel-50);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: white;
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
  overflow: hidden;
}

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

.pricing-card.featured {
  background: var(--gradient-surface);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.pricing-badge {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  padding: var(--space-1) var(--space-3);
  background: var(--gradient-gold);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.pricing-header {
  margin-bottom: var(--space-6);
}

.pricing-tier {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--steel-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.pricing-card.featured .pricing-tier {
  color: var(--gold-400);
}

.pricing-name {
  font-size: 28px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.pricing-card.featured .pricing-name {
  color: white;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.pricing-amount {
  font-size: 48px;
  font-weight: var(--weight-extrabold);
  color: var(--navy-900);
  letter-spacing: -0.03em;
}

.pricing-card.featured .pricing-amount {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 16px;
  color: var(--steel-500);
}

.pricing-card.featured .pricing-period {
  color: var(--steel-400);
}

.pricing-annual {
  font-size: 14px;
  color: var(--profit-500);
  font-weight: var(--weight-medium);
}

.pricing-features {
  margin: var(--space-8) 0;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--steel-200);
  border-bottom: 1px solid var(--steel-200);
}

.pricing-card.featured .pricing-features {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.pricing-feature:last-child {
  margin-bottom: 0;
}

.pricing-feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 163, 102, 0.15);
  color: var(--profit-500);
}

.pricing-feature-icon svg {
  width: 12px;
  height: 12px;
}

.pricing-feature-icon.disabled {
  background: rgba(107, 114, 128, 0.1);
  color: var(--steel-400);
}

.pricing-feature-text {
  font-size: 15px;
  color: var(--steel-600);
  line-height: 1.5;
}

.pricing-card.featured .pricing-feature-text {
  color: var(--steel-300);
}

.pricing-feature-text.disabled {
  color: var(--steel-400);
  text-decoration: line-through;
}

.pricing-cta {
  width: 100%;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  background: white;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--steel-50);
  border-radius: var(--radius-3xl);
  padding: var(--space-8);
  transition: all var(--transition-slow);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  fill: var(--gold-500);
}

.testimonial-text {
  font-size: 16px;
  color: var(--steel-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: var(--weight-bold);
}

.testimonial-info h4 {
  font-size: 15px;
  font-weight: var(--weight-semibold);
  color: var(--navy-900);
}

.testimonial-info p {
  font-size: 13px;
  color: var(--steel-500);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--gradient-surface-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(232, 90, 90, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: white;
  margin-bottom: var(--space-4);
}

.cta-description {
  font-size: 18px;
  color: var(--steel-400);
  margin-bottom: var(--space-8);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--navy-900);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy-900);
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.footer-logo-text {
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: white;
}

.footer-logo-slot {
  color: var(--coral-500);
}

.footer-logo-text span:not(.footer-logo-slot) {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 14px;
  color: var(--steel-400);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background: var(--coral-500);
  color: white;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: 14px;
  color: var(--steel-400);
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: 13px;
  color: var(--steel-500);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal-link {
  font-size: 13px;
  color: var(--steel-500);
  transition: color var(--transition-base);
}

.footer-legal-link:hover {
  color: white;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   Business Page Specific Styles
   ============================================ */
.business-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
}

.business-hero::before {
  background: 
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(232, 90, 90, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.business-benefits {
  background: var(--steel-50);
}

.coming-soon-features-wrapper {
  position: relative;
  margin-top: var(--space-8);
}

.coming-soon-features-content {
  position: relative;
  z-index: 1;
}

.coming-soon-overlay-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-3xl);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-overlay-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-badge {
  background: white;
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-2xl);
  text-align: center;
  max-width: 400px;
  border: 2px solid var(--gold-300);
}

.coming-soon-badge svg {
  color: var(--gold-500);
  margin: 0 auto var(--space-4);
}

.coming-soon-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: var(--weight-bold);
  color: var(--navy-900);
  margin-bottom: var(--space-3);
}

.coming-soon-text {
  font-size: 16px;
  color: var(--steel-600);
  line-height: 1.6;
  margin: 0;
}

.benefit-card {
  background: white;
  border-radius: var(--radius-3xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
}

.benefit-icon.coral {
  background: linear-gradient(135deg, rgba(232, 90, 90, 0.15) 0%, rgba(232, 90, 90, 0.05) 100%);
  color: var(--coral-500);
}

.benefit-icon.gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  color: var(--gold-500);
}

.benefit-icon.profit {
  background: linear-gradient(135deg, rgba(34, 163, 102, 0.15) 0%, rgba(34, 163, 102, 0.05) 100%);
  color: var(--profit-500);
}

.benefit-icon.navy {
  background: linear-gradient(135deg, rgba(45, 74, 111, 0.15) 0%, rgba(45, 74, 111, 0.05) 100%);
  color: var(--navy-700);
}

.benefit-title {
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
  margin-bottom: var(--space-3);
}

.benefit-description {
  font-size: 15px;
  color: var(--steel-500);
  line-height: 1.6;
}

/* Business Pricing Table */
.business-pricing-section {
  background: white;
}

/* Wrapper for pricing table to accommodate badge */
.fade-in-up:has(.pricing-table) {
  padding-top: 25px;
  overflow-x: auto;
  overflow-y: visible;
  position: relative;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: none;
}

.pricing-table thead {
  background: var(--gradient-surface);
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
  position: relative;
}


.pricing-table th {
  padding: calc(var(--space-6) * 1.075) var(--space-6);
  padding-top: calc(var(--space-6) * 1.5);
  text-align: center;
  color: white;
  font-weight: var(--weight-semibold);
  font-size: 14px;
  position: relative;
}

.pricing-table th:first-child {
  text-align: left;
  width: 35%;
}

.pricing-table th.featured {
  background: rgba(212, 175, 55, 0.2);
  position: relative;
  padding-top: calc(var(--space-6) * 1.8);
}

/* Allow thead to overflow so badge shows, while table maintains rounded corners */
.pricing-table thead {
  overflow: visible;
}

.pricing-table th.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--navy-900);
  padding: calc(var(--space-1) * 1.5) var(--space-4);
  font-size: 10px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  white-space: nowrap;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--steel-200);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

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

.pricing-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius-3xl);
}

.pricing-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius-3xl);
}

.pricing-table td {
  padding: var(--space-5) var(--space-6);
  text-align: center;
  font-size: 14px;
  color: var(--steel-600);
  background: white;
}

.pricing-table td:first-child {
  text-align: left;
  font-weight: var(--weight-medium);
  color: var(--navy-800);
}

.pricing-table td.featured {
  background: rgba(212, 175, 55, 0.03);
}

.pricing-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius-3xl);
}

.pricing-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius-3xl);
}

.pricing-table .check-icon {
  color: var(--profit-500);
}

.pricing-table .x-icon {
  color: var(--steel-400);
}

.pricing-table .tier-price {
  font-size: 24px;
  font-weight: var(--weight-bold);
  color: var(--navy-900);
}

.pricing-table .tier-price span {
  font-size: 14px;
  font-weight: var(--weight-regular);
  color: var(--steel-500);
}

.pricing-table tfoot td {
  padding: var(--space-6);
  background: white;
  border: none;
}

.pricing-table tfoot tr:first-child td:first-child {
  border-bottom-left-radius: var(--radius-3xl);
  border: none;
}

.pricing-table tfoot tr:first-child td:last-child {
  border-bottom-right-radius: var(--radius-3xl);
  border: none;
}

@media (max-width: 768px) {
  .pricing-table {
    display: block;
    overflow-x: auto;
  }
}

/* ROI Calculator */
.roi-calculator {
  background: var(--gradient-surface-dark);
  padding: var(--space-20) 0;
}

.calculator-card {
  background: rgba(26, 43, 74, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  max-width: 600px;
  margin: 0 auto;
}

.calculator-title {
  font-size: 24px;
  font-weight: var(--weight-bold);
  color: white;
  text-align: center;
  margin-bottom: var(--space-8);
}

.calculator-input-group {
  margin-bottom: var(--space-6);
}

.calculator-label {
  display: block;
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--steel-300);
  margin-bottom: var(--space-2);
}

.calculator-input {
  width: 100%;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  font-size: 16px;
  color: white;
  font-family: var(--font-primary);
  transition: all var(--transition-base);
}

.calculator-input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.calculator-result {
  background: rgba(34, 163, 102, 0.15);
  border: 1px solid rgba(34, 163, 102, 0.3);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  margin-top: var(--space-8);
}

.calculator-result-label {
  font-size: 14px;
  color: var(--steel-400);
  margin-bottom: var(--space-2);
}

.calculator-result-value {
  font-size: 36px;
  font-weight: var(--weight-extrabold);
  color: var(--profit-400);
  letter-spacing: -0.02em;
}

/* ============================================
   Legal Pages Styles
   ============================================ */
.legal-page {
  padding-top: 120px;
  padding-bottom: var(--space-20);
  background: var(--steel-50);
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.legal-title {
  color: var(--navy-900);
  margin-bottom: var(--space-4);
}

.legal-meta {
  font-size: 14px;
  color: var(--steel-500);
}

.legal-content {
  background: white;
  border-radius: var(--radius-3xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  color: var(--navy-900);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--steel-200);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 18px;
  color: var(--navy-800);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-content p {
  margin-bottom: var(--space-4);
  font-size: 15px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.legal-content li {
  margin-bottom: var(--space-2);
  font-size: 15px;
  color: var(--steel-600);
  line-height: 1.7;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: var(--coral-500);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--coral-600);
}

.legal-content strong {
  font-weight: var(--weight-semibold);
  color: var(--navy-800);
}

/* Privacy Info Table - Scrollable Container */
.table-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--steel-300) transparent;
  position: relative;
}

.table-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.table-scroll-container::-webkit-scrollbar-track {
  background: var(--steel-100);
  border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb {
  background: var(--steel-300);
  border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--steel-400);
}

.privacy-info-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  margin: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.privacy-info-table thead {
  background-color: var(--steel-100);
}

.privacy-info-table th {
  border: 1px solid var(--steel-200);
  padding: 12px 16px;
  text-align: left;
  font-weight: var(--weight-semibold);
  color: var(--navy-800);
  white-space: nowrap;
  position: sticky;
  top: 0;
  background-color: var(--steel-100);
  z-index: 1;
}

.privacy-info-table th:first-child {
  min-width: 180px;
}

.privacy-info-table th:nth-child(2) {
  min-width: 280px;
}

.privacy-info-table th:nth-child(3) {
  min-width: 200px;
}

.privacy-info-table td {
  border: 1px solid var(--steel-200);
  padding: 12px 16px;
  color: var(--navy-700);
  line-height: 1.6;
}

.privacy-info-table tbody tr {
  transition: background-color 0.2s ease;
}

.privacy-info-table tbody tr:hover {
  background-color: var(--steel-50);
}

.privacy-info-table tbody tr:nth-child(even) {
  background-color: var(--steel-25);
}

.privacy-info-table tbody tr:nth-child(even):hover {
  background-color: var(--steel-50);
}

@media (max-width: 768px) {
  .table-scroll-container {
    margin: 16px -16px;
    padding: 0 16px;
  }
  
  .privacy-info-table {
    min-width: 500px;
  }
  
  .privacy-info-table th,
  .privacy-info-table td {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .privacy-info-table th:first-child {
    min-width: 140px;
  }
  
  .privacy-info-table th:nth-child(2) {
    min-width: 220px;
  }
  
  .privacy-info-table th:nth-child(3) {
    min-width: 160px;
  }
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden { display: none !important; }

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}
