/* LANDING BUNDLE - Generated by build-css-bundles.js */

/* ========== landing.css ========== */
/* ============================================
   RUPIYA - LANDING PAGE STYLES
   Professional, Modern, Mobile-First Design
   ============================================ */

.landing-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
.landing-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
  animation: backgroundPulse 15s ease-in-out infinite;
  pointer-events: none;
}

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

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #fff, transparent);
  border-radius: 50%;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #fff, transparent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #fff, transparent);
  border-radius: 50%;
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(-60px) rotate(-5deg);
  }
  75% {
    transform: translateY(-30px) rotate(3deg);
  }
}

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

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.landing-logo img {
  height: 40px;
  width: auto;
}

.landing-logo .brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.landing-nav.scrolled .landing-logo .brand-name {
  color: var(--primary-blue);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.landing-nav.scrolled .logo-text {
  color: var(--primary-blue);
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav-signin {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-nav-signin:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.landing-nav.scrolled .btn-nav-signin {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.landing-nav.scrolled .btn-nav-signin:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.nav-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

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

.landing-nav.scrolled .nav-link {
  color: var(--text-primary);
}

.landing-nav.scrolled .nav-link::after {
  background: var(--primary-blue);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.landing-nav.scrolled .mobile-menu-toggle {
  color: var(--primary-blue);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-link {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--primary-blue);
}

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

.hero-section {
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out, pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #a8edea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  background-size: 200% 200%;
}

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

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  justify-content: center;
}

.hero-cta-row.full-width {
  width: 100%;
}

.hero-cta-row .btn,
.hero-cta-row button {
  flex: 1;
  min-width: 0;
}

/* Hero Install Section - Removed, buttons now in hero-cta */

.btn-hero-primary,
.btn-hero-secondary,
.btn-hero-light,
.btn-hero-outline,
.btn-hero-install {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.btn-hero-install.full-width,
.btn-hero-secondary.full-width {
  width: 100%;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-hero-light {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

.btn-hero-install {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.btn-hero-install:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

/* Demo Button - Prominent CTA */
.btn-hero-demo {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
  animation: demoPulse 2s ease-in-out infinite;
}

.btn-hero-demo:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(245, 87, 108, 0.6);
}

@keyframes demoPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.7);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.7);
  }
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
}

.trust-item svg {
  flex-shrink: 0;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 4rem auto 0;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

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

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-value {
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
  padding: 6rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

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

.feature-card:hover::after {
  width: 500px;
  height: 500px;
}

.feature-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(118, 75, 162, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.step-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.step-card:hover .step-number {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
}

.step-content {
  text-align: center;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), #764ba2);
  position: relative;
  flex-shrink: 0;
}

.step-connector::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
  padding: 6rem 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #764ba2 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 500;
}

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

.landing-footer {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2a4a 100%);
  color: var(--white);
  border-top: 2px solid var(--primary-blue);
  margin-top: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-blue);
}

.footer-section h4::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary-blue) 0%, #00CED1 100%);
  border-radius: 2px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section li {
  margin: 0;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 4px;
}

.footer-section a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer-section a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.5;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.footer-social a:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(74, 144, 226, 0.3);
}

