/* ═══════════════════════════════════════════════════════════
   RAWDRIVE MODERN UI - Complete Redesign
   iOS-inspired, glassmorphism, mobile-first
═══════════════════════════════════════════════════════════ */

:root {
  /* Brand Colors */
  --primary: #0d4a63;
  --primary-dark: #093445;
  --primary-light: #1a6b8a;
  --accent: #ff6b35;
  --accent-hover: #ff8c5a;
  --cyan: #22d3ee;
  --green: #10b981;
  
  /* Surfaces */
  --surface: #ffffff;
  --surface-secondary: #f8fafc;
  --surface-tertiary: #f1f5f9;
  
  /* Text */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;
  
  /* Borders */
  --border: #e2e8f0;
  --border-light: rgba(255,255,255,0.2);
  
  /* Glass */
  --glass-bg: rgba(255,255,255,0.85);
  --glass-dark: rgba(13,74,99,0.95);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
  
  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (min-width: 768px) { .container { padding: 0 var(--space-8); } }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: var(--transition);
}
.modern-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3) 0;
}
.modern-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ========================================
   LOGO STYLES - Header & Footer
   ======================================== */
.header-logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px;
  text-decoration: none;
}

/* Logo container with glassmorphism background */
.header-logo .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-logo .logo-container:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.header-logo .logo-icon {
  max-height: 32px !important;
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

/* Logo text - horizontally next to icon */
.header-logo .logo-brand {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.header-logo .logo-raw,
.header-logo .logo-drive {
  color: #ffffff;
}

/* When header is scrolled - darker text for light background */
.modern-header.scrolled .header-logo .logo-brand {
  color: var(--text-primary);
  text-shadow: none;
}

.modern-header.scrolled .header-logo .logo-raw {
  color: #1e5f8a;
}

.modern-header.scrolled .header-logo .logo-drive {
  color: #22b8cf;
}

.modern-header.scrolled .header-logo .logo-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.nav-menu {
  display: none;
  gap: var(--space-1);
}
@media (min-width: 1024px) { .nav-menu { display: flex; } }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.modern-header.scrolled .nav-link { color: var(--text-secondary); }
.nav-link:hover { background: rgba(255,255,255,0.15); }
.modern-header.scrolled .nav-link:hover { background: var(--surface-tertiary); color: var(--text-primary); }
.nav-link.active { color: var(--cyan); }
.modern-header.scrolled .nav-link.active { color: var(--primary); }

.nav-buttons { display: flex; align-items: center; gap: var(--space-3); }
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
}
.modern-header.scrolled .mobile-menu-toggle {
  background: var(--surface-tertiary); }
@media (min-width: 1024px) { .mobile-menu-toggle {
  display: none; } }
.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: white;
  transition: var(--transition);
}
.modern-header.scrolled .mobile-menu-toggle span { background: var(--text-primary); }

/* Mobile Menu */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--glass-dark);
  backdrop-filter: blur(20px);
  z-index: 2000;
  padding: var(--space-16) var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
  transition: right 0.4s var(--ease);
}
.mobile-menu.active { right: 0; }
.mobile-menu-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 30px;
  height: 30px;
  justify-content: center;
  font-size: 24px;
  color: white;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}
.mobile-nav-link {
  font-size: 1.1rem;
  color: white;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  justify-content: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.9rem;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: var(--space-2) var(--space-4); font-size: 0.85rem; }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,53,0.3); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary); color: white; }

.btn-glass {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.25); }

.btn-glass-dark {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-glass-dark:hover { background: rgba(255,255,255,0.2); }

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

.btn-ghost {
  background: transparent;
  color: var(--text-inverse);
  border: 1px solid rgba(255,255,255,0.3);
}
.modern-header.scrolled .btn-ghost { color: var(--text-primary); border-color: var(--border); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: var(--space-20) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(34,211,238,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255,107,53,0.1) 0%, transparent 50%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; background: var(--cyan); top: 10%; left: 10%; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--accent); bottom: 20%; right: 15%; animation-delay: -7s; }
.hero-orb-3 { width: 200px; height: 200px; background: var(--green); top: 50%; right: 30%; animation-delay: -14s; }

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

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 1024px) {
  .hero-container { grid-template-columns: 1fr 1fr; }
}

/* Hero section desktop spacing adjustment */
@media (min-width: 1024px) {
  .hero {
    min-height: 90vh;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
}

.hero-content { color: white; }
.hero-badge {
  display: inline-flex;
  gap: var(--space-2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255,255,255,0.2);
}
.badge-icon { font-size: 1rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #a5f3fc 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero-cta {
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero-trust {
  flex-wrap: wrap;
  gap: var(--space-6);
}
.trust-item {
  gap: var(--space-2);
  font-size: 0.9rem;
  opacity: 0.85;
}
.trust-item svg { color: var(--green); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
}
.hero-float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
  animation: floatCard 6s ease-in-out infinite;
}
.hero-float-card-1 { top: 15%; left: -20px; animation-delay: -2s; }
.hero-float-card-2 { bottom: 20%; right: -20px; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-icon { font-size: 1.75rem; }
.float-text strong { display: block; font-size: 1.25rem; color: var(--primary); }
.float-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════════════════════ */
.features-section {
  padding: var(--space-20) 0;
  background: var(--surface-secondary);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 56px;
  height: 56px;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  color: white;
  margin-bottom: var(--space-6);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}
.feature-desc {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--space-20) 0;
  background: var(--surface);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  text-align: center;
  padding: var(--space-8);
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.step-desc {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════ */
.pricing-section {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-secondary) 100%);
}

.pricing-toggle {
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.toggle-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  gap: var(--space-2);
}
.toggle-badge {
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.toggle-switch {
  width: 56px;
  height: 24px;
  background: var(--surface-tertiary);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  border: 2px solid var(--border);
}
.toggle-slider {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: var(--transition);
}
.toggle-switch.active .toggle-slider { left: calc(100% - 22px); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .pricing-grid { grid-template-columns: repeat(5, 1fr); gap: var(--space-4); } }

.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--border);
  position: relative;
  flex-direction: column;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card-popular {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-color: transparent;
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(13,74,99,0.3);
  z-index: 10;
}
.pricing-card-popular:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card-popular .pricing-desc { color: rgba(255,255,255,0.8); }
.pricing-card-popular .pricing-features li { border-color: rgba(255,255,255,0.15); }
.pricing-card-popular .btn-primary { background: white; color: var(--primary); }

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
}

.pricing-icon { font-size: 2rem; margin-bottom: var(--space-4); }
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}
.pricing-price {
  margin-bottom: var(--space-2);
}
.price-currency {
  font-size: 1.75rem;
  font-weight: 600;
  vertical-align: top;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
}
.price-period {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}
.price-custom {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
}
.pricing-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.pricing-card-popular .pricing-subtext { color: rgba(255,255,255,0.7); }

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
  flex-grow: 1;
}
.pricing-features li {
  padding: var(--space-3) 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li strong { font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--space-20) 0;
  background: var(--surface-secondary);
}
.testimonials-slider {
  padding-bottom: var(--space-12);
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--border);
  height: 100%;
}
.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  font-style: italic;
}
.testimonial-author {
  gap: var(--space-4);
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface-tertiary);
}
.author-info strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--space-20) 0;
  background: var(--surface);
}
.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-3xl);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-content { position: relative; z-index: 10; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-4);
}
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}
.cta-decoration { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.cta-orb-1 { width: 300px; height: 300px; background: var(--cyan); top: -100px; right: -50px; }
.cta-orb-2 { width: 200px; height: 200px; background: var(--accent); bottom: -50px; left: 10%; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.modern-footer {
  background: linear-gradient(180deg, #0a1628 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-12); } }

.footer-brand { max-width: 300px; }
.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-4);
}
.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.footer-social {
  gap: var(--space-3);
}
.footer-social a {
  width: 30px;
  height: 30px;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: white; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-5);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: var(--space-3); }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--cyan); }

