/* ============================================
   STAY RULE - PREMIUM CSS STYLES
   $100,000 LANDING PAGE DESIGN
   ============================================ */

/* ============================================
   1. CSS VARIABLES & RESET
   ============================================ */

:root {
  /* Premium Color Palette */
  --primary: #0B3D3A;
  --primary-dark: #062925;
  --primary-light: #0F4F4A;
  --accent: #0B3D3A;
  --accent-glow: #0B3D3A33;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0B3D3A 0%, #1A5F5A 100%);
  --gradient-dark: linear-gradient(135deg, #062925 0%, #0B3D3A 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, hsla(177, 69%, 15%, 0.2) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, hsla(176, 70%, 20%, 0.15) 0px, transparent 50%),
                   radial-gradient(at 0% 50%, hsla(175, 69%, 25%, 0.1) 0px, transparent 50%);
  
  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Animation Curves */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Shadows - Subtle & Elegant */
  --shadow-sm: 0 1px 2px 0 rgba(11, 61, 58, 0.04);
  --shadow-md: 0 2px 4px -1px rgba(11, 61, 58, 0.06), 0 1px 2px -1px rgba(11, 61, 58, 0.03);
  --shadow-lg: 0 4px 8px -2px rgba(11, 61, 58, 0.08), 0 2px 4px -2px rgba(11, 61, 58, 0.04);
  --shadow-xl: 0 8px 16px -4px rgba(11, 61, 58, 0.1), 0 4px 8px -4px rgba(11, 61, 58, 0.05);
  --shadow-2xl: 0 12px 24px -6px rgba(11, 61, 58, 0.12);
  --shadow-glow: 0 0 24px rgba(11, 61, 58, 0.15);
}

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

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.hero-title .title-line-1,
.hero-title .title-line-2,
.hero-title .title-line-3 {
  display: block;
  overflow: hidden;
}

.hero-title .title-line-3 {
  margin-top: 0.2em;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}


.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  position: relative;
}

.section-label::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateY(-50%);
}

/* ============================================
   3. LAYOUT & CONTAINERS
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* ============================================
   4. NAVIGATION - PREMIUM GLASS EFFECT
   ============================================ */

#main-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s var(--ease-out-expo);
}

#main-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gray-900);
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav-logo {
  height: 58px;
  width: auto;
  max-width: 288px;
  object-fit: contain;
  object-position: center;
}

.logo-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  animation: logo-float 3s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(3deg); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav-menu a {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: var(--space-sm);
}

.nav-toggle {
  display: none;
}

/* ============================================
   5. BUTTONS - PREMIUM STYLES
   ============================================ */

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 600;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-style: normal;
  text-decoration: none;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Buttons */
.btn-hero-primary,
.btn-hero-secondary {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  animation: hero-btn-glow 2s ease-in-out infinite;
}

@keyframes hero-btn-glow {
  0%, 100% { box-shadow: var(--shadow-lg); }
  50% { box-shadow: var(--shadow-xl); }
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--gray-700);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-arrow {
  transition: transform 0.3s ease;
}

button:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================
   6. HERO SECTION - EPIC DESIGN
   ============================================ */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(11, 61, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 61, 58, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: glow-float 10s ease-in-out infinite;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 61, 58, 0.2) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.hero-glow-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(11, 61, 58, 0.2) 0%, transparent 70%);
  bottom: -300px;
  right: -300px;
  animation-delay: 3s;
}