/* Mobile Footer Enhancements */
@media (max-width: 768px) {
  .landing-footer {
    padding: 3rem 1rem 1.5rem;
    margin-top: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-section h4 {
    font-size: 1rem;
    padding-bottom: 0.5rem;
  }

  .footer-section ul {
    gap: 0.5rem;
  }

  .footer-section a {
    font-size: 0.875rem;
    padding: 0.375rem 0;
  }

  .footer-bottom {
    gap: 0.75rem;
    padding-top: 1.5rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .footer-disclaimer {
    font-size: 0.75rem;
  }

  .footer-social {
    gap: 0.75rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .landing-footer {
    padding: 2rem 0.75rem 1rem;
    margin-top: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer-section h4 {
    font-size: 0.9rem;
    padding-bottom: 0.375rem;
    margin-bottom: 0.25rem;
  }

  .footer-section h4::before {
    width: 3px;
    height: 16px;
  }

  .footer-section ul {
    gap: 0.375rem;
  }

  .footer-section li {
    margin: 0;
  }

  .footer-section a {
    font-size: 0.8rem;
    padding: 0.25rem 0;
  }

  .footer-section a::before {
    display: none;
  }

  .footer-bottom {
    gap: 0.5rem;
    padding-top: 1rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .footer-disclaimer {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .footer-social {
    gap: 0.5rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-width: 1px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   PWA INSTALL BANNER
   ============================================ */

.pwa-install-banner {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-blue);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
  animation: slideDown 0.5s ease-out, pulse 2s ease-in-out infinite;
}

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

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.pwa-banner-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: bounce 2s ease-in-out infinite;
}

.pwa-banner-text {
  flex: 1;
  color: var(--text-primary);
}

.pwa-banner-text strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.pwa-banner-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.btn-install {
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
  flex-shrink: 0;
}

.btn-install:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.pwa-banner-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--danger-red);
  color: white;
  border: 2px solid white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pwa-banner-close:hover {
  transform: scale(1.1);
  background: #d32f2f;
}

/* PWA Install Modal */
.pwa-install-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pwa-install-modal-content {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.install-instructions h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.install-instructions ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-primary);
}

.install-instructions li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* PWA Install Modal */
.pwa-install-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pwa-install-modal-content {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.install-instructions h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.install-instructions p {
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.install-instructions ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-primary);
}

.install-instructions li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.install-instructions strong {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .pwa-install-banner {
    padding: 1rem;
  }

  .pwa-banner-content {
    flex-wrap: wrap;
  }

  .pwa-banner-icon {
    font-size: 2.5rem;
  }

  .pwa-banner-text strong {
    font-size: 1rem;
  }

  .pwa-banner-text p {
    font-size: 0.8125rem;
  }

  .btn-install {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .pwa-banner-close {
    top: 0.5rem;
    right: 0.5rem;
  }
  
  .pwa-install-modal-content {
    padding: 1.5rem;
  }
  
  .install-instructions h3 {
    font-size: 1.25rem;
  }
  
  .install-instructions ol {
    margin-left: 1rem;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Features compact - 3 per row on tablet */
  .features-grid.compact {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .landing-nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Center logo on mobile and hide text */
  .nav-content {
    justify-content: center;
    position: relative;
  }
  
  .landing-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .logo-text {
    display: none;
  }
  
  .mobile-menu-toggle {
    position: absolute;
    right: 0;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero-cta-row {
    flex-direction: row;
    gap: 0.5rem;
  }
  
  .hero-cta-row.full-width .btn,
  .hero-cta-row.full-width button {
    width: 100%;
  }
  
  .hero-cta .btn,
  .hero-cta button {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    justify-content: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-hero-light,
  .btn-hero-outline {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  
  .trust-indicators {
    gap: 1rem;
  }
  
  .trust-item {
    font-size: 0.8125rem;
  }
  
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-icon {
    font-size: 2rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .step-connector {
    display: none;
  }
  
  /* Benefits grid - 2 cards per row on mobile */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .benefit-card {
    padding: 1.5rem 1rem;
  }
  
  .benefit-icon {
    font-size: 2.5rem;
  }
  
  .benefit-title {
    font-size: 1.125rem;
  }
  
  .benefit-description {
    font-size: 0.875rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
  
  /* Hero CTA buttons - smaller for very small screens */
  .hero-cta {
    gap: 0.5rem;
    padding: 0 0.75rem;
  }
  
  .hero-cta-row {
    gap: 0.5rem;
  }
  
  .hero-cta .btn,
  .hero-cta button {
    padding: 0.75rem 0.75rem;
    font-size: 0.8125rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-hero-light,
  .btn-hero-outline {
    padding: 0.75rem 0.75rem;
    font-size: 0.8125rem;
  }
  
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .stat-card {
    padding: 1rem 0.75rem;
  }
  
  .stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  /* Benefits grid - keep 2 cards per row on small mobile */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .benefit-card {
    padding: 1.25rem 0.75rem;
  }
  
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .benefit-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .benefit-description {
    font-size: 0.8125rem;
  }
}


/* ============================================
   COMPACT FEATURE CARDS (2 per row on mobile)
   ============================================ */

.features-grid.compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.feature-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.feature-icon-sm {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.feature-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   APP PREVIEW SECTION
   ============================================ */

.app-preview-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.preview-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.preview-feature {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.preview-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preview-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.preview-feature h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.preview-feature p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   COMPACT STEPS
   ============================================ */

.steps-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-compact {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.step-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 0.75rem;
}

.step-compact h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.step-compact p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 0;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: 700;
}

/* ============================================
   COMPACT BENEFITS
   ============================================ */

.benefits-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-compact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.benefit-compact:hover {
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-emoji {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.benefit-compact h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.125rem 0;
}

.benefit-compact p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION - MARQUEE
   ============================================ */

.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #764ba2 100%);
  overflow: hidden;
}

.testimonials-section .section-header {
  color: white;
}

.testimonials-section .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.testimonials-section .section-title {
  color: white;
}

.testimonials-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-marquee {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-card > p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-style: italic;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ============================================
   MOBILE RESPONSIVE - COMPACT LAYOUTS
   ============================================ */

@media (max-width: 768px) {
  /* Features - 2 per row */
  .features-grid.compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .feature-card-compact {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0.75rem;
    gap: 0.5rem;
  }
  
  .feature-icon-sm {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  
  .feature-content h3 {
    font-size: 0.875rem;
  }
  
  .feature-content p {
    font-size: 0.75rem;
  }
  
  /* Preview features - 2 per row */
  .preview-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .preview-feature {
    padding: 1rem 0.75rem;
  }
  
  .preview-icon {
    font-size: 1.5rem;
  }
  
  .preview-feature h4 {
    font-size: 0.8125rem;
  }
  
  .preview-feature p {
    font-size: 0.75rem;
  }
  
  /* Steps - 3 cards in a row on tablet, stack on mobile */
  .steps-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .step-compact {
    padding: 1.25rem 1rem;
  }
  
  .step-num {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .step-compact h4 {
    font-size: 0.875rem;
  }
  
  .step-compact p {
    font-size: 0.75rem;
  }
  
  .step-arrow {
    display: none;
  }
  
  /* Benefits - 3 per row on tablet */
  .benefits-grid-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .benefit-compact {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0.75rem;
    gap: 0.5rem;
  }
  
  .benefit-emoji {
    font-size: 1.5rem;
  }
  
  .benefit-compact h4 {
    font-size: 0.8125rem;
  }
  
  .benefit-compact p {
    font-size: 0.75rem;
  }
  
  /* Testimonials - Marquee on mobile */
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.25rem;
  }
  
  .testimonial-card > p {
    font-size: 0.875rem;
    min-height: 64px;
  }
  
  .testimonials-track {
    gap: 1rem;
    animation-duration: 30s;
  }
  
  /* Stats - already 2 per row, make more compact */
  .stat-card {
    padding: 1rem 0.5rem;
  }
  
  .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  /* Even more compact on very small screens */
  .features-grid.compact {
    gap: 0.5rem;
  }
  
  .feature-card-compact {
    padding: 0.75rem 0.5rem;
  }
  
  .feature-icon-sm {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  
  .feature-content h3 {
    font-size: 0.8125rem;
  }
  
  .feature-content p {
    font-size: 0.6875rem;
    line-height: 1.3;
  }
  
  /* Steps - 3 per row even on small mobile */
  .steps-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .step-compact {
    padding: 1rem 0.5rem;
  }
  
  .step-num {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
  
  .step-compact h4 {
    font-size: 0.75rem;
  }
  
  .step-compact p {
    font-size: 0.65rem;
  }
  
  /* Benefits - 3 per row on small mobile */
  .benefits-grid-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .benefit-compact {
    padding: 0.75rem 0.5rem;
  }
  
  .benefit-emoji {
    font-size: 1.25rem;
  }
  
  .benefit-compact h4 {
    font-size: 0.7rem;
  }
  
  .benefit-compact p {
    font-size: 0.6rem;
  }
  
  .preview-features {
    gap: 0.5rem;
  }
  
  .preview-feature {
    padding: 0.75rem 0.5rem;
  }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

[data-theme="dark"] .feature-card-compact {
  background: #1e1e1e;
  border-color: #3d3d3d;
}

[data-theme="dark"] .preview-feature,
[data-theme="dark"] .step-compact,
[data-theme="dark"] .testimonial-card {
  background: #1e1e1e;
}

[data-theme="dark"] .benefit-compact {
  background: #2d2d2d;
}

[data-theme="dark"] .benefit-compact:hover {
  background: #1e1e1e;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
  .landing-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .footer-section a {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .footer-section li {
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    gap: 0.75rem;
  }

  .footer-copyright,
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .landing-footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-section {
    padding: 0;
  }

  .footer-section h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section li {
    margin-bottom: 0.4rem;
  }

  .footer-section a {
    font-size: 0.8rem;
    margin-bottom: 0;
    display: inline;
    word-break: break-word;
  }

  .footer-bottom {
    padding-top: 1rem;
    gap: 0.5rem;
    flex-direction: column;
  }

  .footer-copyright {
    font-size: 0.75rem;
    line-height: 1.4;
    word-wrap: break-word;
  }

  .footer-disclaimer {
    font-size: 0.7rem;
    line-height: 1.4;
    word-wrap: break-word;
  }
}

@media (max-width: 320px) {
  .landing-footer {
    padding: 1.5rem 0 0.75rem;
  }

  .footer-content {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .footer-section h4 {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .footer-section a {
    font-size: 0.75rem;
  }

  .footer-bottom {
    padding-top: 0.75rem;
  }

  .footer-copyright,
  .footer-disclaimer {
    font-size: 0.65rem;
  }
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.security-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.security-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.security-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.security-card.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
}

.security-card.primary:hover {
  transform: scale(1.05) translateY(-10px);
}

.security-icon {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
}

.security-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: inherit;
}

.security-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-feature {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.security-card:not(.primary) .security-feature {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.security-guarantee {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.1);
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.guarantee-icon {
  font-size: 50px;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
}

.guarantee-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 15px;
  border: 2px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.security-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
}

.badge-icon {
  font-size: 30px;
}

.badge-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
}

.badge-text span {
  font-size: 14px;
  color: #667eea;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .security-section {
    padding: 60px 0;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .security-card {
    padding: 30px 20px;
  }
  
  .security-card.primary {
    transform: none;
  }
  
  .security-card.primary:hover {
    transform: translateY(-10px);
  }
  
  .security-icon {
    font-size: 50px;
    margin-bottom: 15px;
  }
  
  .security-card h3 {
    font-size: 20px;
  }
  
  .security-card p {
    font-size: 14px;
  }
  
  .security-guarantee {
    padding: 25px 20px;
  }
  
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .guarantee-icon {
    font-size: 40px;
  }
  
  .guarantee-text h4 {
    font-size: 20px;
  }
  
  .guarantee-text p {
    font-size: 14px;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 15px;
  }
  
  .security-badge {
    padding: 15px 20px;
  }
  
  .badge-icon {
    font-size: 25px;
  }
  
  .badge-text strong {
    font-size: 14px;
  }
  
  .badge-text span {
    font-size: 12px;
  }
}

/* ============================================
   TRUST HIGHLIGHT SECTION
   ============================================ */

.trust-highlight-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.trust-highlight-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.trust-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.trust-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.trust-card.featured {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(118, 75, 162, 0.05));
  border-color: var(--primary-blue);
  border-width: 3px;
}

.trust-card.featured::before {
  transform: scaleX(1);
  height: 6px;
}

.trust-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
  transition: all 0.4s ease;
}

.trust-card:hover .trust-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
}

.trust-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.trust-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.trust-card:hover .trust-badge {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.trust-badge svg {
  flex-shrink: 0;
}

.trust-proof {
  background: var(--white);
  border: 3px solid var(--primary-blue);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
  position: relative;
  overflow: hidden;
}

.trust-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), #764ba2, #00CED1);
  animation: gradientSlide 3s ease-in-out infinite;
  background-size: 200% 100%;
}

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

.trust-proof-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.trust-proof-icon {
  font-size: 4rem;
  flex-shrink: 0;
  animation: bounce 2s ease-in-out infinite;
}

.trust-proof-text h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.trust-proof-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.trust-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

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

.trust-stat-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.trust-stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trust-highlight-section {
    padding: 4rem 0;
  }

  .trust-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-card {
    padding: 2rem;
  }

  .trust-card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .trust-card h3 {
    font-size: 1.25rem;
  }

  .trust-card p {
    font-size: 0.9375rem;
  }

  .trust-proof {
    padding: 2rem;
  }

  .trust-proof-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trust-proof-icon {
    font-size: 3rem;
  }

  .trust-proof-text h4 {
    font-size: 1.5rem;
  }

  .trust-proof-text p {
    font-size: 1rem;
  }

  .trust-proof-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-stat-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .trust-highlight-section {
    padding: 3rem 0;
  }

  .trust-card {
    padding: 1.5rem;
  }

  .trust-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .trust-card h3 {
    font-size: 1.125rem;
  }

  .trust-card p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .trust-badge {
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
  }

  .trust-proof {
    padding: 1.5rem;
    border-width: 2px;
  }

  .trust-proof-icon {
    font-size: 2.5rem;
  }

  .trust-proof-text h4 {
    font-size: 1.25rem;
  }

  .trust-proof-text p {
    font-size: 0.9375rem;
  }

  .trust-stat-value {
    font-size: 2rem;
  }

  .trust-stat-label {
    font-size: 0.875rem;
  }
}


/* ============================================
   CUSTOMIZATION HIGHLIGHT SECTION
   ============================================ */

.customization-highlight {
  margin-top: 4rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(155, 89, 182, 0.1));
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  animation: slideUp 0.6s ease-out;
}

.customization-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.customization-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: rotate 3s linear infinite;
}

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

.customization-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.customization-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.customization-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.custom-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.custom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #4A90E2, #9B59B6);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.btn-customization {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #4A90E2, #9B59B6);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-customization:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(74, 144, 226, 0.3);
}

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

/* Responsive - Customization Section */
@media (max-width: 768px) {
  .customization-highlight {
    margin-top: 3rem;
    padding: 1.5rem;
  }

  .customization-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .customization-icon {
    font-size: 2.5rem;
    text-align: center;
    width: 100%;
  }

  .customization-text h3 {
    font-size: 1.25rem;
  }

  .customization-text p {
    font-size: 0.95rem;
  }

  .customization-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .custom-feature {
    padding: 0.6rem;
    font-size: 0.9rem;
  }

  .btn-customization {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .customization-highlight {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 0.75rem;
  }

  .customization-icon {
    font-size: 2rem;
  }

  .customization-text h3 {
    font-size: 1.1rem;
  }

  .customization-text p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .customization-features {
    gap: 0.5rem;
  }

  .custom-feature {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .custom-icon {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .btn-customization {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}

/* Animation for slide up */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================
   NEW FEATURES HIGHLIGHT SECTION
   ============================================ */

.new-features-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.new-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.new-feature-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.new-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.new-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

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

.new-feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.new-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.new-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.new-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.new-feature-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

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

.btn-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), #764ba2);
  color: var(--white);
  border: none;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-feature-link:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

/* Dark Mode */
[data-theme="dark"] .new-feature-card {
  background: #1e1e1e;
  border-color: #3d3d3d;
}

[data-theme="dark"] .new-features-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .new-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .new-feature-card {
    padding: 1.5rem;
  }

  .new-feature-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .new-features-section {
    padding: 2rem 0;
  }

  .new-feature-card {
    padding: 1rem;
  }

  .new-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .new-feature-card h3 {
    font-size: 1.1rem;
  }

  .new-feature-card p {
    font-size: 0.9rem;
  }

  .highlight-item {
    font-size: 0.85rem;
  }
}


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

/* Fade in from bottom */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Fade in from left */
.scroll-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.scroll-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.scroll-scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animations for lists */
.scroll-stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */

.testimonials-section {
  padding: var(--spacing-5xl) var(--spacing-xl);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.testimonials-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.testimonials-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
}

.testimonials-track {
  display: flex;
  gap: var(--spacing-xl);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.testimonial-content {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 80px;
  color: var(--primary-blue);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
}

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

.testimonial-author-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

.testimonial-author-role {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: var(--warning);
  font-size: 20px;
}

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

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-indicators {
  display: flex;
  gap: var(--spacing-sm);
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicator.active {
  background: var(--primary-blue);
  width: 32px;
  border-radius: var(--border-radius-full);
}

/* ============================================
   TRUST BADGES & CERTIFICATIONS
   ============================================ */

.trust-section {
  padding: var(--spacing-4xl) var(--spacing-xl);
  background: var(--white);
  text-align: center;
}

.trust-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-xl);
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover {
  transform: translateY(-8px);
}

.trust-badge-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  border-radius: var(--border-radius-lg);
  color: var(--white);
  font-size: 40px;
  box-shadow: var(--shadow-md);
}

.trust-badge-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.trust-badge-value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

/* Security Badges */
.security-badges {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--bg-secondary);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
}

.security-badge-icon {
  font-size: 20px;
  color: var(--success);
}

/* ============================================
   INTERACTIVE DEMO PREVIEW
   ============================================ */

.demo-section {
  padding: var(--spacing-5xl) var(--spacing-xl);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: demoGlow 8s ease-in-out infinite;
}

@keyframes demoGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20%, 20%); }
}

.demo-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.demo-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.demo-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

.demo-subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.demo-preview {
  background: var(--white);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.demo-preview-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--border-color);
}

.demo-preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-preview-dot.red { background: #FF5F56; }
.demo-preview-dot.yellow { background: #FFBD2E; }
.demo-preview-dot.green { background: #27C93F; }

.demo-preview-content {
  position: relative;
  min-height: 400px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.demo-screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-preview:hover .demo-screenshot {
  transform: scale(1.02);
}

.demo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-3xl);
}

.demo-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.demo-feature-icon {
  font-size: 32px;
  margin-bottom: var(--spacing-md);
}

.demo-feature-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
}

.demo-feature-description {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  line-height: var(--line-height-relaxed);
}

/* ============================================
   VIDEO WALKTHROUGH
   ============================================ */

.video-section {
  padding: var(--spacing-5xl) var(--spacing-xl);
  background: var(--bg-secondary);
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.video-header {
  margin-bottom: var(--spacing-3xl);
}

.video-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.video-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-2xl);
  background: var(--black);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.video-play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 24px solid var(--primary-blue);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .testimonials-section,
  .trust-section,
  .demo-section,
  .video-section {
    padding: var(--spacing-3xl) var(--spacing-md);
  }

  .testimonials-title,
  .demo-title,
  .video-title {
    font-size: var(--font-size-2xl);
  }

  .testimonial-card {
    padding: var(--spacing-lg);
  }

  .trust-badges {
    gap: var(--spacing-xl);
  }

  .demo-features {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .scroll-fade-in,
  .scroll-fade-left,
  .scroll-fade-right,
  .scroll-scale-in,
  .scroll-stagger-item,
  .testimonials-track,
  .demo-screenshot {
    transition: none;
    animation: none;
  }

  .floating-shapes,
  .demo-section::before {
    animation: none;
  }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

[data-theme="dark"] .testimonials-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

[data-theme="dark"] .testimonial-card {
  background: var(--gray-800);
}

[data-theme="dark"] .trust-section {
  background: var(--gray-900);
}

[data-theme="dark"] .video-section {
  background: var(--gray-800);
}

[data-theme="dark"] .demo-preview {
  background: var(--gray-800);
}


/* ========== mobile-enhancements.css ========== */
/* ============================================
   RUPIYA - MOBILE ENHANCEMENTS
   Optimized styles for mobile devices
   ============================================ */

/* ============================================
   MOBILE-FIRST BASE IMPROVEMENTS
   ============================================ */

/* Better touch targets */
@media (max-width: 768px) {
  /* Minimum touch target size (44x44px recommended by Apple) */
  .btn,
  .nav-item,
  .form-control,
  .form-select,
  .dropdown-item,
  .transaction-item,
  .btn-icon {
    min-height: 44px;
  }
  
  /* Improved spacing for touch */
  .nav-item {
    padding: 14px 16px;
  }
  
  /* Better form inputs on mobile */
  .form-control,
  .form-select {
    font-size: 16px; /* Prevents iOS zoom on focus */
    padding: 14px 16px;
  }
  
  /* Larger checkboxes and radios */
  .form-check-input {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   IMPROVED MOBILE NAVIGATION
   ============================================ */

@media (max-width: 768px) {
  /* Sidebar improvements */
  .sidebar {
    width: 85%;
    max-width: 320px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  }
  
  .sidebar.open {
    animation: slideInLeft 0.3s ease-out;
  }
  
  /* Mobile header sticky */
  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 10001;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
  }
  
  [data-theme="dark"] .mobile-header {
    background: rgba(30, 30, 30, 0.95);
  }
  
  /* Bottom navigation option */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 10px;
    transition: color 0.2s ease;
  }
  
  .bottom-nav-item.active {
    color: var(--primary-blue);
  }
  
  .bottom-nav-item .nav-icon {
    font-size: 20px;
  }
  
  /* Add padding to main content when bottom nav is present */
  .has-bottom-nav .main-content {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
}

/* ============================================
   MOBILE CARDS & GRIDS
   ============================================ */

@media (max-width: 768px) {
  /* Full-width cards on mobile */
  .card,
  .kpi-card,
  .chart-card,
  .transactions-card {
    border-radius: 12px;
    margin-left: -4px;
    margin-right: -4px;
    width: calc(100% + 8px);
  }
  
  /* Horizontal scroll for KPI cards */
  .kpi-grid-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .kpi-grid-scroll::-webkit-scrollbar {
    display: none;
  }
  
  .kpi-grid-scroll .kpi-card {
    flex: 0 0 auto;
    width: 160px;
    scroll-snap-align: start;
    margin: 0;
  }
  
  /* Compact transaction list */
  .transaction-item-compact {
    padding: 12px;
    gap: 12px;
  }
  
  .transaction-item-compact .transaction-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .transaction-item-compact .transaction-title {
    font-size: 14px;
  }
  
  .transaction-item-compact .transaction-meta {
    font-size: 11px;
  }
  
  .transaction-item-compact .transaction-amount {
    font-size: 14px;
  }
}

/* ============================================
   MOBILE FORMS
   ============================================ */

@media (max-width: 768px) {
  /* Stack form grid on mobile */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Full-width form actions */
  .form-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Floating labels for mobile */
  .form-floating {
    position: relative;
  }
  
  .form-floating .form-control {
    padding-top: 24px;
    padding-bottom: 8px;
  }
  
  .form-floating .form-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    pointer-events: none;
    color: var(--text-secondary);
    margin: 0;
  }
  
  .form-floating .form-control:focus ~ .form-label,
  .form-floating .form-control:not(:placeholder-shown) ~ .form-label {
    top: 12px;
    font-size: 11px;
    color: var(--primary-blue);
  }
}

/* ============================================
   MOBILE MODALS
   ============================================ */

@media (max-width: 768px) {
  /* Full-screen modals on mobile */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  
  .modal-container {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    margin: 0;
  }
  
  .modal-container.modal-sm {
    max-width: 100%;
  }
  
  /* Bottom sheet style modal */
  .modal-bottom-sheet .modal-container {
    animation: slideInUp 0.3s ease-out;
  }
  
  /* Modal drag handle */
  .modal-drag-handle {
    width: 40px;
    height: 4px;
    background: var(--medium-gray);
    border-radius: 2px;
    margin: 8px auto 16px;
  }
  
  /* Compact modal header */
  .modal-header {
    padding: 16px;
  }
  
  .modal-body {
    padding: 16px;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
  }
  
  .modal-footer {
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* ============================================
   MOBILE TABLES
   ============================================ */

@media (max-width: 768px) {
  /* Responsive table wrapper */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -12px;
    padding: 0 12px;
  }
  
  /* Card-style table rows on mobile */
  .table-cards tbody tr {
    display: block;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 12px;
  }
  
  .table-cards tbody td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
  }
  
  .table-cards tbody td:last-child {
    border-bottom: none;
  }
  
  .table-cards tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 12px;
  }
  
  .table-cards thead {
    display: none;
  }
}

/* ============================================
   MOBILE CHARTS
   ============================================ */

@media (max-width: 768px) {
  .chart-container {
    height: 220px;
  }
  
  /* Horizontal scroll for chart filters */
  .chart-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  
  .chart-filters::-webkit-scrollbar {
    display: none;
  }
  
  .chart-filter {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ============================================
   MOBILE EMPTY STATES
   ============================================ */

@media (max-width: 768px) {
  .empty-state {
    padding: 32px 16px;
  }
  
  .empty-state-icon {
    font-size: 48px;
  }
  
  .empty-state-title {
    font-size: 18px;
  }
  
  .empty-state-text {
    font-size: 14px;
  }
}

/* ============================================
   MOBILE TYPOGRAPHY
   ============================================ */

@media (max-width: 768px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }
  h4 { font-size: 16px; }
  
  .page-title {
    font-size: 22px;
  }
  
  .page-subtitle {
    font-size: 13px;
  }
  
  /* Truncate long text */
  .text-truncate-mobile {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}

/* ============================================
   MOBILE SPACING
   ============================================ */

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  
  .main-content {
    padding: 12px;
  }
  
  /* Compact sections */
  .section-compact {
    margin-bottom: 16px;
  }
  
  /* Reduced gaps */
  .gap-mobile-sm { gap: 8px; }
  .gap-mobile-md { gap: 12px; }
  .gap-mobile-lg { gap: 16px; }
}

/* ============================================
   MOBILE SAFE AREAS (Notch support)
   ============================================ */

@supports (padding: env(safe-area-inset-top)) {
  .mobile-header {
    padding-top: env(safe-area-inset-top);
  }
  
  .sidebar {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
  
  .modal-footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* ============================================
   MOBILE PULL TO REFRESH
   ============================================ */

.ptr-element {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.ptr-element.visible {
  transform: translateY(0);
}

.ptr-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--light-gray);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ============================================
   MOBILE SWIPE ACTIONS
   ============================================ */

.swipe-container {
  position: relative;
  overflow: hidden;
}

.swipe-content {
  transition: transform 0.3s ease;
}

.swipe-actions {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
}

.swipe-actions-left {
  left: 0;
  transform: translateX(-100%);
}

.swipe-actions-right {
  right: 0;
  transform: translateX(100%);
}

.swipe-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: white;
  font-weight: 600;
}

.swipe-action-delete {
  background: var(--accent-red);
}

.swipe-action-edit {
  background: var(--primary-blue);
}

/* ============================================
   MOBILE DARK MODE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
  [data-theme="dark"] .mobile-header {
    background: rgba(30, 30, 30, 0.95);
    border-color: #333;
  }
  
  [data-theme="dark"] .bottom-nav {
    background: #1e1e1e;
    border-color: #333;
  }
  
  [data-theme="dark"] .card,
  [data-theme="dark"] .kpi-card,
  [data-theme="dark"] .transactions-card {
    background: #1e1e1e;
    border-color: #333;
  }
}

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

@media (max-width: 768px) and (orientation: landscape) {
  .mobile-header {
    padding: 8px 12px;
  }
  
  .kpi-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .modal-container {
    max-height: 85vh;
  }
  
  .chart-container {
    height: 180px;
  }
}

/* ============================================
   SMALL MOBILE (< 375px)
   ============================================ */

@media (max-width: 374px) {
  .container {
    padding: 0 8px;
  }
  
  .main-content {
    padding: 8px;
  }
  
  .kpi-card {
    padding: 10px;
  }
  
  .kpi-value {
    font-size: 18px;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .form-control,
  .form-select {
    padding: 12px;
  }
}


/* ============================================
   CRITICAL MOBILE FIXES - JANUARY 2026
   ============================================ */

/* ============================================
   PREVENT HORIZONTAL SCROLL
   ============================================ */

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

* {
  max-width: 100%;
  box-sizing: border-box;
}

/* ============================================
   TEXT OVERFLOW HANDLING
   ============================================ */

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Long URLs and emails */
a, p, span, li, td, label {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Input fields */
input, textarea, select {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ============================================
   MOBILE BUTTON IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
  /* All buttons minimum 44x44px */
  .btn {
    min-width: 44px;
    min-height: 44px;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  .btn-icon {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Full-width buttons on mobile */
  .btn-block {
    width: 100%;
    display: block;
  }
  
  /* Button groups */
  .btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .btn-group .btn {
    flex: 1;
    min-width: 100px;
  }
}

/* ============================================
   MOBILE LINK IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
  a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 4px;
  }
  
  /* Navigation links */
  .nav-link, .sidebar-link {
    min-height: 44px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

/* ============================================
   MOBILE INPUT IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="date"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px; /* Prevents iOS zoom */
    padding: 14px 16px;
    min-height: 44px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 100%;
  }
  
  /* Focus states */
  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
  }
  
  /* Checkboxes and radios */
  input[type="checkbox"],
  input[type="radio"] {
    min-width: 24px;
    min-height: 24px;
    cursor: pointer;
  }
  
  /* Label touch targets */
  label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    cursor: pointer;
  }
}

/* ============================================
   MOBILE DROPDOWN IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
  .dropdown-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 60vh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .dropdown-item {
    padding: 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ============================================
   MOBILE PAGINATION
   ============================================ */

@media (max-width: 768px) {
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
  }
  
  .pagination-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
  }
  
  .pagination-btn:hover:not(:disabled) {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
  }
  
  .pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
}

/* ============================================
   MOBILE TABS
   ============================================ */

@media (max-width: 768px) {
  .tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -12px;
    padding: 0 12px;
  }
  
  .tab-btn {
    flex: 1;
    min-width: 80px;
    padding: 12px 16px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .tab-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
  }
}

/* ============================================
   MOBILE ACCORDION
   ============================================ */

@media (max-width: 768px) {
  .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
  }
  
  .accordion-header {
    padding: 16px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
    user-select: none;
  }
  
  .accordion-header:hover {
    background: var(--bg-hover);
  }
  
  .accordion-content {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    display: none;
  }
  
  .accordion-item.open .accordion-content {
    display: block;
  }
}

/* ============================================
   MOBILE CARD IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
  .card {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 16px;
    margin-bottom: 12px;
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
  }
  
  .card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }
  
  .card-body {
    font-size: 14px;
  }
  
  .card-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
  }
}

/* ============================================
   MOBILE BADGE IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
  .badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
  }
  
  .badge-primary {
    background: var(--primary-blue);
    color: white;
  }
  
  .badge-success {
    background: var(--accent-green);
    color: white;
  }
  
  .badge-danger {
    background: var(--accent-red);
    color: white;
  }
}

/* ============================================
   MOBILE ALERT IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
  .alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  
  .alert-icon {
    flex-shrink: 0;
    font-size: 20px;
  }
  
  .alert-content {
    flex: 1;
  }
  
  .alert-close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    color: inherit;
  }
}

/* ============================================
   MOBILE TOOLTIP IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
  .tooltip {
    position: fixed;
    bottom: 20px;
    left: 12px;
    right: 12px;
    padding: 12px 16px;
    background: #333;
    color: white;
    border-radius: 8px;
    font-size: 13px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* ============================================
   MOBILE LOADING STATES
   ============================================ */

@media (max-width: 768px) {
  .loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 16px;
  }
  
  .spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  
  .spinner-lg {
    width: 48px;
    height: 48px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
}

/* ============================================
   MOBILE SKELETON LOADERS
   ============================================ */

@media (max-width: 768px) {
  .skeleton {
    background: linear-gradient(
      90deg,
      var(--light-gray) 25%,
      var(--bg-hover) 50%,
      var(--light-gray) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
  }
  
  @keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }
}

/* ============================================
   MOBILE GESTURE FEEDBACK
   ============================================ */

@media (max-width: 768px) {
  .active-state {
    background: var(--bg-hover);
    transform: scale(0.98);
  }
  
  .ripple {
    position: relative;
    overflow: hidden;
  }
  
  .ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.3);
    transform: translate(-50%, -50%);
    animation: ripple-animation 0.6s ease-out;
  }
  
  @keyframes ripple-animation {
    to {
      width: 300px;
      height: 300px;
      opacity: 0;
    }
  }
}

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

@media print {
  .mobile-header,
  .sidebar,
  .bottom-nav,
  .fab-container,
  .btn-icon {
    display: none !important;
  }
  
  .main-content {
    padding: 0;
  }
}

/* ============================================
   INVESTMENTS PAGE MOBILE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
  /* KPI Cards - 3 per row like goals page */
  .portfolio-summary {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 1rem;
    padding: 12px;
  }
  
  .summary-card {
    padding: 10px 8px !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 4px !important;
    min-height: auto !important;
    border-radius: 10px;
    background: white;
    border: 2px solid #4A90E2;
  }
  
  .summary-icon {
    width: auto !important;
    height: auto !important;
    font-size: 24px !important;
    margin: 0 auto;
  }
  
  .summary-label {
    font-size: 9px !important;
    margin-bottom: 2px;
    text-transform: uppercase;
  }
  
  .summary-value {
    font-size: 14px !important;
    font-weight: 700;
  }
  
  .summary-change {
    font-size: 10px !important;
    margin-top: 2px;
  }
  
  /* Investment Cards - 1 per row for readability */
  .investments-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  .investment-card {
    padding: 0 !important;
    min-height: auto !important;
    display: block !important;
    border-radius: 12px;
    background: white;
    border: 2px solid #4A90E2;
    overflow: visible !important;
  }
  
  .investment-card-header {
    padding: 12px;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }
  
  .investment-info {
    flex: 1;
    min-width: 0;
  }
  
  .investment-name {
    font-size: 16px !important;
    font-weight: 600;
    margin-bottom: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block !important;
    white-space: normal !important;
  }
  
  .investment-type {
    font-size: 11px !important;
    padding: 2px 8px !important;
    display: inline-block;
    background: #f0f0f0 !important;
    color: #666 !important;
    border-radius: 4px;
  }
  
  .investment-symbol {
    font-size: 11px !important;
    padding: 2px 6px !important;
    display: inline-block;
    margin-left: 6px;
    background: #e8f4fd !important;
    color: #4A90E2 !important;
    border-radius: 4px;
    font-family: monospace;
  }
  
  .investment-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 4px !important;
    flex-shrink: 0;
  }
  
  .investment-actions .btn-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 14px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f5f5f5;
    border: none !important;
  }
  
  .investment-actions .btn-icon.btn-danger {
    background: #ffebee;
  }
  
  .investment-card-body {
    padding: 12px !important;
    display: block !important;
    gap: 0 !important;
    flex: none !important;
    margin-bottom: 0 !important;
  }
  
  .investment-stat {
    display: flex;
    flex-direction: column;
  }
  
  .investment-stat-label {
    font-size: 10px !important;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
  }
  
  .investment-stat-value {
    font-size: 14px !important;
    font-weight: 600;
    display: block;
  }
  
  .investment-stat-inr {
    font-size: 12px;
    margin-top: 2px;
  }
  
  .investment-stats-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 12px;
  }
  
  .investment-stats-row:last-child {
    margin-bottom: 0;
  }
  
  .investment-stats-row:first-child {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .investment-returns-row {
    padding-top: 12px !important;
    border-top: 1px solid #eee !important;
    margin-top: 12px !important;
    display: block !important;
  }
  
  .investment-stat-full {
    text-align: left !important;
    grid-column: 1 / -1;
  }
  
  .investment-stat-full .investment-stat-value {
    font-size: 16px !important;
    font-weight: 700;
  }
  
  .price-change {
    font-size: 12px !important;
    margin-top: 4px;
    font-weight: 600;
    display: block;
  }
  
  .investment-card-footer {
    padding: 10px 12px !important;
    border-top: 1px solid #eee;
    margin-top: 0 !important;
    display: block !important;
    background: #fafafa;
    border-radius: 0 0 10px 10px;
  }
  
  .investment-date {
    font-size: 11px !important;
    color: #888;
  }
  
  .investment-notes {
    margin-top: 0 !important;
    padding: 10px 12px !important;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    background: #f9f9f9;
  }
  
  .live-indicator {
    font-size: 9px !important;
    background: #4CAF50 !important;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    margin-left: 4px;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile - keep 3 summary cards */
  .portfolio-summary {
    gap: 6px !important;
    padding: 8px;
  }
  
  .summary-card {
    padding: 8px 6px !important;
  }
  
  .summary-icon {
    font-size: 20px !important;
  }
  
  .summary-label {
    font-size: 8px !important;
  }
  
  .summary-value {
    font-size: 12px !important;
  }
  
  .summary-change {
    font-size: 9px !important;
  }
  
  /* Investment cards - still 1 per row */
  .investments-grid {
    gap: 10px !important;
  }
  
  .investment-card {
    padding: 0 !important;
  }
  
  .investment-card-header {
    padding: 10px;
  }
  
  .investment-card-body {
    padding: 10px !important;
  }
  
  .investment-name {
    font-size: 14px !important;
  }
  
  .investment-type,
  .investment-symbol {
    font-size: 10px !important;
    padding: 2px 6px !important;
  }
  
  .investment-actions .btn-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
  }
  
  .investment-stat-label {
    font-size: 9px !important;
  }
  
  .investment-stat-value {
    font-size: 13px !important;
  }
  
  .investment-stat-full .investment-stat-value {
    font-size: 14px !important;
  }
  
  .price-change {
    font-size: 11px !important;
  }
}

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

@media (max-width: 768px) {
  .landing-footer {
    padding: 3rem 1rem 1.5rem;
    margin-top: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-section h4 {
    font-size: 1rem;
    padding-bottom: 0.5rem;
  }

  .footer-section ul {
    gap: 0.5rem;
  }

  .footer-section a {
    font-size: 0.875rem;
    padding: 0.375rem 0;
  }

  .footer-bottom {
    gap: 0.75rem;
    padding-top: 1.5rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .footer-disclaimer {
    font-size: 0.75rem;
  }

  .footer-social {
    gap: 0.75rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .landing-footer {
    padding: 2rem 0.75rem 1rem;
    margin-top: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer-section h4 {
    font-size: 0.9rem;
    padding-bottom: 0.375rem;
    margin-bottom: 0.25rem;
  }

  .footer-section h4::before {
    width: 3px;
    height: 16px;
  }

  .footer-section ul {
    gap: 0.375rem;
  }

  .footer-section li {
    margin: 0;
  }

  .footer-section a {
    font-size: 0.8rem;
    padding: 0.25rem 0;
  }

  .footer-section a::before {
    display: none;
  }

  .footer-bottom {
    gap: 0.5rem;
    padding-top: 1rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .footer-disclaimer {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .footer-social {
    gap: 0.5rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-width: 1px;
  }
}