.footer-contact .contact-item {
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-contact .contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cyan);
}
.footer-contact .contact-item a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-contact .contact-item a:hover { color: var(--cyan); }

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}
.footer-bottom .heart { color: #ef4444; }

/* ═══════════════════════════════════════════════════════════
   MODAL STYLES
═══════════════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  justify-content: center;
}
.modal--active { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.modal__wrapper {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-2xl);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.modal__body { padding: 0; }
.modal__content {
  display: none;
}
.modal__content--visible { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .modal__content--visible { grid-template-columns: 1fr 1fr; } }

.modal__info {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-10);
  flex-direction: column;
  justify-content: center;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.modal__descr {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}
.modal__descr span { color: var(--cyan); font-weight: 600; }
.modal__list {
  list-style: none;
  margin-bottom: var(--space-8);
}
.modal__list li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  color: rgba(255,255,255,0.85);
}
.modal__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 600;
}
.modal__switch {
  padding: var(--space-3) var(--space-6);
  background: rgba(255,255,255,0.15);
  color: white;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  align-self: flex-start;
}
.modal__switch:hover { background: rgba(255,255,255,0.25); }

.modal__form {
  padding: var(--space-10);
}
.form__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-8);
  color: var(--text-primary);
}
.form__row {
  margin-bottom: var(--space-6);
  position: relative;
}
.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}
.form__input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--surface);
}
.form__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,74,99,0.1);
}
.form__row-border { display: none; }
.form__submit {
  width: 100%;
  padding: var(--space-4);
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.form__submit:hover { background: var(--primary-dark); }
.btn--green-bg { background: var(--primary); }
.btn--green-bg:hover { background: var(--primary-dark); }

.modal__checkbox {
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.modal__checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}
.modal__switch--forgot {
  background: none;
  color: var(--primary);
  padding: 0;
  font-size: 0.9rem;
  margin-bottom: var(--space-6);
  display: block;
}
.modal__switch--forgot:hover { text-decoration: underline; }

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-float-card { display: none; }
  .nav-buttons .btn-ghost,
  .nav-buttons .btn-primary.btn-sm { display: none; }
}
@media (min-width: 1024px) {
  .nav-buttons .btn-ghost,
  .nav-buttons .btn-primary.btn-sm { display: inline-flex; }
}

/* Hero Background Fix */
.hero {
  background: linear-gradient(135deg, #093445 0%, #0d4a63 50%, #1a6b8a 100%);
}

.hero-bg {
  z-index: 1;
}

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

/* Fix for hero content visibility */
.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  color: rgba(255,255,255,0.9);
}

/* Fix nav menu visibility */
.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

/* Make sure hero text is white */
.hero h1, .hero p, .hero .trust-item {
  color: white;
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
}

/* Fix hero visual stacking */
.hero-visual {
  position: relative;
  z-index: 5;
}


/* ========================================
   RESPONSIVE HEADER - Mobile First
   ======================================== */
/* Mobile: Hide logo text, show only icon */
@media (max-width: 767px) {
  .header-logo .logo-brand {
    display: none;
  }
  .header-logo .logo-container {
    width: 30px;
    height: 30px;
  }
  .header-logo .logo-icon {
  max-height: 32px !important;
    height: 24px;
  }
  .modern-header {
    padding: var(--space-3) 0;
  }
  .nav-buttons .btn-ghost,
  .nav-buttons .btn-primary {
    padding: var(--space-2) var(--space-3);
    font-size: 0.85rem;
  }
}

/* Tablet: Show logo text */
@media (min-width: 768px) {
  .header-logo .logo-brand {
    display: inline-flex;
  }
}
/* ═══════════════════════════════════════════════════════════
   GLASSMORPHISM ENHANCEMENTS - Modern Elegant Effects
   Added: Shadows, Hover Effects, Animations
═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   ANIMATION KEYFRAMES
═══════════════════════════════════════════════════════════ */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(34, 211, 238, 0.3); }
  50% { box-shadow: 0 0 40px rgba(34, 211, 238, 0.5), 0 0 60px rgba(34, 211, 238, 0.2); }
}

@keyframes floatSmooth {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  50% { transform: translateY(-4px) rotate(-0.5deg); }
  75% { transform: translateY(-10px) rotate(0.25deg); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(255, 255, 255, 0.2); }
  50% { border-color: rgba(255, 255, 255, 0.5); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.05); }
}

@keyframes subtleShine {
  0% { opacity: 0; transform: translateX(-100%) rotate(25deg); }
  50% { opacity: 0.5; }
  100% { opacity: 0; transform: translateX(100%) rotate(25deg); }
}

/* ═══════════════════════════════════════════════════════════
   HERO FLOAT CARDS - Enhanced
═══════════════════════════════════════════════════════════ */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  gap: var(--space-3);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  animation: floatSmooth 8s ease-in-out infinite !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  overflow: hidden;
}

.hero-float-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-float-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 50px;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(25deg);
  animation: subtleShine 4s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-float-card:hover {
  transform: translateY(-12px) scale(1.05) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(34, 211, 238, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.hero-float-card-1 {
  top: 15%;
  left: -20px;
  animation-delay: -2s !important;
}

.hero-float-card-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 0s !important;
}

.float-icon {
  font-size: 1.75rem;
  transition: transform 0.3s ease;
}

.hero-float-card:hover .float-icon {
  animation: iconFloat 0.6s ease;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS - Enhanced Glassmorphism
═══════════════════════════════════════════════════════════ */
.feature-card {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.feature-card:hover {
  transform: translateY(-12px) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(13, 74, 99, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-color: rgba(13, 74, 99, 0.15) !important;
}

.feature-icon {
  width: 60px !important;
  height: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  color: white;
  margin-bottom: var(--space-6);
  box-shadow:
    0 8px 20px rgba(13, 74, 99, 0.3),
    0 4px 8px rgba(13, 74, 99, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 12px 30px rgba(13, 74, 99, 0.4),
    0 6px 12px rgba(13, 74, 99, 0.25),
    0 0 20px rgba(34, 211, 238, 0.3) !important;
}

.feature-card:hover .feature-icon::after {
  opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════
   PRICING CARDS - Enhanced
═══════════════════════════════════════════════════════════ */
.pricing-card {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.05),
    0 1px 4px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px) !important;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-color: rgba(13, 74, 99, 0.2) !important;
}

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

.pricing-card-popular {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: white;
  border-color: transparent !important;
  transform: scale(1.02);
  box-shadow:
    0 25px 60px rgba(13, 74, 99, 0.35),
    0 10px 24px rgba(13, 74, 99, 0.25),
    0 0 40px rgba(34, 211, 238, 0.15) !important;
  z-index: 10;
}

.pricing-card-popular::before {
  display: none;
}

.pricing-card-popular::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
  opacity: 0.5;
}

.pricing-card-popular:hover {
  transform: scale(1.04) translateY(-8px) !important;
  box-shadow:
    0 30px 70px rgba(13, 74, 99, 0.4),
    0 15px 30px rgba(13, 74, 99, 0.3),
    0 0 60px rgba(34, 211, 238, 0.25) !important;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c5a 100%) !important;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
  animation: glowPulse 3s ease-in-out infinite;
}

.pricing-icon {
  font-size: 2.5rem !important;
  margin-bottom: var(--space-4);
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.15) rotate(5deg);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL CARDS - Enhanced
═══════════════════════════════════════════════════════════ */
.testimonial-card {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid rgba(226, 232, 240, 0.6) !important;
  height: 100%;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.05),
    0 1px 4px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(13, 74, 99, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-color: rgba(13, 74, 99, 0.15) !important;
}

.testimonial-card:hover::before {
  color: rgba(34, 211, 238, 0.15);
  transform: scale(1.1);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.author-avatar {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface-tertiary);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 0 0 3px rgba(34, 211, 238, 0) !important;
  transition: all 0.3s ease !important;
}

.testimonial-card:hover .author-avatar {
  border-color: var(--cyan) !important;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.15),
    0 0 0 4px rgba(34, 211, 238, 0.2) !important;
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════════════
   STEP CARDS - Enhanced
═══════════════════════════════════════════════════════════ */
.step-card {
  text-align: center;
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(226, 232, 240, 0.4) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  transform: translateY(-8px) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(13, 74, 99, 0.15) !important;
}

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

.step-number {
  font-family: var(--font-display);
  font-size: 4.5rem !important;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-4);
  transition: all 0.3s ease !important;
  text-shadow: none;
  filter: drop-shadow(0 4px 8px rgba(13, 74, 99, 0.2));
}

.step-card:hover .step-number {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(13, 74, 99, 0.3));
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION - Enhanced
═══════════════════════════════════════════════════════════ */
.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-3xl);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(13, 74, 99, 0.3),
    0 10px 24px rgba(13, 74, 99, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px) !important;
  opacity: 0.4 !important;
  animation: floatSmooth 12s ease-in-out infinite !important;
}

.cta-orb-1 {
  width: 350px !important;
  height: 350px !important;
  background: var(--cyan);
  top: -120px;
  right: -80px;
  animation-delay: -3s !important;
}

