/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-color: #f59e0b;
  --secondary: #1e40af;
  --accent: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --text-light: #ffffff;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-light: #f3f4f6;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --banner-gradient: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%);
  --banner-blur: rgba(255,255,255,0.7);
  
  /* Modern 2025 Variables */
  --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --accent-gradient: linear-gradient(45deg, #ff6b6b, #feca57);
  --text-gradient: linear-gradient(45deg, #667eea, #764ba2);
  --card-gradient: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  --glow-color: rgba(102, 126, 234, 0.3);
  --highlight-red: #ff6b6b;
  --spacing-unit: 8px;
  --border-radius-modern: 24px;
  --font-display: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

.modern-banner {
  width: 100vw;
  background: var(--banner-gradient);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.banner-gradient {
  width: 100%;
  padding: 0;
  backdrop-filter: blur(8px);
}

.banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 24px 0;
}

.brand-logo-modern {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo-icon-modern {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}

.banner-title-group {
  flex: 1 1 auto;
  margin-left: 32px;
}

.banner-title {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0.3em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.10);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.banner-subtitle {
  font-size: 1.2rem;
  color: #e0e7ff;
  font-weight: 500;
  margin-bottom: 0;
}

.nav-actions-modern {
  display: flex;
  gap: 16px;
}

.nav-actions-modern .btn {
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 32px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, color 0.2s;
}

.nav-actions-modern .btn-primary {
  background: #fff;
  color: #0072FF;
  border: none;
}

.nav-actions-modern .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Enhanced Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

.text-reveal {
  background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: textReveal 1.5s ease-out forwards;
}

.card-glow {
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(255, 184, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.magnetic {
  transition: transform 0.2s ease-out;
}

@keyframes textReveal {
  from {
    background-position: -200% 0;
  }
  to {
    background-position: 200% 0;
  }
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Image Gallery Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.gallery-container {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  height: 90vh;
  margin: 5vh auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal.active .gallery-container {
  transform: scale(1) translateY(0);
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: white;
}

.gallery-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gallery-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.gallery-close:hover {
  background: var(--bg-light);
  color: var(--text-primary);
}

.gallery-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gallery-main-image {
  flex: 1;
  position: relative;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

.gallery-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.gallery-prev,
.gallery-next {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-prev:hover,
.gallery-next:hover {
  background: white;
  transform: scale(1.1);
}

.gallery-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.gallery-thumbnails {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  overflow-x: auto;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.gallery-thumb:hover {
  opacity: 1;
  transform: scale(1.05);
}

.gallery-thumb.active {
  border-color: var(--primary-color);
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive gallery */
@media (max-width: 768px) {
  .gallery-container {
    width: 95vw;
    height: 95vh;
    margin: 2.5vh auto;
  }
  
  .gallery-nav {
    padding: 0 12px;
  }
  
  .gallery-prev,
  .gallery-next {
    width: 40px;
    height: 40px;
  }
  
  .gallery-thumbnails {
    padding: 12px 16px;
  }
  
  .gallery-thumb {
    width: 60px;
    height: 45px;
  }
}

.image-upload-section {
  margin: 24px 0;
}

.image-upload-label {
  display: block;
  cursor: pointer;
}

.upload-title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.upload-subtitle {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.image-upload-area {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  background: var(--bg-light);
}

.image-upload-area:hover,
.image-upload-area.dragover {
  border-color: var(--primary-color);
  background: rgba(255, 184, 0, 0.05);
}

.upload-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.upload-placeholder svg {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.upload-placeholder p {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-secondary);
}

.upload-placeholder span {
  font-size: 0.875rem;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.image-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
}

.image-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.image-preview-remove:hover {
  background: #ef4444;
}

/* Section Pattern Enhancement */
.section-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 184, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 184, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-pattern {
  position: relative;
  overflow: hidden;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.3s ease;
}

header.scrolled .header-inner {
  padding: 12px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.brand-logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.3));
}

.brand-logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
  filter: drop-shadow(0 4px 16px rgba(0, 212, 255, 0.4));
}

.brand-text {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive logo scaling */
@media (max-width: 768px) {
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .brand-text {
    font-size: 20px;
  }
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: none;
  font-size: 15px;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--secondary), #1d4ed8);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent), #ea580c);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #ea580c, #dc2626);
}

.btn-ghost {
  color: var(--primary);
  border: 2px solid var(--border-light);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--text-secondary);
  border: 2px solid var(--border);
  background: white;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-light);
}

.btn-outline {
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Test Button Styling */
.btn-test-modern {
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: auto !important;
  z-index: 100;
  user-select: none;
}

.btn-test-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
  background: linear-gradient(135deg, #ff5252 0%, #ffc107 100%);
}

.btn-test-modern:active {
  transform: translateY(0);
}

.btn-test-modern .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-test-modern:hover .btn-glow {
  transform: translateX(100%);
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

.section.compact {
  padding: 80px 0;
}

.bg-light {
  background: linear-gradient(180deg, var(--bg-light) 0%, rgba(243, 244, 246, 0.5) 100%);
}

.section-pattern {
  position: relative;
  overflow: hidden;
}

.section-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}

.hero-logo-watermark {
  width: 400px;
  height: 400px;
  filter: brightness(0) invert(1);
  animation: logoFloat 20s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(5deg) scale(1.05);
  }
  50% {
    transform: rotate(0deg) scale(1.1);
  }
  75% {
    transform: rotate(-5deg) scale(1.05);
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(30, 64, 175, 0.9) 100%);
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-30px, -30px) rotate(120deg); }
  66% { transform: translate(30px, -60px) rotate(240deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-art {
  position: relative;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-art img {
  width: 100%;
  max-width: 600px;
  height: auto;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.6s ease;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.hero-art:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Typography */
h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.025em;
}

h2.left-align {
  text-align: left;
}

h2.oversized {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.03em;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 64px;
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

/* Why Section */
.why-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
  margin-top: 72px;
  position: relative;
}

.step {
  text-align: center;
  padding: 48px 32px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.step:hover::before {
  transform: scaleX(1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
  position: relative;
  transition: all 0.4s ease;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step:hover .step-number::after {
  opacity: 1;
}

.step h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-color) 50%, 
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s ease-out;
}

.stat:hover::before {
  transform: translateX(100%);
}

.stat:hover {
  transform: translateY(-8px) rotateX(5deg);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 184, 0, 0.3);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.stats-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 3rem auto 0;
  font-style: italic;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.feature::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, 
    rgba(255, 184, 0, 0.03) 0%, 
    transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease-out;
  z-index: 1;
}

.feature:hover::before {
  transform: scale(1);
}

.feature:hover {
  transform: translateY(-8px) rotateX(2deg);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.feature p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.feature ul {
  list-style: none;
  position: relative;
  z-index: 2;
}

.feature li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.feature li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.feature:hover li {
  color: var(--text-light);
}

/* Enhanced Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.testimonial-featured {
  background: linear-gradient(135deg, 
    rgba(255, 184, 0, 0.08) 0%, 
    rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 184, 0, 0.2);
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 184, 0, 0.08) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial:hover::before {
  opacity: 1;
}

.testimonial:hover {
  transform: translateY(-12px) rotateX(3deg);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.testimonial-quote {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
  font-family: Georgia, serif;
  position: relative;
  z-index: 2;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.testimonial:hover .testimonial-content p {
  color: var(--text-light);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.testimonial-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  position: relative;
}

.author-initials {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial:hover .author-initials {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.author-title {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 500;
}

.author-savings {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.testimonial-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  font-weight: 600;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

/* Responsive testimonial adjustments */
@media (max-width: 768px) {
  .testimonial-author-card {
    gap: 12px;
  }
  
  .author-initials {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  
  .author-name {
    font-size: 16px;
  }
  
  .author-title {
    font-size: 13px;
  }
}

.testimonial:hover .author-name {
  color: var(--primary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

/* Responsive testimonial images */
@media (max-width: 768px) {
  .testimonial-image {
    width: 70px;
    height: 70px;
  }
  
  .testimonial-badge {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .testimonial-image {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* Enhanced AI Components */
.method-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.ai-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(91, 115, 255, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.trust-logo {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

.method-description {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.btn-loading {
  display: none;
}

.ai-result-card, .refined-profile-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ai-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.ai-insights, .profile-sections {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.insight-section, .profile-section {
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.insight-section h6, .profile-section h6 {
  margin: 0 0 8px 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.insight-section p, .profile-section p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.5;
}

.profile-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-dark);
}

.profile-section li {
  margin-bottom: 4px;
}

.cta-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(245, 158, 11, 0.05));
  border-left-color: var(--accent);
}

.result-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.error-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
  color: #dc2626;
}

.error-card h4 {
  margin: 0 0 8px 0;
  color: #dc2626;
}

.error-card pre {
  background: #fff;
  padding: 12px;
  border-radius: 4px;
  font-size: 12px;
  overflow-x: auto;
}

#ai-questionnaire-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(245, 158, 11, 0.02));
  border-radius: 12px;
  padding: 24px;
}

#ai-questionnaire-section h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.questionnaire-intro {
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.question-group {
  margin-bottom: 20px;
}

.question-group[data-importance="high"] {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.question-label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.priority-badge {
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
  margin-left: 8px;
}

.question-group input,
.question-group textarea,
.question-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: border-color 0.3s ease;
}

.question-group input:focus,
.question-group textarea:focus,
.question-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.basic-insights {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
}

.basic-insights h5 {
  margin: 0 0 12px 0;
  color: var(--primary);
  font-size: 16px;
}

.basic-insights ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-dark);
}

.basic-insights li {
  margin-bottom: 6px;
}

/* Browse and Listing Styles */
.browse-controls {
  margin-bottom: 32px;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.search-row {
  margin-bottom: 16px;
}

.search-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.browse-controls input,
.browse-controls select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.browse-controls input:focus,
.browse-controls select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#search-filter {
  flex: 1;
  min-width: 300px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* Advanced Filters Panel */
.advanced-filters-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.advanced-filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.advanced-filter-row:last-child {
  margin-bottom: 0;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 4px 0;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.checkbox-label:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .filter-row {
    grid-template-columns: 1fr;
  }
  
  .search-group {
    flex-direction: column;
  }
  
  .search-group > * {
    width: 100%;
  }
  
  .advanced-filter-row {
    grid-template-columns: 1fr;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* Filter Results Count */
.filter-results-count {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Enhanced Business Cards */
.business-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.1);
}

.business-card .card-figure {
  height: 220px;
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-light);
}

.business-card .card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.business-card:hover .card-figure img {
  transform: scale(1.05);
}

.image-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.business-card:hover .image-overlay {
  opacity: 1;
}

.view-gallery-btn {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.view-gallery-btn:hover {
  background: white;
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
}

.card-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card-content .meta {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.card-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.card-actions .btn {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Legacy card support */
.card:not(.business-card) {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:not(.business-card):hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.card:not(.business-card) .card-figure {
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-light);
}

.card:not(.business-card) .card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:not(.business-card) h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card:not(.business-card) .meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.card:not(.business-card) p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.card:not(.business-card) a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.card a:hover {
  text-decoration: underline;
}

/* Auth and Forms */
.auth-section {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.auth-forms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.auth-form h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.listing-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.method {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.method h3 {
  color: var(--primary);
  margin-bottom: 24px;
}

.method-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form {
  max-width: 600px;
  margin: 32px auto 0;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form Elements */
input, textarea, select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.form-actions .btn {
  flex: none;
}

@media (max-width: 640px) {
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}

label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
}

/* Footer */
footer {
  background: var(--text-primary);
  color: white;
  padding: 48px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.footer-logo {
  width: 48px;
  height: 48px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

.footer-text p {
  margin-bottom: 8px;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-logo {
    width: 40px;
    height: 40px;
  }
}

/* Lightbox and Details */
.details-hero {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.thumbnails .thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.thumbnails .thumb:hover {
  opacity: 1;
  transform: scale(1.05);
  border-color: var(--primary);
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: 0;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.lb-nav:hover {
  background: rgba(0, 0, 0, 0.9);
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-copy h1 {
    font-size: 36px;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .nav-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .steps-grid,
  .stats-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .auth-forms {
    grid-template-columns: 1fr;
  }
  
  .listing-methods {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .details-hero {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