.hero-glow-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 61, 58, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes glow-float {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  33% { 
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.7;
  }
  66% { 
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.4;
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: hero-content-in 1s var(--ease-out-expo) forwards;
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 61, 58, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(11, 61, 58, 0.3);
  }
  50% { 
    box-shadow: 0 0 0 10px rgba(11, 61, 58, 0);
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

.beta-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
  opacity: 0.8;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-200);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Hero Visual - Dashboard Preview */
.hero-visual {
  position: relative;
  animation: hero-visual-in 1.2s var(--ease-out-expo) 0.2s forwards;
  opacity: 0;
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dashboard-preview {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 
    0 0 0 1px rgba(11, 61, 58, 0.08),
    var(--shadow-xl),
    0 0 40px rgba(11, 61, 58, 0.08);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s var(--ease-out-expo);
}

.dashboard-preview:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.dashboard-header {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.dashboard-dots {
  display: flex;
  gap: 0.5rem;
}

.dashboard-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-700);
}

.dashboard-dots span:nth-child(1) { background: #EF4444; }
.dashboard-dots span:nth-child(2) { background: #F59E0B; }
.dashboard-dots span:nth-child(3) { background: #10B981; }

.dashboard-title {
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
}

.dashboard-content {
  padding: var(--space-lg);
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.dashboard-card {
  background: var(--white);
  border-radius: 12px;
  padding: var(--space-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-out-expo);
}

.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.dashboard-card h3 {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-compliance .score-display {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.score-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.score-trend {
  color: #10B981;
  font-size: 0.875rem;
  font-weight: 600;
}

.score-bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 100px;
  animation: score-fill-in 1.5s var(--ease-out-expo) 0.5s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes score-fill-in {
  to { transform: scaleX(1); }
}

.deadline-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.deadline-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.deadline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.deadline-dot.yellow { background: #F59E0B; }
.deadline-dot.green { background: #10B981; }

.city-tags {
  display: flex;
  gap: 0.5rem;
}

.city-tag {
  padding: 0.25rem 0.75rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.doc-count {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.doc-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.dashboard-cta {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.dashboard-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   7. SOCIAL PROOF SECTION
   ============================================ */

.social-proof {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.proof-label {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-grid:hover {
  opacity: 0.6;
  filter: grayscale(0%);
}

.logo-item {
  width: 120px;
  height: 40px;
  background: var(--gray-300);
  border-radius: 8px;
  animation: logo-fade-in 0.5s var(--ease-out-expo) forwards;
  opacity: 0;
}

.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.2s; }
.logo-item:nth-child(3) { animation-delay: 0.3s; }
.logo-item:nth-child(4) { animation-delay: 0.4s; }
.logo-item:nth-child(5) { animation-delay: 0.5s; }
.logo-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes logo-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ============================================
   8. FEATURES SECTION - BENTO GRID
   ============================================ */

.features-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: var(--gradient-mesh);
  opacity: 0.5;
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  position: relative;
  z-index: 1;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    var(--shadow-xl),
    0 0 0 1px rgba(11, 61, 58, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-primary);
}

.feature-card:hover .feature-icon svg {
  color: var(--white);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all 0.4s var(--ease-spring);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color 0.4s ease;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--gray-900);
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.feature-stats {
  display: flex;
  gap: var(--space-sm);
}

.stat-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(11, 61, 58, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================================
   9. HOW IT WORKS - ANIMATED STEPS
   ============================================ */

.how-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.steps-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps-line {
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gray-200) 0%, var(--primary) 50%, var(--gray-200) 100%);
}

.step {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  position: relative;
  opacity: 0;
  animation: step-in 0.6s var(--ease-out-expo) forwards;
}

.step[data-step="1"] { animation-delay: 0.1s; }
.step[data-step="2"] { animation-delay: 0.3s; }
.step[data-step="3"] { animation-delay: 0.5s; }

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-number {
  width: 120px;
  height: 120px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.step:hover .step-number {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(11, 61, 58, 0.3);
}

.step-content {
  flex: 1;
  padding-top: var(--space-md);
}

.step-content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  color: var(--gray-900);
}

.step-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.step-visual {
  background: var(--gray-50);
  border-radius: 12px;
  padding: var(--space-lg);
  border: 1px solid var(--gray-200);
}

.mini-form {
  display: flex;
  gap: var(--space-sm);
}

.mini-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-400);
}

.mini-form button {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  opacity: 0.5;
  cursor: not-allowed;
}

.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.upload-zone:hover {
  border-color: var(--primary);
  background: rgba(11, 61, 58, 0.02);
}

.evidence-pack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  color: #10B981;
  font-weight: 600;
}

/* Additional compatibility styles for compliance rules section */
.compliance-rules-section {
  min-height: 600px;
  visibility: visible !important;
  opacity: 1 !important;
}

.compliance-rules-section .container {
  position: relative;
  z-index: 1;
}

.compliance-rules-section .section-header {
  position: relative;
  z-index: 2;
}

.compliance-rules-section .rules-carousel {
  position: relative;
  z-index: 2;
}

/* Ensure all elements are visible */
.rule-card,
.rules-track,
.rules-controls,
.rules-footer {
  visibility: visible !important;
  opacity: 1 !important;
}

/* ============================================
   10. COMPLIANCE RULES SECTION - SCROLLABLE CAROUSEL
   ============================================ */

.compliance-rules-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.compliance-rules-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: var(--gradient-mesh);
  opacity: 0.3;
  pointer-events: none;
}

.rules-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  display: block !important;
}

.rules-track {
  display: flex;
  display: -webkit-flex;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s var(--ease-out-expo);
  gap: 2rem;
  gap: var(--space-lg);
}

.rule-card {
  flex: 0 0 300px;
  -webkit-flex: 0 0 300px;
  background: #FFFFFF;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  padding: var(--space-xl);
  border: 2px solid #E5E7EB;
  border: 2px solid var(--gray-200);
  position: relative;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 8px -2px rgba(11, 61, 58, 0.08), 0 2px 4px -2px rgba(11, 61, 58, 0.04);
  box-shadow: var(--shadow-md);
  display: block !important;
}

.rule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px -4px rgba(11, 61, 58, 0.1), 0 4px 8px -4px rgba(11, 61, 58, 0.05);
  box-shadow: var(--shadow-xl);
  border-color: #0B3D3A;
  border-color: var(--primary);
}

.rule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.rule-card:hover::before {
  transform: scaleX(1);
}

.rule-city {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  gap: 1rem;
  gap: var(--space-sm);
  margin-bottom: 2rem;
  margin-bottom: var(--space-lg);
  padding-bottom: 1.5rem;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid #E5E7EB;
  border-bottom: 1px solid var(--gray-200);
}

.city-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  background: var(--gray-100);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.rule-card:hover .city-icon {
  background: linear-gradient(135deg, #0B3D3A 0%, #1A5F5A 100%);
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.rule-city h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  color: var(--gray-900);
  margin: 0;
}

.rule-list {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 1.5rem;
  gap: var(--space-md);
}

.rule-item {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  padding: var(--space-md);
  background: #F9FAFB;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.rule-item:hover {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateX(4px);
}

.rule-text {
  font-size: 0.95rem;
  color: #374151;
  color: var(--gray-700);
  font-weight: 500;
  flex: 1;
  -webkit-flex: 1;
  margin-right: 1rem;
  margin-right: var(--space-sm);
}

.rule-fine {
  font-size: 1rem;
  font-weight: 700;
  color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.rules-controls {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  gap: var(--space-lg);
  margin-top: 3rem;
  margin-top: var(--space-xl);
}

.rules-btn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  background: var(--white);
  border: 2px solid #E5E7EB;
  border: 2px solid var(--gray-200);
  color: #4B5563;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(11, 61, 58, 0.04);
  box-shadow: var(--shadow-sm);
}

.rules-btn:hover {
  border-color: #0B3D3A;
  border-color: var(--primary);
  color: #0B3D3A;
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 2px 4px -1px rgba(11, 61, 58, 0.06), 0 1px 2px -1px rgba(11, 61, 58, 0.03);
  box-shadow: var(--shadow-md);
}

.rules-btn:active {
  transform: scale(0.95);
}

.rules-dots {
  display: flex;
  display: -webkit-flex;
  gap: 1rem;
  gap: var(--space-sm);
}

.rules-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D1D5DB;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rules-dots .dot.active {
  background: #0B3D3A;
  background: var(--primary);
  transform: scale(1.2);
}

.rules-dots .dot:hover {
  background: #0B3D3A;
  background: var(--primary);
  opacity: 0.7;
}

.rules-footer {
  margin-top: 4rem;
  margin-top: var(--space-3xl);
  display: grid;
  display: -webkit-grid;
  grid-template-columns: 1fr 1fr;
  -webkit-grid-template-columns: 1fr 1fr;
  gap: 3rem;
  gap: var(--space-xl);
  align-items: center;
}

.rules-warning {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  gap: 1rem;
  gap: var(--space-sm);
  padding: 2rem;
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.rules-warning svg {
  color: #EF4444;
  flex-shrink: 0;
}

.rules-warning p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1rem;
}

.rules-solution {
  padding: 2rem;
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(11, 61, 58, 0.05), rgba(11, 61, 58, 0.1));
  border-radius: 16px;
  border: 1px solid rgba(11, 61, 58, 0.2);
}

.rules-solution p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.6;
}

.rules-solution strong {
  color: #0B3D3A;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   11. PRICING SECTION - PREMIUM CARDS
   ============================================ */

.pricing-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.toggle-switch {
  width: 60px;
  height: 32px;
  background: var(--gray-200);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch[data-billing="annual"] {
  background: var(--gradient-primary);
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-spring);
  box-shadow: var(--shadow-md);
}

.toggle-switch[data-billing="annual"] .toggle-slider {
  transform: translateX(28px);
}

.toggle-label {
  color: var(--gray-600);
  font-weight: 500;
}

.toggle-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid-four {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  gap: var(--space-md);
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: var(--space-xl);
  border: 2px solid var(--gray-200);
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

/* Launch Pricing Styling - ELEGANT & PREMIUM */
.plan-price {
  text-align: center;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.original-price-display {
  position: relative;
  padding: 4px 12px;
  background: var(--gray-100);
  border-radius: 6px;
}

.original-price {
  font-size: 1.25rem;
  color: var(--gray-500);
  text-decoration: line-through;
  font-weight: 500;
  opacity: 0.7;
  position: relative;
  letter-spacing: -0.01em;
}

.new-price-display {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.new-price-display .price-currency {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.new-price-display .price-amount {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 2px 8px rgba(11, 61, 58, 0.2));
}

.new-price-display .price-period {
  font-size: 1.25rem;
  color: var(--gray-600);
  font-weight: 600;
}

.launch-special {
  position: absolute;
  top: -14px;
  right: -55px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: rotate(8deg);
  box-shadow: 
    0 2px 8px rgba(245, 158, 11, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: subtle-float 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes subtle-float {
  0%, 100% {
    transform: rotate(8deg) translateY(0);
  }
  50% {
    transform: rotate(8deg) translateY(-2px);
  }
}

.pricing-card:hover {
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 
    0 20px 40px rgba(11, 61, 58, 0.15),
    0 0 0 1px rgba(11, 61, 58, 0.1);
}

.pricing-card.popular:hover {
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-header {
  margin-bottom: var(--space-lg);
}

.plan-name {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.plan-description {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Removed duplicate .plan-price, .price-currency, .price-amount, .price-period - using styles from line 1226 */

.plan-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.plan-features li {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
  padding: 0.75rem 0;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.plan-features li:last-child {
  border-bottom: none;
}

.check-icon {
  flex-shrink: 0;
  color: #10B981;
}

.plan-cta {
  width: 100%;
  padding: 1rem;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s var(--ease-out-expo);
}

.plan-cta:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11, 61, 58, 0.2);
}

.plan-cta.primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 30px rgba(11, 61, 58, 0.2);
}

.plan-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(11, 61, 58, 0.3);
}

/* Lock-in Discount Banner - ELEGANT PREMIUM */
.pricing-lock-banner {
  max-width: 900px;
  width: 100%;
  text-align: center;
  margin: var(--space-2xl) auto;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  box-shadow: 
    0 4px 20px rgba(11, 61, 58, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-lock-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  animation: subtle-shine 8s infinite;
}

@keyframes subtle-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(0deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(360deg);
  }
}

.pricing-lock-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pricing-lock-icon {
  font-size: 1.75rem;
  opacity: 0.9;
}

.pricing-lock-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.3;
  margin: 0;
}

.pricing-lock-subtext {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}

.pricing-footer {
  text-align: center;
  margin-top: var(--space-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--gray-700);
}

.pricing-trust svg {
  color: #FBBF24;
  flex-shrink: 0;
}

.pricing-trust p {
  margin: 0;
  font-size: 1rem;
}

.pricing-guarantee {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pricing-guarantee p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* Pricing Plan Badges */
.plan-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  background: rgba(11, 61, 58, 0.1);
  color: var(--primary);
}

.plan-badge.best-value {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: var(--white);
  animation: pulse-glow 2s ease-in-out infinite;
}

.plan-badge.enterprise {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: var(--white);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
  }
}

/* Plan Value Display */
.plan-value { display: none; }

.value-per-property {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 600;
}

.savings-badge {
  display: inline-block;
  margin-top: var(--space-xs);
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: bounce-subtle 3s ease-in-out infinite;
}

@keyframes bounce-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Plan Tagline */
.plan-tagline {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--gray-500);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

/* Enhanced Popular Badge */
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.25rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(11, 61, 58, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

/* Custom price amount for enterprise */
.price-amount.custom {
  font-size: 2.5rem;
  color: var(--gray-900);
}

/* ============================================
   12. TESTIMONIALS - SOCIAL PROOF
   ============================================ */

.testimonials-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* 3 slides */
}

.testimonial-slide {
  flex: 0 0 33.333%; /* Each slide takes 1/3 of container */
  padding: 0 var(--space-md);
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: 20px;
  padding: var(--space-xl);
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

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

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.star {
  color: #F59E0B;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: var(--space-lg);
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--gray-900);
  font-style: normal;
}

.author-role {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  gap: var(--space-sm);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--primary);
  opacity: 0.7;
}

/* ============================================
   13. FAQ SECTION - ACCORDION
   ============================================ */

.faq-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: var(--space-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.3s var(--ease-out-expo);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item[open] {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.faq-question {
  padding: var(--space-lg);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  transition: transform 0.3s var(--ease-spring);
  color: var(--gray-400);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--gray-600);
  line-height: 1.8;
  animation: faq-slide-down 0.3s var(--ease-out-expo);
}

@keyframes faq-slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   14. CTA SECTION - FINAL CONVERSION
   ============================================ */

.cta-section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.cta-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(11, 61, 58, 0.15);
  top: -200px;
  right: -200px;
  animation: glow-float 8s ease-in-out infinite;
}

.cta-glow-2 {
  width: 600px;
  height: 600px;
  background: rgba(11, 61, 58, 0.12);
  bottom: -300px;
  left: -300px;
  animation: glow-float 10s ease-in-out infinite reverse;
}

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

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.btn-cta-primary {
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--primary);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
  padding: 1rem 2rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease-out-expo);
}

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

.cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* ============================================
   15. FOOTER - COMPLETE INFO
   ============================================ */

.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.footer-tagline {
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  color: var(--white);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-badges {
  display: flex;
  gap: var(--space-md);
}

.security-badge {
  padding: 0.375rem 0.75rem;
  background: var(--gray-800);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
}

/* ============================================
   16. ANIMATIONS ON SCROLL
   ============================================ */

[data-animate] {
  opacity: 0;
  animation: none;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate="scale-up"] {
  transform: scale(0.9);
}

[data-animate].in-view {
  opacity: 1;
  animation: animate-in 0.8s var(--ease-out-expo) forwards;
}

@keyframes animate-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   17. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    margin-top: var(--space-xl);
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .pricing-grid,
  .pricing-grid-four {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rules-footer {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: all 0.3s ease;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pricing-grid,
  .pricing-grid-four {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .plan-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.65rem;
  }
  
  /* Mobile Pricing Adjustments */
  .original-price {
    font-size: 1.1rem;
  }
  
  .new-price-display .price-amount {
    font-size: 3.5rem;
  }
  
  .new-price-display .price-currency {
    font-size: 1.5rem;
  }
  
  .new-price-display .price-period {
    font-size: 1rem;
  }
  
  .launch-special {
    top: -12px;
    right: -45px;
    padding: 5px 10px;
    font-size: 0.6rem;
    transform: rotate(8deg);
  }
  
  .pricing-lock-banner {
    margin: var(--space-lg) auto;
    padding: var(--space-md) var(--space-lg);
  }
  
  .pricing-lock-text {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
  
  .pricing-lock-subtext {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .pricing-lock-icon {
    font-size: 1.3rem;
  }
  
  .pricing-trust {
    flex-direction: column;
    text-align: center;
  }
  
  .section-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .rule-card {
    flex: 0 0 280px;
    padding: var(--space-lg);
  }
  
  .rule-city h3 {
    font-size: 1.25rem;
  }
  
  .rule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .rule-text {
    margin-right: 0;
  }
  
  .rule-fine {
    align-self: flex-end;
  }
  
  .rules-warning,
  .rules-solution {
    padding: var(--space-md);
  }
  
  /* Additional mobile fixes for compliance rules */
  .compliance-rules-section {
    padding: 4rem 0 !important;
  }
  
  .rule-card {
    flex: 0 0 260px !important;
    -webkit-flex: 0 0 260px !important;
    padding: 1.5rem !important;
  }
  
  .rules-track {
    gap: 1rem !important;
  }
}

/* ============================================
   18. LOADING & TRANSITIONS
   ============================================ */

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: page-load 0.5s var(--ease-out-expo) forwards;
  pointer-events: none;
}

@keyframes page-load {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   19. CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 100px;
  border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ============================================
   END OF PREMIUM CSS
   ============================================ */