.cta-orb-2 {
  width: 250px !important;
  height: 250px !important;
  background: var(--accent);
  bottom: -80px;
  left: 5%;
  animation-delay: -7s !important;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS - Enhanced Glass
═══════════════════════════════════════════════════════════ */
.btn-glass {
  background: rgba(255, 255, 255, 0.12) !important;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
  overflow: hidden;
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  transform: translateY(-3px) !important;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.btn-glass:active {
  transform: translateY(-1px) !important;
}

.btn-glass-dark {
  background: rgba(255, 255, 255, 0.08) !important;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn-glass-dark:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-3px) !important;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c5a 100%) !important;
  color: white;
  box-shadow:
    0 4px 15px rgba(255, 107, 53, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff8c5a 0%, var(--accent) 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow:
    0 10px 30px rgba(255, 107, 53, 0.45),
    0 4px 12px rgba(255, 107, 53, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.btn-white {
  background: rgba(255, 255, 255, 0.98) !important;
  color: var(--primary);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn-white:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(226, 232, 240, 0.8) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn-outline:hover {
  border-color: var(--primary) !important;
  background: var(--primary) !important;
  color: white !important;
  transform: translateY(-3px) !important;
  box-shadow:
    0 8px 25px rgba(13, 74, 99, 0.25),
    0 4px 10px rgba(13, 74, 99, 0.15) !important;
}

/* ═══════════════════════════════════════════════════════════
   HEADER - Enhanced Glass
═══════════════════════════════════════════════════════════ */
.modern-header.scrolled {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.modern-header.scrolled .nav-link:hover::after {
  width: 80%;
}

/* ═══════════════════════════════════════════════════════════
   HERO BADGE - Enhanced
═══════════════════════════════════════════════════════════ */
.hero-badge {
  display: inline-flex;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  animation: borderGlow 4s ease-in-out infinite;
  transition: all 0.3s ease !important;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS - Enhanced
═══════════════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: rgba(255, 107, 53, 0.08) !important;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 107, 53, 0.15) !important;
}

/* ═══════════════════════════════════════════════════════════
   MODAL - Enhanced Glass
═══════════════════════════════════════════════════════════ */
.modal__wrapper {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.modal__overlay {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE - Reduced Animations
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .hero-float-card {
    animation: none !important;
  }

  .hero-float-card::after {
    display: none;
  }

  .feature-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .step-card:hover {
    transform: translateY(-4px) !important;
  }

  .cta-orb {
    animation-duration: 20s !important;
  }

  .pricing-card-popular:hover {
    transform: scale(1.02) translateY(-4px) !important;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL MOBILE FIXES
═══════════════════════════════════════════════════════════ */

/* Testimonial Author - Proper Flex Layout */
.testimonial-author {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: var(--space-4) !important;
}

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

/* Mobile Testimonial Improvements */
@media (max-width: 767px) {
  .testimonials-section {
    padding: var(--space-12) 0 !important;
  }

  .testimonials-slider {
    padding: 0 var(--space-2) !important;
    padding-bottom: var(--space-10) !important;
  }

  .testimonial-card {
    padding: var(--space-5) !important;
    margin: 0 var(--space-2) !important;
    min-height: auto !important;
  }

  .testimonial-card::before {
    font-size: 4rem !important;
    top: 10px !important;
    right: 15px !important;
  }

  .testimonial-text {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-bottom: var(--space-4) !important;
  }

  .testimonial-rating {
    font-size: 1.1rem !important;
    margin-bottom: var(--space-3) !important;
  }

  .testimonial-author {
    gap: var(--space-3) !important;
  }

  .author-avatar {
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0 !important;
  }

  .author-info strong {
    font-size: 0.95rem !important;
  }

  .author-info span {
    font-size: 0.8rem !important;
  }

  /* Swiper pagination better visibility on mobile */
  .swiper-pagination {
    bottom: 0 !important;
  }

  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonial-card {
    padding: var(--space-6) !important;
  }

  .testimonial-text {
    font-size: 0.95rem !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL SECTION - COMPLETE FIX
   Fixes horizontal overflow and alignment issues
═══════════════════════════════════════════════════════════ */

/* Prevent horizontal overflow at all levels */
html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Section container */
.testimonials-section {
  padding: var(--space-16) 0 !important;
  background: var(--surface-secondary) !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

.testimonials-section > .container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 var(--space-4) !important;
  overflow: hidden !important;
}

@media (min-width: 768px) {
  .testimonials-section > .container {
    padding: 0 var(--space-8) !important;
  }
}

/* Swiper container - CRITICAL FIXES */
.testimonials-slider {
  width: 100% !important;
  overflow: hidden !important;
  padding-bottom: 50px !important;
  position: relative !important;
}

.testimonials-slider .swiper-wrapper {
  display: flex !important;
  width: 100% !important;
}

.testimonials-slider .swiper-slide {
  flex-shrink: 0 !important;
  height: auto !important;
  box-sizing: border-box !important;
}

/* Testimonial Card - Complete Restyle */
.testimonial-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 28px !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  height: 100% !important;
  min-height: 280px !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Quote decoration */
.testimonial-card::before {
  content: '"' !important;
  position: absolute !important;
  top: 15px !important;
  right: 20px !important;
  font-size: 5rem !important;
  font-family: Georgia, serif !important;
  color: rgba(13, 74, 99, 0.06) !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

/* Rating stars */
.testimonial-rating {
  color: #fbbf24 !important;
  font-size: 1.1rem !important;
  margin-bottom: 16px !important;
  letter-spacing: 2px !important;
}

/* Testimonial text */
.testimonial-text {
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
  color: #475569 !important;
  margin-bottom: 20px !important;
  font-style: italic !important;
  flex-grow: 1 !important;
}

/* Author section - CRITICAL FIX */
.testimonial-author {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(226, 232, 240, 0.6) !important;
}

.author-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  border: 2px solid #f1f5f9 !important;
}

.author-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
  flex: 1 !important;
}

.author-info strong {
  display: block !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  color: #0f172a !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.author-info span {
  display: block !important;
  font-size: 0.8rem !important;
  color: #94a3b8 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Swiper pagination */
.testimonials-slider .swiper-pagination {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  text-align: center !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #e2e8f0 !important;
  opacity: 1 !important;
  margin: 0 5px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: #0d4a63 !important;
  transform: scale(1.2) !important;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE STYLES (max-width: 767px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 48px 0 !important;
  }

  .testimonials-section > .container {
    padding: 0 16px !important;
  }

  .testimonials-slider {
    padding-bottom: 40px !important;
  }

  .testimonial-card {
    padding: 20px !important;
    min-height: 240px !important;
    border-radius: 12px !important;
  }

  .testimonial-card::before {
    font-size: 3.5rem !important;
    top: 10px !important;
    right: 15px !important;
  }

  .testimonial-rating {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .testimonial-text {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
  }

  .testimonial-author {
    gap: 10px !important;
    padding-top: 12px !important;
  }

  .author-avatar {
    width: 40px !important;
    height: 40px !important;
  }

  .author-info strong {
    font-size: 0.9rem !important;
  }

  .author-info span {
    font-size: 0.75rem !important;
  }

  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 4px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   TABLET STYLES (768px - 1023px)
═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonial-card {
    padding: 24px !important;
    min-height: 260px !important;
  }

  .testimonial-text {
    font-size: 0.9rem !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   HERO SECTION ENHANCEMENTS
   Subtle animations, flex fixes, enhanced visuals
═══════════════════════════════════════════════════════════ */

/* 1. Fix flex layouts */
.hero-cta {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}

.hero-trust {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
}

.trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.hero-float-card {
  display: flex !important;
  align-items: center !important;
}

/* 2. Subtle entrance animations */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  animation: heroFadeInUp 0.7s ease-out forwards !important;
}

.hero-title {
  animation: heroFadeInUp 0.7s ease-out 0.1s forwards !important;
  opacity: 0;
}

.hero-subtitle {
  animation: heroFadeInUp 0.7s ease-out 0.2s forwards !important;
  opacity: 0;
}

.hero-cta {
  animation: heroFadeInUp 0.7s ease-out 0.3s forwards !important;
  opacity: 0;
}

.hero-trust {
  animation: heroFadeInUp 0.7s ease-out 0.4s forwards !important;
  opacity: 0;
}

.hero-visual {
  animation: heroFadeInUp 0.9s ease-out 0.35s forwards !important;
  opacity: 0;
}

/* 3. Animated gradient text */
@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero .gradient-text {
  background: linear-gradient(90deg, #22d3ee, #a5f3fc, #67e8f9, #22d3ee) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: heroGradientShift 4s ease infinite !important;
}

/* 4. Enhanced hero image wrapper */
.hero-image-wrapper {
  border: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow:
    0 25px 80px rgba(0,0,0,0.35),
    0 10px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15) !important;
  position: relative !important;
}

.hero-image-wrapper::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  border-radius: inherit !important;
}

/* 5. Enhanced CTA button glow */
.hero-cta .btn-primary {
  box-shadow:
    0 4px 15px rgba(255, 107, 53, 0.4),
    0 0 30px rgba(255, 107, 53, 0.2) !important;
  transition: all 0.3s ease !important;
}

.hero-cta .btn-primary:hover {
  box-shadow:
    0 8px 25px rgba(255, 107, 53, 0.5),
    0 0 50px rgba(255, 107, 53, 0.35) !important;
  transform: translateY(-3px) !important;
}

/* 6. Trust item checkmark glow */
.trust-item svg {
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.6)) !important;
  color: #10b981 !important;
}

/* 7. Enhanced hero badge */
.hero-badge {
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  transition: all 0.3s ease !important;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* 8. Enhanced glass button */
.hero-cta .btn-glass {
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.hero-cta .btn-glass:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-3px) !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO MOBILE OPTIMIZATIONS
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .hero {
    min-height: auto !important;
    padding: 100px 0 60px !important;
  }

  .hero-content {
    text-align: center !important;
  }

  .hero-badge {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-cta {
    justify-content: center !important;
    gap: 12px !important;
  }

  .hero-cta .btn {
    width: 100% !important;
    max-width: 280px !important;
  }

  .hero-trust {
    justify-content: center !important;
    gap: 16px !important;
  }

  .trust-item {
    font-size: 0.8rem !important;
  }

  /* Show one float card on mobile */
  .hero-float-card {
    display: flex !important;
    transform: scale(0.8) !important;
    padding: 12px !important;
  }

  .hero-float-card-1 {
    top: auto !important;
    bottom: -20px !important;
    left: 5px !important;
    right: auto !important;
  }

  .hero-float-card-2 {
    display: none !important;
  }

  .float-icon {
    font-size: 1.5rem !important;
  }

  .float-text strong {
    font-size: 1rem !important;
  }

  .float-text span {
    font-size: 0.7rem !important;
  }

  /* Reduce animation intensity on mobile */
  .hero-badge,
  .hero-title,
  .hero-subtitle,
  .hero-cta,
  .hero-trust,
  .hero-visual {
    animation-duration: 0.5s !important;
  }

  /* Smaller orbs on mobile */
  .hero-orb-1 {
    width: 200px !important;
    height: 200px !important;
  }

  .hero-orb-2 {
    width: 150px !important;
    height: 150px !important;
  }

  .hero-orb-3 {
    width: 100px !important;
    height: 100px !important;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-float-card-1 {
    left: -10px !important;
  }

  .hero-float-card-2 {
    right: -10px !important;
  }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-title,
  .hero-subtitle,
  .hero-cta,
  .hero-trust,
  .hero-visual {
    animation: none !important;
    opacity: 1 !important;
  }

  .hero .gradient-text {
    animation: none !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   HERO BACKGROUND ANIMATIONS - Enhanced Orbs
   Smoother motion, color shifts, subtle pulsing
═══════════════════════════════════════════════════════════ */

/* Enhanced Orb Base Styles */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

/* Orb 1 - Cyan/Teal - Top Left */
.hero-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.8) 0%, rgba(34, 211, 238, 0.4) 50%, transparent 70%);
  top: 5%;
  left: 5%;
  animation:
    orbFloat1 25s ease-in-out infinite,
    orbPulse 8s ease-in-out infinite,
    orbColorShift1 15s ease-in-out infinite;
}

/* Orb 2 - Orange/Coral - Bottom Right */
.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.7) 0%, rgba(255, 107, 53, 0.3) 50%, transparent 70%);
  bottom: 10%;
  right: 10%;
  animation:
    orbFloat2 22s ease-in-out infinite,
    orbPulse 10s ease-in-out infinite 2s,
    orbColorShift2 18s ease-in-out infinite;
}

/* Orb 3 - Green/Emerald - Center Right */
.hero-orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.6) 0%, rgba(16, 185, 129, 0.2) 50%, transparent 70%);
  top: 40%;
  right: 25%;
  animation:
    orbFloat3 20s ease-in-out infinite,
    orbPulse 12s ease-in-out infinite 4s;
}

/* Floating Animations - Organic Movement */
@keyframes orbFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  20% {
    transform: translate(40px, -30px) scale(1.05);
  }
  40% {
    transform: translate(20px, 40px) scale(0.95);
  }
  60% {
    transform: translate(-30px, 20px) scale(1.08);
  }
  80% {
    transform: translate(-20px, -40px) scale(0.98);
  }
}

@keyframes orbFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-35px, -25px) scale(1.1);
  }
  50% {
    transform: translate(25px, -45px) scale(0.92);
  }
  75% {
    transform: translate(-15px, 35px) scale(1.05);
  }
}

@keyframes orbFloat3 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(30px, 25px) scale(1.12) rotate(5deg);
  }
  66% {
    transform: translate(-25px, -30px) scale(0.9) rotate(-5deg);
  }
}

/* Subtle Pulsing - Breathing Effect */
@keyframes orbPulse {
  0%, 100% {
    opacity: 0.45;
    filter: blur(80px);
  }
  50% {
    opacity: 0.6;
    filter: blur(90px);
  }
}

/* Color Shift Animations */
@keyframes orbColorShift1 {
  0%, 100% {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.8) 0%, rgba(34, 211, 238, 0.4) 50%, transparent 70%);
  }
  50% {
    background: radial-gradient(circle, rgba(103, 232, 249, 0.8) 0%, rgba(34, 211, 238, 0.4) 50%, transparent 70%);
  }
}

@keyframes orbColorShift2 {
  0%, 100% {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.7) 0%, rgba(255, 107, 53, 0.3) 50%, transparent 70%);
  }
  50% {
    background: radial-gradient(circle, rgba(255, 140, 90, 0.7) 0%, rgba(255, 107, 53, 0.3) 50%, transparent 70%);
  }
}

/* Enhanced Gradient Overlay */
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(34, 211, 238, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 75%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  animation: gradientShiftBg 20s ease-in-out infinite;
}

@keyframes gradientShiftBg {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Add a subtle noise texture overlay for depth */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS - Reduce Animation Complexity
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .hero-orb-1 {
    width: 250px;
    height: 250px;
    top: 0;
    left: -50px;
    animation: orbFloat1 30s ease-in-out infinite;
  }

  .hero-orb-2 {
    width: 180px;
    height: 180px;
    bottom: 5%;
    right: -30px;
    animation: orbFloat2 28s ease-in-out infinite;
  }

  .hero-orb-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 10%;
    animation: orbFloat3 25s ease-in-out infinite;
  }

  /* Disable color shift on mobile for performance */
  .hero-orb-1,
  .hero-orb-2 {
    animation: orbFloat1 30s ease-in-out infinite, orbPulse 10s ease-in-out infinite;
  }

  /* Hide noise texture on mobile */
  .hero-bg::after {
    display: none;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3,
  .hero-gradient {
    animation: none !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   POLICY PAGE HEADER FIX
   Makes header always solid (scrolled state) on policy pages
═══════════════════════════════════════════════════════════ */

/* Policy pages - header should always be solid white */
body.policy-page .modern-header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.03) !important;
}

body.policy-page .modern-header .header-logo .logo-brand {
  color: var(--text-primary, #0f172a) !important;
}

body.policy-page .modern-header .header-logo .logo-raw {
  color: var(--primary, #0d4a63) !important;
}

body.policy-page .modern-header .header-logo .logo-drive {
  color: var(--accent, #ff6b35) !important;
}

body.policy-page .modern-header .nav-link {
  color: var(--text-secondary, #475569) !important;
}

body.policy-page .modern-header .nav-link:hover {
  background: var(--surface-tertiary, #f1f5f9) !important;
  color: var(--text-primary, #0f172a) !important;
}

body.policy-page .modern-header .nav-link.active {
  color: var(--primary, #0d4a63) !important;
}

body.policy-page .modern-header .btn-ghost {
  color: var(--text-primary, #0f172a) !important;
  border-color: var(--border, #e2e8f0) !important;
}

body.policy-page .modern-header .mobile-menu-toggle span {
  background: var(--text-primary, #0f172a) !important;
}
/* ═══════════════════════════════════════════════════════════
   MODAL ENHANCEMENTS
   Modern glassmorphism and animations for login/signup modals
═══════════════════════════════════════════════════════════ */

/* Enhanced Modal Overlay */
.modal__overlay {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* Enhanced Modal Wrapper */
.modal__wrapper {
  background: rgba(255, 255, 255, 0.98) !important;
  border-radius: 1.5rem !important;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  overflow: hidden !important;
  animation: modalSlideIn 0.4s ease-out forwards !important;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced Info Panel */
.modal__info {
  background: linear-gradient(145deg, #093445 0%, #0d4a63 50%, #1a6b8a 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Add decorative orb to info panel */
.modal__info::before {
  content: '' !important;
  position: absolute !important;
  top: -50px !important;
  right: -50px !important;
  width: 200px !important;
  height: 200px !important;
  background: rgba(34, 211, 238, 0.15) !important;
  border-radius: 50% !important;
  filter: blur(40px) !important;
  pointer-events: none !important;
}

.modal__info::after {
  content: '' !important;
  position: absolute !important;
  bottom: -30px !important;
  left: -30px !important;
  width: 120px !important;
  height: 120px !important;
  background: rgba(255, 107, 53, 0.1) !important;
  border-radius: 50% !important;
  filter: blur(30px) !important;
  pointer-events: none !important;
}

/* Enhanced Modal Title */
.modal__title {
  font-family: 'Outfit', var(--font-display), sans-serif !important;
  position: relative !important;
  z-index: 1 !important;
}

.modal__descr {
  position: relative !important;
  z-index: 1 !important;
}

.modal__list {
  position: relative !important;
  z-index: 1 !important;
}

/* Enhanced List Items */
.modal__list li::before {
  content: '' !important;
  width: 20px !important;
  height: 20px !important;
  background: rgba(34, 211, 238, 0.2) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.modal__list li::after {
  content: '✓' !important;
  position: absolute !important;
  left: 4px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #22d3ee !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
}

/* Enhanced Switch Button */
.modal__switch {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  position: relative !important;
  z-index: 1 !important;
  transition: all 0.3s ease !important;
}

.modal__switch:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Enhanced Form Panel */
.modal__form {
  background: #ffffff !important;
}

.form__title {
  font-family: 'Outfit', var(--font-display), sans-serif !important;
  background: linear-gradient(135deg, #0d4a63 0%, #1a6b8a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Enhanced Form Inputs */
.form__input {
  border: 2px solid #e2e8f0 !important;
  border-radius: 0.75rem !important;
  padding: 14px 16px !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  background: #f8fafc !important;
}

.form__input:focus {
  border-color: #22d3ee !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1) !important;
}

.form__input::placeholder {
  color: #94a3b8 !important;
}

/* Enhanced Submit Button */
.form__submit {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%) !important;
  border-radius: 0.75rem !important;
  padding: 16px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35) !important;
  transition: all 0.3s ease !important;
}

.form__submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45) !important;
}

.form__submit:active {
  transform: translateY(0) !important;
}

/* Enhanced Checkbox */
.modal__checkbox {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.modal__checkbox input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  accent-color: #0d4a63 !important;
  cursor: pointer !important;
}

.modal__checkbox label {
  cursor: pointer !important;
  user-select: none !important;
}

/* Enhanced Forgot Password Link */
.modal__switch--forgot {
  color: #0d4a63 !important;
  font-weight: 500 !important;
  transition: color 0.2s ease !important;
}

.modal__switch--forgot:hover {
  color: #22d3ee !important;
}

/* Form Error Message Enhancement */
.form__error {
  background: #fef2f2 !important;
  border: 1px solid #fecaca !important;
  border-radius: 0.5rem !important;
  padding: 12px 16px !important;
  color: #dc2626 !important;
  font-size: 0.9rem !important;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .modal__wrapper {
    width: 95% !important;
    max-height: 95vh !important;
    border-radius: 1rem !important;
  }

  .modal__info {
    padding: 24px !important;
  }

  .modal__form {
    padding: 24px !important;
  }

  .modal__title {
    font-size: 1.5rem !important;
  }

  .form__title {
    font-size: 1.5rem !important;
  }

  .form__submit {
    padding: 14px !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .modal__wrapper {
    animation: none !important;
  }

  .modal__switch:hover {
    transform: none !important;
  }

  .form__submit:hover {
    transform: none !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   MODAL DESIGN FIX - Stronger specificity overrides
═══════════════════════════════════════════════════════════ */

/* Override the submit button color */
.modal .form__submit,
.modal .form__submit.btn--green-bg,
.modal__form .form__submit,
.modal--signuplogin .form__submit,
input.form__submit.btn.btn--green-bg {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 24px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35) !important;
  transition: all 0.3s ease !important;
  color: #ffffff !important;
}

.modal .form__submit:hover,
.modal .form__submit.btn--green-bg:hover,
.modal__form .form__submit:hover,
.modal--signuplogin .form__submit:hover,
input.form__submit.btn.btn--green-bg:hover {
  background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45) !important;
}

/* Form title gradient text */
.modal__form .form__title,
.modal--signuplogin .form__title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #0d4a63 0%, #22d3ee 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 28px !important;
}

/* Info panel gradient and orbs */
.modal--signuplogin .modal__info {
  background: linear-gradient(145deg, #062530 0%, #0d4a63 50%, #156080 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 40px !important;
}

.modal--signuplogin .modal__info::before {
  content: '' !important;
  position: absolute !important;
  top: -80px !important;
  right: -80px !important;
  width: 250px !important;
  height: 250px !important;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.25) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

.modal--signuplogin .modal__info::after {
  content: '' !important;
  position: absolute !important;
  bottom: -60px !important;
  left: -60px !important;
  width: 180px !important;
  height: 180px !important;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

/* Modal title styling */
.modal--signuplogin .modal__title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  position: relative !important;
  z-index: 2 !important;
  margin-bottom: 16px !important;
}

.modal--signuplogin .modal__descr {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  position: relative !important;
  z-index: 2 !important;
}

.modal--signuplogin .modal__descr span {
  color: #22d3ee !important;
  font-weight: 600 !important;
}

/* Enhanced list items */
.modal--signuplogin .modal__list {
  position: relative !important;
  z-index: 2 !important;
  margin: 24px 0 !important;
}

.modal--signuplogin .modal__list li {
  position: relative !important;
  padding-left: 28px !important;
  margin-bottom: 12px !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.modal--signuplogin .modal__list li::before {
  content: '✓' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #22d3ee !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

/* Switch button (Signup/Login toggle) */
.modal--signuplogin .modal__switch {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  padding: 12px 28px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  z-index: 2 !important;
}

.modal--signuplogin .modal__switch:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Form panel */
.modal--signuplogin .modal__form {
  background: #ffffff !important;
  padding: 40px !important;
}

/* Form inputs */
.modal--signuplogin .form__input,
.modal--signuplogin select.form__input {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: 1rem !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.modal--signuplogin .form__input:focus,
.modal--signuplogin select.form__input:focus {
  outline: none !important;
  border-color: #22d3ee !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15) !important;
}

/* Form labels */
.modal--signuplogin .form__label {
  display: block !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  margin-bottom: 8px !important;
}

/* Form rows */
.modal--signuplogin .form__row {
  margin-bottom: 20px !important;
}

/* Checkbox styling */
.modal--signuplogin .modal__checkbox {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 16px !important;
}

.modal--signuplogin .modal__checkbox input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: #0d4a63 !important;
  cursor: pointer !important;
}

.modal--signuplogin .modal__checkbox label {
  font-size: 0.9rem !important;
  color: #475569 !important;
  cursor: pointer !important;
}

/* Forgot password link */
.modal--signuplogin .modal__switch--forgot {
  background: none !important;
  border: none !important;
  color: #0d4a63 !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  padding: 0 !important;
  margin-bottom: 20px !important;
  cursor: pointer !important;
  display: inline-block !important;
}

.modal--signuplogin .modal__switch--forgot:hover {
  color: #22d3ee !important;
  text-decoration: underline !important;
}

/* Modal wrapper enhanced */
.modal--signuplogin .modal__wrapper {
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.15) !important;
  overflow: hidden !important;
  max-width: 900px !important;
  width: 95% !important;
}

/* Modal overlay */
.modal--signuplogin .modal__overlay {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* Hide the old border element */
.modal--signuplogin .form__row-border {
  display: none !important;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .modal--signuplogin .modal__info {
    padding: 28px 24px !important;
  }

  .modal--signuplogin .modal__form {
    padding: 28px 24px !important;
  }

  .modal--signuplogin .modal__title {
    font-size: 1.5rem !important;
  }

  .modal--signuplogin .form__title {
    font-size: 1.5rem !important;
  }

  .modal .form__submit,
  .modal--signuplogin .form__submit {
    padding: 14px 20px !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   MODAL CENTERING & LAYOUT FIX
═══════════════════════════════════════════════════════════ */

/* Center modal vertically and horizontally */
.modal--signuplogin {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 20px !important;
}

.modal--signuplogin.modal--active {
  display: flex !important;
}

/* Modal wrapper - centered, no extra space */
.modal--signuplogin .modal__wrapper {
  position: relative !important;
  margin: auto !important;
  max-width: 880px !important;
  width: 100% !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  border-radius: 20px !important;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Modal body - remove extra padding */
.modal--signuplogin .modal__body {
  padding: 0 !important;
  margin: 0 !important;
}

/* Modal content grid - two equal columns */
.modal--signuplogin .modal__content {
  display: none !important;
}

.modal--signuplogin .modal__content--visible {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  min-height: 480px !important;
}

/* Info panel - full height, centered content */
.modal--signuplogin .modal__info {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 48px 40px !important;
  background: linear-gradient(145deg, #062530 0%, #0d4a63 50%, #156080 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Form panel - full height, centered content */
.modal--signuplogin .modal__form {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 48px 40px !important;
  background: #ffffff !important;
}

/* Form container should not have extra margins */
.modal--signuplogin .form__container {
  margin: 0 !important;
  padding: 0 !important;
}

/* Overlay full screen */
.modal--signuplogin .modal__overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE - Stack vertically
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .modal--signuplogin {
    padding: 16px !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
  }

  .modal--signuplogin .modal__wrapper {
    max-height: none !important;
    margin: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px !important;
  }

  /* Stack columns vertically on mobile */
  .modal--signuplogin .modal__content--visible {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  /* Reorder: Form first, then info panel on mobile */
  .modal--signuplogin .modal__form {
    order: 1 !important;
    padding: 32px 24px !important;
  }

  .modal--signuplogin .modal__info {
    order: 2 !important;
    padding: 32px 24px !important;
  }

  .modal--signuplogin .modal__title {
    font-size: 1.35rem !important;
  }

  .modal--signuplogin .form__title {
    font-size: 1.5rem !important;
    margin-bottom: 24px !important;
  }

  .modal--signuplogin .form__row {
    margin-bottom: 16px !important;
  }

  .modal--signuplogin .form__input {
    padding: 12px 14px !important;
  }

  .modal .form__submit,
  .modal--signuplogin .form__submit {
    padding: 14px !important;
    font-size: 0.95rem !important;
  }

  .modal--signuplogin .modal__list {
    margin: 16px 0 !important;
  }

  .modal--signuplogin .modal__list li {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  .modal--signuplogin .modal__switch {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
  }

  .modal--signuplogin .modal__descr {
    font-size: 0.9rem !important;
    margin-bottom: 16px !important;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .modal--signuplogin .modal__wrapper {
    max-width: 720px !important;
  }

  .modal--signuplogin .modal__info,
  .modal--signuplogin .modal__form {
    padding: 36px 32px !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   MODAL FINAL FIX - Force content-fit height, centered
═══════════════════════════════════════════════════════════ */

/* Modal container - flex center */
.modal.modal--signuplogin {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9999 !important;
  display: none !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

.modal.modal--signuplogin.modal--active {
  display: flex !important;
}

/* Overlay - full screen */
.modal.modal--signuplogin > .modal__overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* Wrapper - fit content, no extra height */
.modal.modal--signuplogin > .modal__wrapper {
  position: relative !important;
  z-index: 1 !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  max-width: 860px !important;
  width: 100% !important;
  max-height: calc(100vh - 40px) !important;
  height: auto !important;
  min-height: auto !important;
  overflow: hidden !important;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.2) !important;
  margin: 0 !important;
}

/* Body - no padding, fit content */
.modal.modal--signuplogin .modal__body {
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  overflow-y: auto !important;
  max-height: calc(100vh - 40px) !important;
}

/* Content - grid layout, fit content */
.modal.modal--signuplogin .modal__content {
  display: none !important;
  height: auto !important;
}

.modal.modal--signuplogin .modal__content.modal__content--visible {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Info panel - fit content */
.modal.modal--signuplogin .modal__info {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 40px 36px !important;
  background: linear-gradient(145deg, #062530 0%, #0d4a63 50%, #156080 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 400px !important;
}

/* Decorative orbs */
.modal.modal--signuplogin .modal__info::before {
  content: '' !important;
  position: absolute !important;
  top: -60px !important;
  right: -60px !important;
  width: 200px !important;
  height: 200px !important;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

.modal.modal--signuplogin .modal__info::after {
  content: '' !important;
  position: absolute !important;
  bottom: -40px !important;
  left: -40px !important;
  width: 150px !important;
  height: 150px !important;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

/* Form panel - fit content */
.modal.modal--signuplogin .modal__form {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 40px 36px !important;
  background: #ffffff !important;
  min-height: 400px !important;
}

/* Form title with gradient */
.modal.modal--signuplogin .form__title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: #0d4a63 !important;
  margin-bottom: 24px !important;
}

/* Submit button - ORANGE */
.modal.modal--signuplogin .form__submit,
.modal.modal--signuplogin input.form__submit,
.modal.modal--signuplogin input.form__submit.btn,
.modal.modal--signuplogin input.form__submit.btn.btn--green-bg {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 24px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
}

.modal.modal--signuplogin .form__submit:hover,
.modal.modal--signuplogin input.form__submit:hover {
  background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5) !important;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE - Stack vertically
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .modal.modal--signuplogin {
    padding: 12px !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
  }

  .modal.modal--signuplogin > .modal__wrapper {
    max-width: 100% !important;
    border-radius: 16px !important;
    max-height: none !important;
    margin: auto 0 !important;
  }

  .modal.modal--signuplogin .modal__body {
    max-height: none !important;
  }

  .modal.modal--signuplogin .modal__content.modal__content--visible {
    grid-template-columns: 1fr !important;
  }

  .modal.modal--signuplogin .modal__form {
    order: 1 !important;
    padding: 28px 24px !important;
    min-height: auto !important;
  }

  .modal.modal--signuplogin .modal__info {
    order: 2 !important;
    padding: 28px 24px !important;
    min-height: auto !important;
  }

  .modal.modal--signuplogin .form__title {
    font-size: 1.5rem !important;
  }

  .modal.modal--signuplogin .modal__title {
    font-size: 1.35rem !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   PRICING ICONS - Modern SVG Styling
═══════════════════════════════════════════════════════════ */

/* Icon container - centered */
.pricing-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto 20px auto !important;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(13, 74, 99, 0.08) 100%) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(34, 211, 238, 0.2) !important;
  transition: all 0.3s ease !important;
}

/* SVG icon styling */
.pricing-icon svg {
  width: 32px !important;
  height: 32px !important;
  color: #0d4a63 !important;
  stroke: #0d4a63 !important;
  transition: all 0.3s ease !important;
}

/* Hover effect on card */
.pricing-card:hover .pricing-icon {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(13, 74, 99, 0.12) 100%) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.15) !important;
}

.pricing-card:hover .pricing-icon svg {
  color: #22d3ee !important;
  stroke: #22d3ee !important;
}

/* Popular card - special icon styling */
.pricing-card-popular .pricing-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.pricing-card-popular .pricing-icon svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.pricing-card-popular:hover .pricing-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%) !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1) !important;
}

.pricing-card-popular:hover .pricing-icon svg {
  color: #22d3ee !important;
  stroke: #22d3ee !important;
}

/* Different icon colors per plan */
.pricing-card:nth-child(1) .pricing-icon svg { stroke: #10b981 !important; } /* Free - green */
.pricing-card:nth-child(2) .pricing-icon svg { stroke: #f59e0b !important; } /* Starter - amber */
.pricing-card:nth-child(4) .pricing-icon svg { stroke: #6366f1 !important; } /* Business - indigo */
.pricing-card:nth-child(5) .pricing-icon svg { stroke: #ec4899 !important; } /* Enterprise - pink */

.pricing-card:nth-child(1) .pricing-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%) !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
}
.pricing-card:nth-child(2) .pricing-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%) !important;
  border-color: rgba(245, 158, 11, 0.2) !important;
}
.pricing-card:nth-child(4) .pricing-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%) !important;
  border-color: rgba(99, 102, 241, 0.2) !important;
}
.pricing-card:nth-child(5) .pricing-icon {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%) !important;
  border-color: rgba(236, 72, 153, 0.2) !important;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .pricing-icon {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 16px !important;
    border-radius: 14px !important;
  }

  .pricing-icon svg {
    width: 28px !important;
    height: 28px !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   HERO FLOATING PARTICLES - Antigravity-style animation
   Adds floating colorful dots across the hero section
═══════════════════════════════════════════════════════════ */

/* Particles container */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Individual particle */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

/* Particle sizes */
.hero-particle--sm { width: 4px; height: 4px; }
.hero-particle--md { width: 6px; height: 6px; }
.hero-particle--lg { width: 8px; height: 8px; }

/* Particle colors - cyan, orange accent, white */
.hero-particle--cyan { background: #22d3ee; box-shadow: 0 0 6px #22d3ee; }
.hero-particle--orange { background: #ff6b35; box-shadow: 0 0 6px #ff6b35; }
.hero-particle--white { background: rgba(255, 255, 255, 0.8); box-shadow: 0 0 4px rgba(255, 255, 255, 0.5); }
.hero-particle--teal { background: #14b8a6; box-shadow: 0 0 6px #14b8a6; }

/* Float animation - moves diagonally across screen */
@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  10% {
    opacity: 0.7;
    transform: scale(1);
  }
  90% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx, 100px), var(--ty, -100px)) scale(0.5);
  }
}

/* Individual particle positions and timing */
/* Row 1 - Top */
.hero-particle:nth-child(1) {
  left: 5%; top: 20%;
  --tx: 80px; --ty: -120px;
  animation-duration: 12s;
  animation-delay: 0s;
}
.hero-particle:nth-child(2) {
  left: 15%; top: 10%;
  --tx: 60px; --ty: -80px;
  animation-duration: 15s;
  animation-delay: 2s;
}
.hero-particle:nth-child(3) {
  left: 25%; top: 30%;
  --tx: 100px; --ty: -150px;
  animation-duration: 18s;
  animation-delay: 1s;
}
.hero-particle:nth-child(4) {
  left: 35%; top: 15%;
  --tx: 70px; --ty: -90px;
  animation-duration: 14s;
  animation-delay: 3s;
}
.hero-particle:nth-child(5) {
  left: 45%; top: 25%;
  --tx: 90px; --ty: -110px;
  animation-duration: 16s;
  animation-delay: 0.5s;
}

/* Row 2 - Middle-Top */
.hero-particle:nth-child(6) {
  left: 55%; top: 20%;
  --tx: 110px; --ty: -130px;
  animation-duration: 13s;
  animation-delay: 4s;
}
.hero-particle:nth-child(7) {
  left: 65%; top: 35%;
  --tx: 50px; --ty: -70px;
  animation-duration: 17s;
  animation-delay: 1.5s;
}
.hero-particle:nth-child(8) {
  left: 75%; top: 15%;
  --tx: 80px; --ty: -100px;
  animation-duration: 11s;
  animation-delay: 2.5s;
}
.hero-particle:nth-child(9) {
  left: 85%; top: 25%;
  --tx: 60px; --ty: -80px;
  animation-duration: 19s;
  animation-delay: 0s;
}
.hero-particle:nth-child(10) {
  left: 92%; top: 40%;
  --tx: 40px; --ty: -60px;
  animation-duration: 14s;
  animation-delay: 3.5s;
}

/* Row 3 - Middle */
.hero-particle:nth-child(11) {
  left: 8%; top: 50%;
  --tx: 100px; --ty: -140px;
  animation-duration: 16s;
  animation-delay: 1s;
}
.hero-particle:nth-child(12) {
  left: 20%; top: 60%;
  --tx: 70px; --ty: -90px;
  animation-duration: 13s;
  animation-delay: 4.5s;
}
.hero-particle:nth-child(13) {
  left: 30%; top: 45%;
  --tx: 90px; --ty: -120px;
  animation-duration: 18s;
  animation-delay: 2s;
}
.hero-particle:nth-child(14) {
  left: 42%; top: 55%;
  --tx: 60px; --ty: -80px;
  animation-duration: 12s;
  animation-delay: 0.5s;
}
.hero-particle:nth-child(15) {
  left: 58%; top: 50%;
  --tx: 80px; --ty: -100px;
  animation-duration: 15s;
  animation-delay: 3s;
}

/* Row 4 - Middle-Bottom */
.hero-particle:nth-child(16) {
  left: 68%; top: 60%;
  --tx: 50px; --ty: -70px;
  animation-duration: 17s;
  animation-delay: 1.5s;
}
.hero-particle:nth-child(17) {
  left: 78%; top: 55%;
  --tx: 110px; --ty: -130px;
  animation-duration: 11s;
  animation-delay: 4s;
}
.hero-particle:nth-child(18) {
  left: 88%; top: 65%;
  --tx: 70px; --ty: -90px;
  animation-duration: 14s;
  animation-delay: 2.5s;
}

/* Row 5 - Bottom */
.hero-particle:nth-child(19) {
  left: 12%; top: 75%;
  --tx: 90px; --ty: -110px;
  animation-duration: 16s;
  animation-delay: 0s;
}
.hero-particle:nth-child(20) {
  left: 28%; top: 80%;
  --tx: 60px; --ty: -80px;
  animation-duration: 13s;
  animation-delay: 3.5s;
}
.hero-particle:nth-child(21) {
  left: 48%; top: 70%;
  --tx: 100px; --ty: -120px;
  animation-duration: 18s;
  animation-delay: 1s;
}
.hero-particle:nth-child(22) {
  left: 62%; top: 85%;
  --tx: 50px; --ty: -70px;
  animation-duration: 12s;
  animation-delay: 4.5s;
}
.hero-particle:nth-child(23) {
  left: 82%; top: 78%;
  --tx: 80px; --ty: -100px;
  animation-duration: 15s;
  animation-delay: 2s;
}
.hero-particle:nth-child(24) {
  left: 95%; top: 70%;
  --tx: 30px; --ty: -50px;
  animation-duration: 19s;
  animation-delay: 0.5s;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-particle {
    animation: none;
    opacity: 0.3;
  }
}

/* Mobile - fewer particles, subtler */
@media (max-width: 767px) {
  .hero-particle {
    opacity: 0;
  }
  .hero-particle:nth-child(-n+12) {
    animation-name: particleFloat;
  }
  .hero-particle:nth-child(n+13) {
    display: none;
  }
  .hero-particle--sm { width: 3px; height: 3px; }
  .hero-particle--md { width: 4px; height: 4px; }
  .hero-particle--lg { width: 6px; height: 6px; }
}
/* ═══════════════════════════════════════════════════════════
   PRICING ICONS - Professional Fix
   Clean, minimal, properly sized icons
═══════════════════════════════════════════════════════════ */

/* Reset and proper container */
.pricing-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 52px !important;
  margin: 0 auto 16px auto !important;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(13, 74, 99, 0.08) !important;
  transition: all 0.3s ease !important;
}

/* SVG icon - FIXED SIZE */
.pricing-icon svg {
  width: 24px !important;
  height: 24px !important;
  stroke-width: 1.5 !important;
  color: #0d4a63 !important;
  stroke: #0d4a63 !important;
  fill: none !important;
  flex-shrink: 0 !important;
}

/* Card hover */
.pricing-card:hover .pricing-icon {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(13, 74, 99, 0.1) !important;
}

/* Popular card - dark background icon */
.pricing-card-popular .pricing-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.pricing-card-popular .pricing-icon svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.pricing-card-popular:hover .pricing-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* Mobile */
@media (max-width: 767px) {
  .pricing-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
  }

  .pricing-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   PRICING ICONS - FINAL OVERRIDE
   Forces proper sizing regardless of other rules
═══════════════════════════════════════════════════════════ */

.pricing-card .pricing-icon,
.pricing-card.pricing-card-popular .pricing-icon,
div.pricing-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  margin: 0 auto 16px auto !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(13, 74, 99, 0.08) !important;
  font-size: 0 !important; /* Kill font-size inheritance */
  line-height: 1 !important;
  transition: all 0.3s ease !important;
  transform: none !important;
}

.pricing-card .pricing-icon svg,
.pricing-card.pricing-card-popular .pricing-icon svg,
div.pricing-icon svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  stroke-width: 1.5px !important;
  color: #0d4a63 !important;
  stroke: #0d4a63 !important;
  fill: none !important;
  flex-shrink: 0 !important;
  font-size: 24px !important; /* For any size calculations */
}

/* Hover - subtle lift only */
.pricing-card:hover .pricing-icon {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(13, 74, 99, 0.1) !important;
}

/* Popular card styling */
.pricing-card.pricing-card-popular .pricing-icon,
.pricing-card-popular .pricing-icon {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.pricing-card.pricing-card-popular .pricing-icon svg,
.pricing-card-popular .pricing-icon svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* Mobile */
@media (max-width: 767px) {
  .pricing-card .pricing-icon,
  div.pricing-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
  }

  .pricing-card .pricing-icon svg,
  div.pricing-icon svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   PRICING ICONS - Small, Clean, Professional
═══════════════════════════════════════════════════════════ */

.pricing-card .pricing-icon,
.pricing-card-popular .pricing-icon,
div.pricing-icon {
  display: block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 auto 12px auto !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  transform: none !important;
}

.pricing-card .pricing-icon svg,
.pricing-card-popular .pricing-icon svg,
div.pricing-icon svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  stroke-width: 1.5px !important;
  color: #0d4a63 !important;
  stroke: #0d4a63 !important;
  fill: none !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.pricing-card:hover .pricing-icon {
  transform: none !important;
  box-shadow: none !important;
}

.pricing-card:hover .pricing-icon svg {
  color: #22d3ee !important;
  stroke: #22d3ee !important;
}

/* Popular card - white icon */
.pricing-card-popular .pricing-icon svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.pricing-card-popular:hover .pricing-icon svg {
  color: #22d3ee !important;
  stroke: #22d3ee !important;
}

/* Mobile */
@media (max-width: 767px) {
  .pricing-card .pricing-icon svg,
  div.pricing-icon svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   PRICING CARD - Alignment & Badge Fix
═══════════════════════════════════════════════════════════ */

/* Center all pricing card content */
.pricing-card {
  text-align: center !important;
}

.pricing-card .pricing-icon,
.pricing-card .pricing-name,
.pricing-card .pricing-desc,
.pricing-card .pricing-price,
.pricing-card .pricing-features,
.pricing-card .btn {
  text-align: center !important;
}

.pricing-name {
  text-align: center !important;
  width: 100% !important;
}

.pricing-desc {
  text-align: center !important;
  width: 100% !important;
}

/* Popular badge - fully visible */
.pricing-card-popular {
  overflow: visible !important;
}

.popular-badge {
  position: absolute !important;
  top: -12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%) !important;
  color: #ffffff !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  padding: 6px 16px !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
  z-index: 10 !important;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important;
}

/* Pricing features list - center */
.pricing-features {
  text-align: left !important;
  display: inline-block !important;
  margin: 0 auto !important;
}

.pricing-features li {
  text-align: left !important;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION - ENHANCED STYLING
═══════════════════════════════════════════════════════════ */

/* Restore glassmorphism and enhance cards */
.testimonials-section .testimonial-card {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  border-top-width: 3px !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Different colored accents per card */
.testimonials-slider .swiper-slide:nth-child(5n+1) .testimonial-card {
  border-top-color: #22d3ee !important; /* Cyan */
}
.testimonials-slider .swiper-slide:nth-child(5n+2) .testimonial-card {
  border-top-color: #ff6b35 !important; /* Orange */
}
.testimonials-slider .swiper-slide:nth-child(5n+3) .testimonial-card {
  border-top-color: #10b981 !important; /* Green */
}
.testimonials-slider .swiper-slide:nth-child(5n+4) .testimonial-card {
  border-top-color: #8b5cf6 !important; /* Purple */
}
.testimonials-slider .swiper-slide:nth-child(5n+5) .testimonial-card {
  border-top-color: #0d4a63 !important; /* Teal */
}

/* Enhanced hover */
.testimonials-section .testimonial-card:hover {
  transform: translateY(-10px) !important;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

/* More visible quote decoration */
.testimonials-section .testimonial-card::before {
  color: rgba(13, 74, 99, 0.1) !important;
  font-size: 6rem !important;
}

/* Prominent star ratings with glow */
.testimonials-section .testimonial-rating {
  font-size: 1.25rem !important;
  letter-spacing: 3px !important;
  text-shadow:
    0 2px 10px rgba(251, 191, 36, 0.4),
    0 0 20px rgba(251, 191, 36, 0.2) !important;
  margin-bottom: 20px !important;
}

/* Larger, more prominent avatars */
.testimonials-section .author-avatar {
  width: 56px !important;
  height: 56px !important;
  border: 3px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.15),
    0 0 0 4px rgba(34, 211, 238, 0.1) !important;
  transition: all 0.3s ease !important;
}

.testimonials-section .testimonial-card:hover .author-avatar {
  transform: scale(1.1) !important;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.2),
    0 0 0 5px rgba(34, 211, 238, 0.25) !important;
}

/* Author name styling */
.testimonials-section .author-info strong {
  font-size: 1rem !important;
  color: #0f172a !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO PARTICLES - ENHANCED (More Prominent)
═══════════════════════════════════════════════════════════ */

/* Larger particle sizes */
.hero-particle--sm { width: 6px !important; height: 6px !important; }
.hero-particle--md { width: 10px !important; height: 10px !important; }
.hero-particle--lg { width: 14px !important; height: 14px !important; }

/* Stronger glow effects */
.hero-particle--cyan {
  background: #22d3ee !important;
  box-shadow: 0 0 12px 4px rgba(34, 211, 238, 0.6) !important;
}
.hero-particle--orange {
  background: #ff6b35 !important;
  box-shadow: 0 0 12px 4px rgba(255, 107, 53, 0.6) !important;
}
.hero-particle--white {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.5) !important;
}
.hero-particle--teal {
  background: #14b8a6 !important;
  box-shadow: 0 0 12px 4px rgba(20, 184, 166, 0.6) !important;
}

/* Higher opacity animation */
@keyframes particleFloatEnhanced {
  0% {
    opacity: 0;
    transform: scale(0.5) translate(0, 0);
  }
  10% {
    opacity: 0.9;
    transform: scale(1) translate(0, 0);
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(0.5) translate(var(--tx), var(--ty));
  }
}

.hero-particle {
  animation-name: particleFloatEnhanced !important;
}

/* Faster animation durations for more dynamic feel */
.hero-particle:nth-child(1) { animation-duration: 8s !important; }
.hero-particle:nth-child(2) { animation-duration: 10s !important; }
.hero-particle:nth-child(3) { animation-duration: 9s !important; }
.hero-particle:nth-child(4) { animation-duration: 12s !important; }
.hero-particle:nth-child(5) { animation-duration: 11s !important; }
.hero-particle:nth-child(6) { animation-duration: 8s !important; }
.hero-particle:nth-child(7) { animation-duration: 14s !important; }
.hero-particle:nth-child(8) { animation-duration: 10s !important; }
.hero-particle:nth-child(9) { animation-duration: 9s !important; }
.hero-particle:nth-child(10) { animation-duration: 13s !important; }
.hero-particle:nth-child(11) { animation-duration: 11s !important; }
.hero-particle:nth-child(12) { animation-duration: 8s !important; }
.hero-particle:nth-child(13) { animation-duration: 12s !important; }
.hero-particle:nth-child(14) { animation-duration: 10s !important; }
.hero-particle:nth-child(15) { animation-duration: 14s !important; }
.hero-particle:nth-child(16) { animation-duration: 9s !important; }
.hero-particle:nth-child(17) { animation-duration: 11s !important; }
.hero-particle:nth-child(18) { animation-duration: 13s !important; }
.hero-particle:nth-child(19) { animation-duration: 8s !important; }
.hero-particle:nth-child(20) { animation-duration: 10s !important; }
.hero-particle:nth-child(21) { animation-duration: 12s !important; }
.hero-particle:nth-child(22) { animation-duration: 14s !important; }
.hero-particle:nth-child(23) { animation-duration: 9s !important; }
.hero-particle:nth-child(24) { animation-duration: 11s !important; }

/* Mobile - slightly smaller but still prominent */
@media (max-width: 767px) {
  .hero-particle--sm { width: 5px !important; height: 5px !important; }
  .hero-particle--md { width: 8px !important; height: 8px !important; }
  .hero-particle--lg { width: 11px !important; height: 11px !important; }
}

/* ═══════════════════════════════════════════════════════════
   FEATURE ICONS - UNIQUE GRADIENT COLORS
═══════════════════════════════════════════════════════════ */

/* Each feature card gets a unique gradient background */
.features-grid .feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%) !important; /* Cyan - AI Gallery */
}
.features-grid .feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #ff6b35 0%, #f97316 100%) !important; /* Orange - Client Portal */
}
.features-grid .feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%) !important; /* Teal - Album Designer */
}
.features-grid .feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important; /* Purple - Cloud Storage */
}
.features-grid .feature-card:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%) !important; /* Pink - Client Management */
}
.features-grid .feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%) !important; /* Lime - Face Recognition */
}

/* Enhanced hover glow matching each icon color */
.features-grid .feature-card:nth-child(1):hover .feature-icon {
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.4), 0 0 20px rgba(34, 211, 238, 0.3) !important;
}
.features-grid .feature-card:nth-child(2):hover .feature-icon {
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.3) !important;
}
.features-grid .feature-card:nth-child(3):hover .feature-icon {
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.4), 0 0 20px rgba(20, 184, 166, 0.3) !important;
}
.features-grid .feature-card:nth-child(4):hover .feature-icon {
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.3) !important;
}
.features-grid .feature-card:nth-child(5):hover .feature-icon {
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.4), 0 0 20px rgba(236, 72, 153, 0.3) !important;
}
.features-grid .feature-card:nth-child(6):hover .feature-icon {
  box-shadow: 0 12px 30px rgba(132, 204, 22, 0.4), 0 0 20px rgba(132, 204, 22, 0.3) !important;
}

/* ═══════════════════════════════════════════════════════════
   FRANCHISE SECTION
═══════════════════════════════════════════════════════════ */
.franchise-section {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-secondary) 100%);
}

.franchise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}
@media (min-width: 992px) { 
  .franchise-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: var(--space-16);
    align-items: start;
  } 
}

.franchise-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.franchise-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.franchise-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.franchise-benefits {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.franchise-benefits-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.franchise-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.franchise-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 1rem;
  color: var(--text-secondary);
}

.franchise-list-item svg {
  flex-shrink: 0;
  color: var(--green);
}

.franchise-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.franchise-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.franchise-contact-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

.franchise-form-wrapper {
  position: relative;
}

.franchise-form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.franchise-form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.franchise-form-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.franchise-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.franchise-form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.franchise-form-label .required {
  color: var(--accent);
  margin-left: 2px;
}

.franchise-form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--surface);
  color: var(--text-primary);
}

.franchise-form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 74, 99, 0.1);
}

.franchise-form-input::placeholder {
  color: var(--text-muted);
}

.franchise-form-input select {
  cursor: pointer;
}

.franchise-form-error {
  padding: var(--space-3) var(--space-4);
  background: #fee2e2;
  color: #dc2626;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  border: 1px solid #fecaca;
}

.franchise-form-success {
  padding: var(--space-3) var(--space-4);
  background: #dcfce7;
  color: #16a34a;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  border: 1px solid #bbf7d0;
}

.franchise-form-submit {
  margin-top: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
}

.franchise-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  animation: spin 1s linear infinite;
}

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

@media (max-width: 991px) {
  .franchise-form-card {
    position: relative;
    top: 0;
  }
}
