/* ================================================
   LOANMASTER24 - Custom CSS Styles
   Navy Blue (#1e3a8a) + Gold (#fbbf24) Theme
   Bilingual: Hindi + English
   ================================================ */

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* ===== CSS Variables (Design Tokens) ===== */
:root {
  /* Primary Colors */
  --primary-900: #1e3a8a;
  --primary-800: #1e40af;
  --primary-700: #1d4ed8;
  --primary-600: #2563eb;
  --primary-500: #3b82f6;

  /* Gold Colors */
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Status Colors */
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-premium: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #fbbf24 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 4px 14px 0 rgba(251, 191, 36, 0.39);
  --shadow-primary: 0 4px 14px 0 rgba(30, 58, 138, 0.39);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Noto Sans Devanagari', system-ui, sans-serif;
  background-color: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-900);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

/* Hindi Text */
.hindi-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 500;
}

/* Bilingual Label */
.bilingual-label {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.bilingual-label .hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.bilingual-label .english {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ===== Premium Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.45);
}

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

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

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

.btn-outline:hover {
  background: var(--primary-900);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===== Premium Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-100);
}

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

.card-service {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.card-service:hover::before {
  height: 6px;
}

.card-service .icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 58, 138, 0.05) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-900);
  transition: all var(--transition-normal);
}

.card-service:hover .icon-wrapper {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
}

.card-service .price {
  background: var(--gradient-gold);
  color: var(--primary-900);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
}

/* ===== Glassmorphism Effects ===== */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(30, 58, 138, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ===== PREMIUM Navigation ===== */
.premium-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-gradient-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0), rgba(251, 191, 36, 0.6), rgba(251, 191, 36, 0), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-nav.scrolled .nav-gradient-border {
  opacity: 1;
}

.premium-nav.scrolled {
  background: rgba(10, 14, 32, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-icon {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(251, 191, 36, 0.3);
  transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.5);
  transform: rotate(-5deg) scale(1.05);
}

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

.premium-nav.scrolled .logo-text {
  color: var(--white);
}

.logo-text .logo-24 {
  background: var(--gradient-gold);
  color: var(--primary-900);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.85em;
  margin: 0 1px;
}

.logo-text .logo-number {
  color: var(--gold-400);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.nav-link-active {
  color: var(--gold-400);
}

.nav-links a.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
}

.premium-nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

.premium-nav.scrolled .nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* Nav CTA Button */
.nav-cta-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  background: var(--gradient-gold) !important;
  color: var(--primary-900) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  box-shadow: 0 2px 12px rgba(251, 191, 36, 0.35);
  transition: all 0.3s ease;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5) !important;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #0a0e1a 0%, #1a2342 100%);
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(251, 191, 36, 0.15);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    padding: 0.75rem 1.25rem;
  }

  .nav-links a:hover {
    background: rgba(251, 191, 36, 0.1) !important;
    color: var(--gold-400) !important;
  }
}

/* ===== CINEMATIC HERO SECTION ===== */
.hero-premium {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0e1a 0%, #0f1a3a 25%, #1a2d5e 50%, #0f1a3a 75%, #0a0e1a 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Mesh Gradient Orbs */
.hero-mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.mesh-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.35) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.mesh-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.mesh-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: orbFloat3 10s ease-in-out infinite;
}

.mesh-orb-4 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
  top: 20%;
  left: 20%;
  animation: orbFloat1 8s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -30px) scale(1.15);
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-30px, 30px) scale(1.2);
    opacity: 0.5;
  }
}

/* Particle Canvas */
.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Geometric Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 20%;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 8%;
  animation: shapeRotate 20s linear infinite;
}

.shape-2 {
  width: 50px;
  height: 50px;
  top: 60%;
  right: 10%;
  border-color: rgba(59, 130, 246, 0.15);
  animation: shapeRotate 15s linear infinite reverse;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  border-radius: 50%;
  border-color: rgba(255, 255, 255, 0.05);
  animation: shapeRotate 25s linear infinite;
}

.shape-4 {
  width: 40px;
  height: 40px;
  top: 25%;
  right: 25%;
  border-color: rgba(251, 191, 36, 0.15);
  animation: shapeFloat 6s ease-in-out infinite;
}

.shape-5 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: 35%;
  border-radius: 50%;
  border-color: rgba(99, 102, 241, 0.1);
  animation: shapeFloat 8s ease-in-out infinite reverse;
}

@keyframes shapeRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shapeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Wave Bottom */
.hero-wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave-bottom svg {
  width: 100%;
  height: 80px;
}

/* Hero Container */
.hero-premium-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content */
.hero-content-premium {
  color: var(--white);
}

/* Animated Badge */
.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: var(--gold-400);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
  animation: badgeEntrance 0.6s ease-out;
}

.badge-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  border: 1px solid rgba(251, 191, 36, 0.4);
  animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

@keyframes badgeEntrance {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Headline */
.hero-headline {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--white) !important;
  letter-spacing: -1.5px;
}

.headline-line-1 {
  display: block;
  font-size: inherit;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headlineSlide 0.8s ease-out;
}

.headline-line-2 {
  display: block;
  font-size: 1.15em;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: headlineSlide 0.8s ease-out 0.1s both;
}

.headline-accent {
  display: block;
  margin-top: 0.25rem;
  position: relative;
}

.accent-text {
  font-size: 0.6em;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s ease-in-out infinite, headlineSlide 0.8s ease-out 0.2s both;
}

.accent-underline {
  display: block;
  width: 120px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 4px;
  margin-top: 0.5rem;
  animation: underlineGrow 1s ease-out 0.6s both;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

@keyframes headlineSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmerText {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes underlineGrow {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 120px;
    opacity: 1;
  }
}

/* Subheadline */
.hero-subheadline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.25rem;
  animation: fadeSlideUp 0.8s ease-out 0.3s both;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease-out 0.4s both;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: var(--gradient-gold);
  color: var(--primary-900) !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4), 0 0 60px rgba(251, 191, 36, 0.1);
  transition: all 0.3s ease;
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(251, 191, 36, 0.55), 0 0 80px rgba(251, 191, 36, 0.2);
}

.cta-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: ctaShimmer 3s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Stats Row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.75rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  animation: fadeSlideUp 0.8s ease-out 0.5s both;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* ===== PREMIUM FLOATING CARD ===== */
.hero-visual-premium {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-floating-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.15s ease-out;
  animation: cardEntrance 1s ease-out 0.6s both;
}

@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: perspective(1000px) translateZ(-100px) translateY(40px);
  }

  100% {
    opacity: 1;
    transform: perspective(1000px) translateZ(0) translateY(0);
  }
}

.card-glow-ring {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.4) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(251, 191, 36, 0.4) 100%);
  background-size: 300% 300%;
  z-index: -1;
  animation: glowRotate 4s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes glowRotate {

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

  50% {
    background-position: 100% 50%;
  }
}

/* Card Header */
.floating-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.card-icon-badge {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
  flex-shrink: 0;
}

.card-kit-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3a8a !important;
  margin: 0;
}

.card-kit-subtitle {
  font-size: 0.8rem;
  color: #6b7280 !important;
  margin: 0;
  margin-top: 2px;
}

.card-best-seller {
  margin-left: auto;
  padding: 0.3rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: #1e3a8a;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Checklist */
.floating-card-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.checklist-item:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
  border-color: rgba(59, 130, 246, 0.1);
  transform: translateX(4px);
}

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

.checklist-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

/* Card Footer */
.floating-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.card-price-section {
  display: flex;
  flex-direction: column;
}

.card-price-small {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

.card-price-big {
  font-size: 2rem;
  font-weight: 900;
  color: #1e3a8a;
  line-height: 1;
  letter-spacing: -1px;
}

.card-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: white !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35);
}

.card-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
}

/* Floating Mini Badges */
.floating-mini-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e3a8a;
  z-index: 5;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.badge-top-right {
  top: -12px;
  right: -10px;
  color: #f59e0b;
  animation: miniBadgeFloat 3s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: -10px;
  left: -10px;
  color: #10b981;
  animation: miniBadgeFloat 3s ease-in-out infinite 1.5s;
}

@keyframes miniBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ===== TRUST STRIP ===== */
.hero-trust-strip {
  position: relative;
  z-index: 4;
  padding: 0 2rem;
  margin-top: auto;
  margin-bottom: 2rem;
}

.trust-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item i {
  color: var(--gold-400);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 1024px) {
  .hero-premium-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-bottom: 5rem;
  }

  .hero-content-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .accent-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual-premium {
    display: flex;
    justify-content: center;
  }

  .hero-floating-card {
    max-width: 380px;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  .hero-stat-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    justify-content: center;
    width: 100%;
  }

  .trust-strip-inner {
    flex-wrap: wrap;
    border-radius: var(--radius-xl);
    gap: 0.75rem;
    padding: 1rem;
  }

  .trust-divider {
    display: none;
  }

  .hero-visual-premium {
    display: none;
  }

  .floating-mini-badge {
    display: none;
  }
}

/* ===== Service Grid Section ===== */
.section {
  padding: 5rem 0;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 58, 138, 0.05) 100%);
  color: var(--primary-900);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ===== How It Works Section ===== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-primary);
}

.step-title {
  font-size: 1.25rem;
  color: var(--primary-900);
  margin-bottom: 0.5rem;
}

.step-desc {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

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

  .steps-container::before {
    display: none;
  }
}

/* ===== Features Section ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 1rem;
  transition: all var(--transition-normal);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.feature-content h4 {
  color: var(--primary-900);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .logo-24 {
  background: var(--gradient-gold);
  color: var(--primary-900);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-md);
}

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

.footer-column h4 {
  color: var(--gold-400);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

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

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

.footer-column ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: 0.9375rem;
}

.footer-column ul a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

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

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

/* ===== Form Styles ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

/* Upload Zone */
.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: var(--gray-50);
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--primary-500);
  background: rgba(30, 58, 138, 0.05);
}

.upload-zone .upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gray-400);
}

/* ===== Toast Notifications ===== */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease-out;
  min-width: 300px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast.success {
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left: 4px solid var(--error);
}

.toast.warning {
  border-left: 4px solid var(--warning);
}

/* ===== Modal Styles ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

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

.text-primary {
  color: var(--primary-900);
}

.text-gold {
  color: var(--gold-400);
}

.text-success {
  color: var(--success);
}

.text-error {
  color: var(--error);
}

.bg-primary {
  background: var(--primary-900);
}

.bg-gold {
  background: var(--gold-400);
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.flex {
  display: flex;
}

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

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

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

/* ===== Loading Spinner ===== */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ===== Badge Styles ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.badge-error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
}

.badge-info {
  background: rgba(59, 130, 246, 0.1);
  color: var(--info);
}

/* ===== Animation Classes ===== */
.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

/* ===== Responsive Utility ===== */
@media (max-width: 640px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 641px) {
  .show-mobile-only {
    display: none !important;
  }
}

/* ===================================================
   DARK THEME STYLES
   Premium dark mode with glowing effects
   =================================================== */

/* Dark Theme Variables */
[data-theme="dark"] {
  /* Background Colors */
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1629;
  --bg-tertiary: #151d35;
  --bg-card: #1a2342;
  --bg-elevated: #202b50;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-heading: #ffffff;

  /* Border Colors */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-highlight: rgba(251, 191, 36, 0.4);

  /* Glow Effects */
  --glow-gold: 0 0 20px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.2);
  --glow-primary: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(59, 130, 246, 0.2);
  --glow-success: 0 0 15px rgba(16, 185, 129, 0.4);

  /* Override base variables for dark mode */
  --gray-50: #0f1629;
  --gray-100: #151d35;
  --gray-200: #1a2342;
  --gray-600: #e2e8f0;
  --gray-700: #f1f5f9;
  --gray-800: #f8fafc;
  --primary-900: #60a5fa;
}

/* Dark Theme - Body & Base */
[data-theme="dark"] body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* Dark Theme - Typography */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #ffffff !important;
}

[data-theme="dark"] p {
  color: #e2e8f0;
}

/* Dark Theme - Force white text on inline styled elements */
[data-theme="dark"] [style*="color:#1e3a8a"],
[data-theme="dark"] [style*="color: #1e3a8a"] {
  color: #ffffff !important;
}

[data-theme="dark"] [style*="color:#6b7280"],
[data-theme="dark"] [style*="color: #6b7280"] {
  color: #e2e8f0 !important;
}

[data-theme="dark"] [style*="color:#4b5563"],
[data-theme="dark"] [style*="color: #4b5563"] {
  color: #cbd5e1 !important;
}

[data-theme="dark"] [style*="color:#374151"],
[data-theme="dark"] [style*="color: #374151"] {
  color: #e2e8f0 !important;
}

/* Dark Theme - Premium Navbar */
[data-theme="dark"] .premium-nav.scrolled {
  background: rgba(10, 14, 32, 0.92);
  border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .premium-nav.scrolled .logo-text {
  color: var(--text-primary);
}

[data-theme="dark"] .premium-nav.scrolled .nav-links a {
  color: var(--text-secondary);
}

[data-theme="dark"] .premium-nav.scrolled .nav-links a:hover {
  color: var(--gold-400);
  background: rgba(251, 191, 36, 0.08);
}

[data-theme="dark"] .nav-toggle span {
  background: var(--text-primary);
}

/* Dark Theme - Mobile Nav */
@media (max-width: 768px) {
  [data-theme="dark"] .nav-links {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-left: 1px solid var(--border-color);
  }
}

/* Dark Theme - Premium Hero Floating Card */
[data-theme="dark"] .hero-floating-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), var(--glow-gold);
}

[data-theme="dark"] .card-kit-title {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .card-kit-subtitle {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .card-price-big {
  color: var(--gold-400) !important;
}

[data-theme="dark"] .card-price-small {
  color: var(--text-muted);
}

[data-theme="dark"] .checklist-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .checklist-item:hover {
  background: rgba(251, 191, 36, 0.06);
  border-color: rgba(251, 191, 36, 0.15);
}

[data-theme="dark"] .checklist-item span {
  color: var(--text-secondary);
}

[data-theme="dark"] .floating-card-header {
  border-bottom-color: var(--border-color);
}

[data-theme="dark"] .floating-card-footer {
  border-top-color: var(--border-color);
}

[data-theme="dark"] .floating-mini-badge {
  background: var(--bg-card);
  border-color: var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), var(--glow-gold);
}

[data-theme="dark"] .card-best-seller {
  box-shadow: var(--glow-gold);
}

/* Dark Theme - Cards */
[data-theme="dark"] .card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .card:hover {
  border-color: var(--border-highlight);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), var(--glow-gold);
}

[data-theme="dark"] .card-service {
  background: var(--bg-card);
}

[data-theme="dark"] .card-service::before {
  box-shadow: var(--glow-gold);
}

[data-theme="dark"] .card-service h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .card-service p,
[data-theme="dark"] .card-service li {
  color: var(--text-secondary);
}

[data-theme="dark"] .card-service .icon-wrapper {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
  box-shadow: var(--glow-primary);
}

[data-theme="dark"] .card-service:hover .icon-wrapper {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

/* Dark Theme - Sections */
[data-theme="dark"] .section {
  background: var(--bg-primary) !important;
}

[data-theme="dark"] section[style*="background:white"],
[data-theme="dark"] section[style*="background: white"] {
  background: var(--bg-primary) !important;
}

[data-theme="dark"] section[style*="background:var(--gray-50)"],
[data-theme="dark"] section[style*="background: var(--gray-50)"] {
  background: var(--bg-secondary) !important;
}

[data-theme="dark"] .section-badge {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--gold-400);
  border: 1px solid var(--border-highlight);
}

[data-theme="dark"] .section-title {
  color: var(--text-primary);
}

[data-theme="dark"] .section-subtitle {
  color: var(--text-secondary);
}

[data-theme="dark"] .step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .step-card:hover {
  border-color: var(--border-highlight);
  box-shadow: var(--glow-gold);
}

[data-theme="dark"] .step-number {
  box-shadow: var(--glow-primary);
}

[data-theme="dark"] .step-title {
  color: var(--text-primary);
}

[data-theme="dark"] .step-desc {
  color: var(--text-secondary);
}

[data-theme="dark"] .steps-container::before {
  background: var(--border-color);
}

/* Dark Theme - Features */
[data-theme="dark"] .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .feature-card:hover {
  border-color: var(--border-highlight);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), var(--glow-gold);
}

[data-theme="dark"] .feature-icon {
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

[data-theme="dark"] .feature-content h4 {
  color: var(--text-primary);
}

[data-theme="dark"] .feature-content p {
  color: var(--text-secondary);
}

/* Dark Theme - Footer */
[data-theme="dark"] .footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

/* Dark Theme - Forms */
[data-theme="dark"] .form-label {
  color: var(--text-secondary);
}

[data-theme="dark"] .form-input {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] .form-input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2), var(--glow-gold);
}

[data-theme="dark"] .form-input::placeholder {
  color: var(--text-muted);
}

[data-theme="dark"] .upload-zone {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
}

[data-theme="dark"] .upload-zone:hover {
  border-color: var(--gold-400);
  box-shadow: var(--glow-gold);
}

/* Dark Theme - Toast */
[data-theme="dark"] .toast {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

/* Dark Theme - Modal */
[data-theme="dark"] .modal {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .modal-header {
  border-color: var(--border-color);
}

[data-theme="dark"] .modal-footer {
  border-color: var(--border-color);
}

/* Dark Theme - Buttons */
[data-theme="dark"] .btn-outline {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

[data-theme="dark"] .btn-outline:hover {
  background: var(--gold-400);
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
}

[data-theme="dark"] .btn-gold {
  box-shadow: var(--glow-gold);
}

[data-theme="dark"] .btn-gold:hover {
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.6), 0 0 60px rgba(251, 191, 36, 0.3);
}

[data-theme="dark"] .btn-primary {
  box-shadow: var(--glow-primary);
}

[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.25);
}

/* Dark Theme - Badges */
[data-theme="dark"] .badge-success {
  background: rgba(16, 185, 129, 0.2);
  box-shadow: var(--glow-success);
}

[data-theme="dark"] .badge-warning {
  background: rgba(251, 191, 36, 0.2);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

[data-theme="dark"] .badge-error {
  background: rgba(239, 68, 68, 0.2);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* Dark Theme - Spinner */
[data-theme="dark"] .spinner {
  border-color: var(--border-color);
  border-top-color: var(--gold-400);
  box-shadow: var(--glow-gold);
}

/* Dark Theme - Bilingual */
[data-theme="dark"] .bilingual-label .hindi {
  color: var(--text-secondary);
}

[data-theme="dark"] .bilingual-label .english {
  color: var(--text-muted);
}

/* ===================================================
   THEME & LANGUAGE TOGGLE CONTROLS
   =================================================== */

.controls-wrapper {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  overflow: hidden;
}

.control-btn:hover {
  width: auto;
  padding: 0 1.25rem;
  border-radius: 24px;
}

.control-btn .control-text {
  display: none;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
}

.control-btn:hover .control-text {
  display: block;
}

.control-btn.theme-btn {
  background: var(--gradient-primary);
}

[data-theme="dark"] .control-btn.theme-btn {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
}

.control-btn.lang-btn {
  background: var(--gradient-gold);
  color: var(--primary-900);
}

[data-theme="dark"] .control-btn.lang-btn {
  background: var(--bg-card);
  color: var(--gold-400);
  border: 1px solid var(--gold-400);
  box-shadow: var(--glow-gold);
}

.control-btn i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Mobile responsive controls */
@media (max-width: 768px) {
  .controls-wrapper {
    bottom: 1rem;
    right: 1rem;
  }

  .control-btn {
    width: 44px;
    height: 44px;
  }

  .control-btn:hover {
    width: 44px;
    padding: 0;
  }

  .control-btn:hover .control-text {
    display: none;
  }
}

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

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.6), 0 0 50px rgba(251, 191, 36, 0.3);
  }
}

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(251, 191, 36, 0.3);
  }

  50% {
    border-color: rgba(251, 191, 36, 0.8);
  }
}

[data-theme="dark"] .card-service:hover {
  animation: glowPulse 2s ease-in-out infinite;
}

[data-theme="dark"] .hero-card {
  animation: glowPulse 3s ease-in-out infinite;
}

[data-theme="dark"] .btn-gold:hover {
  animation: glowPulse 1.5s ease-in-out infinite;
}

/* Glowing text effect for dark theme */
[data-theme="dark"] .hero-title .highlight {
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5), 0 0 60px rgba(251, 191, 36, 0.3);
}

[data-theme="dark"] .stat-number {
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

[data-theme="dark"] .price {
  box-shadow: var(--glow-gold);
}

/* ===================================================
   AUTH PAGE - DARK THEME
   =================================================== */

[data-theme="dark"] .auth-right {
  background: var(--bg-primary);
}

[data-theme="dark"] .auth-form-container h1,
[data-theme="dark"] .auth-form-container h2 {
  color: var(--text-primary);
}

[data-theme="dark"] .auth-form-container p {
  color: var(--text-secondary);
}

[data-theme="dark"] .google-btn {
  background: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] .google-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--gold-400);
  box-shadow: var(--glow-gold);
}

[data-theme="dark"] .divider::before,
[data-theme="dark"] .divider::after {
  border-color: var(--border-color);
}

[data-theme="dark"] .divider span {
  color: var(--text-muted);
}

[data-theme="dark"] .user-info-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .user-info h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .user-info p {
  color: var(--text-secondary);
}

/* Auth page security note */
[data-theme="dark"] [style*="background:rgba(16,185,129,0.1)"] {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ===================================================
   DASHBOARD & OTHER PAGES - DARK THEME
   =================================================== */

[data-theme="dark"] .dashboard-container,
[data-theme="dark"] .page-container {
  background: var(--bg-primary);
}

[data-theme="dark"] .sidebar {
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
}

[data-theme="dark"] .sidebar-link {
  color: var(--text-secondary);
}

[data-theme="dark"] .sidebar-link:hover,
[data-theme="dark"] .sidebar-link.active {
  background: var(--bg-card);
  color: var(--gold-400);
}

[data-theme="dark"] .content-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .stat-card:hover {
  border-color: var(--border-highlight);
  box-shadow: var(--glow-gold);
}

[data-theme="dark"] .data-table {
  background: var(--bg-card);
}

[data-theme="dark"] .data-table th {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-color: var(--border-color);
}

[data-theme="dark"] .data-table td {
  color: var(--text-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] .data-table tr:hover {
  background: var(--bg-elevated);
}

/* Select and dropdown dark theme */
[data-theme="dark"] select {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] select:focus {
  border-color: var(--gold-400);
  box-shadow: var(--glow-gold);
}

/* Textarea dark theme */
[data-theme="dark"] textarea {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] textarea:focus {
  border-color: var(--gold-400);
  box-shadow: var(--glow-gold);
}

/* ===================================================
   DASHBOARD - DARK THEME SPECIFIC STYLES
   =================================================== */

/* Dashboard Container */
[data-theme="dark"] .main-content {
  background: var(--bg-primary);
}

/* Dashboard Stat Cards */
[data-theme="dark"] .dashboard-container .stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .dashboard-container .stat-card:hover {
  border-color: var(--border-highlight);
  box-shadow: var(--glow-gold);
}

/* Order Cards */
[data-theme="dark"] .order-card {
  background: var(--bg-card);
  border-color: var(--border-color);
}

[data-theme="dark"] .order-card:hover {
  border-color: var(--border-highlight);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), var(--glow-gold);
}

[data-theme="dark"] .order-card h4 {
  color: var(--text-primary);
}

/* Document Cards */
[data-theme="dark"] .document-card {
  background: var(--bg-card);
  border-color: var(--border-color);
}

[data-theme="dark"] .document-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--glow-gold);
}

/* Status Badges Dark Theme */
[data-theme="dark"] .status-pending {
  background: rgba(251, 191, 36, 0.15);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
}

[data-theme="dark"] .status-processing {
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .status-ready {
  background: rgba(16, 185, 129, 0.15);
  box-shadow: var(--glow-success);
}

[data-theme="dark"] .status-rejected {
  background: rgba(239, 68, 68, 0.15);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

/* Mobile Header Dark */
[data-theme="dark"] .mobile-header {
  background: var(--bg-secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Quick Action Cards */
[data-theme="dark"] [style*="background:linear-gradient(135deg,rgba(251,191,36,0.1)"],
[data-theme="dark"] [style*="background:linear-gradient(135deg,rgba(30,58,138,0.1)"],
[data-theme="dark"] [style*="background:linear-gradient(135deg,rgba(16,185,129,0.1)"] {
  background: var(--bg-tertiary) !important;
  border: 1px solid var(--border-color);
}

/* Profile Section */
[data-theme="dark"] .user-profile {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

/* ===================================================
   DARK THEME - COMPREHENSIVE INLINE STYLE OVERRIDES
   =================================================== */

/* Force white background sections to dark */
[data-theme="dark"] section[style*="background:white"],
[data-theme="dark"] section[style*="background: white"],
[data-theme="dark"] [style*="background:white"],
[data-theme="dark"] [style*="background: white"] {
  background: var(--bg-primary) !important;
}

[data-theme="dark"] [style*="background:#fff"],
[data-theme="dark"] [style*="background: #fff"],
[data-theme="dark"] [style*="background:#ffffff"],
[data-theme="dark"] [style*="background: #ffffff"] {
  background: var(--bg-card) !important;
}

/* Dashboard specific stat card text color fixes */
[data-theme="dark"] .stat-card p,
[data-theme="dark"] .stat-card span,
[data-theme="dark"] .stat-card h3,
[data-theme="dark"] .stat-card h4 {
  color: #ffffff !important;
}

/* Muted text on stat cards */
[data-theme="dark"] .stat-card p[style*="color:#6b7280"],
[data-theme="dark"] .stat-card p[style*="color: #6b7280"] {
  color: #94a3b8 !important;
}

/* Stat numbers should be visible */
[data-theme="dark"] .stat-card p[style*="font-weight:800"],
[data-theme="dark"] .stat-card p[style*="font-weight: 800"] {
  color: inherit !important;
}

/* Card titles in dark mode */
[data-theme="dark"] .card h2,
[data-theme="dark"] .card h3,
[data-theme="dark"] .card h4 {
  color: #ffffff !important;
}

/* Service card text */
[data-theme="dark"] .card-service h3 {
  color: #ffffff !important;
}

[data-theme="dark"] .card-service p {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .card-service li {
  color: #cbd5e1 !important;
}

/* Order card title */
[data-theme="dark"] .order-card h4 {
  color: #ffffff !important;
}

/* Document card text */
[data-theme="dark"] .document-card h4 {
  color: #ffffff !important;
}

/* Section titles and badges */
[data-theme="dark"] .section-title {
  color: #ffffff !important;
}

[data-theme="dark"] .section-badge {
  color: var(--gold-400) !important;
}

/* Hero card in dark mode */
[data-theme="dark"] .hero-card h3 {
  color: #ffffff !important;
}

[data-theme="dark"] .hero-card p {
  color: #cbd5e1 !important;
}

/* Feature card text */
[data-theme="dark"] .feature-content h4 {
  color: #ffffff !important;
}

[data-theme="dark"] .feature-content p {
  color: #cbd5e1 !important;
}

/* Step card text */
[data-theme="dark"] .step-title {
  color: #ffffff !important;
}

[data-theme="dark"] .step-desc {
  color: #cbd5e1 !important;
}

/* Bilingual label in dark mode */
[data-theme="dark"] .bilingual-label .hindi {
  color: #cbd5e1 !important;
}

/* Footer column headers */
[data-theme="dark"] .footer-column h4 {
  color: var(--gold-400) !important;
}

/* Dashboard welcome text */
[data-theme="dark"] #welcomeName,
[data-theme="dark"] .main-content h1 {
  color: #ffffff !important;
}

/* Mobile header text */
[data-theme="dark"] .mobile-header span {
  color: #ffffff !important;
}

/* Quick action card text */
[data-theme="dark"] .main-content [style*="text-align:center"] p[style*="font-weight:600"],
[data-theme="dark"] .main-content [style*="text-align: center"] p[style*="font-weight: 600"] {
  color: #ffffff !important;
}

/* Form labels in dark mode */
[data-theme="dark"] .form-label {
  color: #e2e8f0 !important;
}

/* Price badge visible on dark */
[data-theme="dark"] .price {
  background: var(--gradient-gold) !important;
  color: #1e3a8a !important;
}

/* Affiliate banner card */
[data-theme="dark"] .card[style*="linear-gradient(135deg,rgba(251,191,36"] h3,
[data-theme="dark"] .card[style*="linear-gradient(135deg, rgba(251,191,36"] h3 {
  color: #ffffff !important;
}

[data-theme="dark"] .card[style*="linear-gradient(135deg,rgba(251,191,36"] p,
[data-theme="dark"] .card[style*="linear-gradient(135deg, rgba(251,191,36"] p {
  color: #cbd5e1 !important;
}

/* CTA section text always white */
[data-theme="dark"] section[style*="gradient-primary"] h2,
[data-theme="dark"] section[style*="gradient-primary"] p {
  color: white !important;
}

/* ===================================================
   DASHBOARD - DESKTOP LAYOUT FIX
   =================================================== */

/* Stats grid - force horizontal layout on desktop */
@media (min-width: 769px) {
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }

  .main-content [style*="grid-template-columns:repeat(auto-fit,minmax(200px,1fr))"] {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
  }

  /* Cards grid on dashboard */
  .cards-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  /* Quick actions grid */
  .quick-actions-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
}

/* Large desktop layout refinements */
@media (min-width: 1200px) {
  .main-content [style*="grid-template-columns:repeat(auto-fit,minmax(200px,1fr))"] {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  /* Ensure sidebar stays fixed on large screens */
  .sidebar {
    position: fixed !important;
    width: 250px !important;
  }

  .main-content {
    margin-left: 250px !important;
    width: calc(100% - 250px) !important;
  }
}

/* Medium desktop - 2 column stats */
@media (min-width: 769px) and (max-width: 1199px) {

  .stats-grid,
  .main-content [style*="grid-template-columns:repeat(auto-fit,minmax(200px,1fr))"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Services grid on services section */
@media (min-width: 769px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 1.5rem !important;
  }
}

/* Footer grid on desktop */
@media (min-width: 769px) {
  .footer-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 3rem !important;
  }
}

/* =============================================================================
   PREMIUM SECTIONS, SERVICE CARDS, STEPS, FEATURES, CTA, FOOTER & DARK MODE
   ============================================================================= */

/* ===== Scroll Reveal ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PREMIUM SECTION BASE ===== */
.section-premium {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.section-premium.section-alt {
  background: var(--gray-50);
}

.section-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(251, 191, 36, 0.08));
  color: var(--primary-900);
  border: 1px solid rgba(30, 58, 138, 0.12);
}

.section-title-premium {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.title-highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle-premium {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PREMIUM SERVICE CARDS ===== */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card-premium {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.scard-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fbbf24, #3b82f6, #fbbf24);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientSlide 3s linear infinite;
}

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

  100% {
    background-position: 200% 50%;
  }
}

.service-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(251, 191, 36, 0.15);
}

.service-card-premium:hover .scard-glow {
  opacity: 1;
}

.scard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.scard-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
  transition: all 0.3s ease;
}

.service-card-premium:hover .scard-icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.scard-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-500);
  letter-spacing: -0.5px;
}

.scard-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.25rem;
}

.scard-hindi {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

.scard-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.75rem;
}

.scard-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.scard-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
}

.scard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-primary);
  color: white !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.25);
  margin-top: auto;
}

.scard-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

/* ===== PREMIUM STEPS ===== */
.steps-premium {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  flex-wrap: wrap;
}

.steps-line {
  position: absolute;
  top: 35px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), rgba(59, 130, 246, 0.3), transparent);
}

.step-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  position: relative;
  z-index: 1;
}

.step-num-premium {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
}

.step-num-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid rgba(251, 191, 36, 0.3);
  animation: stepRingPulse 2.5s ease-out infinite;
}

@keyframes stepRingPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.step-content-premium {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.step-content-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(251, 191, 36, 0.2);
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin: 0 auto 1rem;
}

.step-content-premium h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.5rem;
}

.step-content-premium p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== PREMIUM FEATURES ===== */
.features-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-premium {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.feature-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

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

.feature-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(251, 191, 36, 0.15);
}

.fp-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.feature-premium:hover .fp-icon {
  background: var(--gradient-gold);
  color: var(--primary-900);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.feature-premium h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.5rem;
}

.feature-premium p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== PREMIUM CTA ===== */
.cta-premium {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a2d5e 50%, #0a0e1a 100%);
  overflow: hidden;
}

.cta-mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation: orbFloat1 10s ease-in-out infinite;
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  bottom: -20%;
  left: -5%;
  animation: orbFloat2 12s ease-in-out infinite;
}

.cta-headline {
  font-size: 2.75rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.cta-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== AFFILIATE BANNER ===== */
.affiliate-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.affiliate-banner:hover {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.08);
}

.affiliate-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.affiliate-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.affiliate-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-900);
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.3);
}

.affiliate-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.2rem;
}

.affiliate-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== PREMIUM FOOTER ===== */
.footer-premium {
  position: relative;
  background: linear-gradient(180deg, #0a0e1a 0%, #0f1a3a 100%);
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.footer-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.footer-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4), transparent 70%);
  top: -30%;
  right: -10%;
}

.footer-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
  bottom: -30%;
  left: -10%;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container-premium {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

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

.footer-logo-premium .logo-text {
  font-size: 1.25rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gradient-gold);
  color: var(--primary-900);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

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

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-bottom-premium {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 2rem;
}

.footer-bottom-premium p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-container-premium {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand-premium {
    grid-column: 1 / -1;
  }

  .cta-headline {
    font-size: 2rem;
  }
}

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

  .steps-premium {
    flex-direction: column;
    align-items: center;
  }

  .steps-line {
    display: none;
  }

  .section-title-premium {
    font-size: 2rem;
  }
}

/* ===================================================
   COMPLETE DARK MODE FOR ALL PREMIUM SECTIONS
   =================================================== */

[data-theme="dark"] .section-premium {
  background: var(--bg-primary);
}

[data-theme="dark"] .section-premium.section-alt {
  background: var(--bg-secondary);
}

[data-theme="dark"] .section-badge-premium {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(251, 191, 36, 0.1));
  color: var(--gold-400);
  border-color: rgba(251, 191, 36, 0.2);
}

[data-theme="dark"] .section-title-premium {
  color: var(--text-primary);
}

[data-theme="dark"] .section-subtitle-premium {
  color: var(--text-secondary);
}

/* Dark mode - Service Cards */
[data-theme="dark"] .service-card-premium {
  background: var(--bg-card);
  border-color: var(--border-color);
}

[data-theme="dark"] .service-card-premium:hover {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(251, 191, 36, 0.05);
}

[data-theme="dark"] .scard-title {
  color: var(--text-primary);
}

[data-theme="dark"] .scard-hindi {
  color: var(--text-muted);
}

[data-theme="dark"] .scard-desc {
  color: var(--text-secondary);
}

[data-theme="dark"] .scard-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
  color: var(--gold-400);
}

[data-theme="dark"] .scard-tag {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Dark mode - Steps */
[data-theme="dark"] .step-content-premium {
  background: var(--bg-card);
  border-color: var(--border-color);
}

[data-theme="dark"] .step-content-premium:hover {
  border-color: rgba(251, 191, 36, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .step-content-premium h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .step-content-premium p {
  color: var(--text-secondary);
}

[data-theme="dark"] .step-icon-wrap {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
}

/* Dark mode - Features */
[data-theme="dark"] .feature-premium {
  background: var(--bg-card);
  border-color: var(--border-color);
}

[data-theme="dark"] .feature-premium:hover {
  border-color: rgba(251, 191, 36, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .feature-premium h4 {
  color: var(--text-primary);
}

[data-theme="dark"] .feature-premium p {
  color: var(--text-secondary);
}

[data-theme="dark"] .fp-icon {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
}

/* Dark mode - Affiliate */
[data-theme="dark"] .affiliate-banner {
  background: var(--bg-card);
  border-color: rgba(251, 191, 36, 0.15);
}

[data-theme="dark"] .affiliate-banner:hover {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), var(--glow-gold);
}

[data-theme="dark"] .affiliate-content h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .affiliate-content p {
  color: var(--text-secondary);
}

/* ================================================
   MOBILE-FIRST RESPONSIVE ENHANCEMENTS (Point 14)
   Enhanced mobile experience across all pages
   ================================================ */

/* ===== Global Mobile Fixes ===== */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }

  .btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    min-height: 44px;
    /* Touch target */
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .card {
    padding: 1rem;
    border-radius: var(--radius-lg);
  }

  .form-input,
  .form-select,
  select.form-input,
  textarea.form-input {
    font-size: 16px !important;
    /* Prevent iOS zoom */
    padding: 0.75rem;
    min-height: 44px;
  }

  /* Fix overflow on mobile */
  .admin-content,
  .op-content,
  .main-content {
    overflow-x: hidden;
  }
}

/* ===== Admin Panel Mobile ===== */
@media (max-width: 768px) {

  /* Admin sidebar */
  .admin-sidebar {
    position: fixed !important;
    left: -280px;
    z-index: 1000;
    width: 260px;
    transition: left 0.3s ease;
  }

  .admin-sidebar.active {
    left: 0;
  }

  /* Admin main content */
  .admin-main {
    margin-left: 0 !important;
    width: 100% !important;
    padding: 1rem !important;
  }

  /* Admin tables - horizontal scroll */
  .admin-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 600px;
    font-size: 0.8125rem;
  }

  table th,
  table td {
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
  }

  /* Admin stats grid */
  .stats-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  /* Admin order actions */
  .action-btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
  }

  /* Admin cards */
  .admin-section-title {
    font-size: 0.875rem !important;
  }

  .admin-copy-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .admin-copy-btn {
    align-self: flex-start;
  }
}

/* ===== Operator Panel Mobile ===== */
@media (max-width: 768px) {
  .op-container {
    flex-direction: column;
  }

  .op-sidebar {
    position: fixed !important;
    left: -280px;
    z-index: 1000;
    width: 260px;
    height: 100vh;
    transition: left 0.3s ease;
  }

  .op-sidebar.active {
    left: 0;
  }

  .op-main {
    margin-left: 0 !important;
    width: 100% !important;
  }

  .op-content {
    padding: 1rem !important;
  }

  .op-header {
    padding: 1rem !important;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* Operator order cards */
  .order-card {
    padding: 1rem !important;
  }

  .order-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .order-body {
    grid-template-columns: 1fr !important;
  }

  /* Copy fields */
  .copy-field {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start !important;
  }

  .copy-field-value {
    word-break: break-all;
  }

  /* Upload zone */
  .upload-zone {
    padding: 1.5rem !important;
  }
}

/* ===== Dashboard Mobile ===== */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .stat-card {
    padding: 1rem !important;
  }

  .stat-card p[style*="font-size:2rem"] {
    font-size: 1.5rem !important;
  }

  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .order-card {
    padding: 1rem !important;
  }

  /* Document cards */
  .document-card {
    padding: 0.75rem !important;
  }

  #documentsList {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Apply Form Mobile ===== */
@media (max-width: 768px) {
  .apply-container {
    padding: 1rem !important;
    max-width: 100% !important;
  }

  /* Step indicators */
  .step-indicator {
    font-size: 0.75rem;
    padding: 0.5rem;
  }

  /* Form sections */
  .form-section {
    padding: 1rem !important;
  }

  /* Form grid layouts */
  .form-grid,
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  /* Document upload grid */
  .doc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  /* OCR notification */
  .ocr-notification {
    bottom: 1rem !important;
    right: 1rem !important;
    left: 1rem !important;
    max-width: none !important;
  }
}

/* ===== Auth Page Mobile ===== */
@media (max-width: 480px) {
  .auth-container {
    padding: 1rem !important;
    max-width: 100% !important;
  }

  .auth-mode-toggle {
    flex-direction: column;
    gap: 0.5rem;
  }

  .auth-mode-btn {
    width: 100%;
    text-align: center;
  }

  .pin-container {
    gap: 0.5rem !important;
  }

  .pin-container input {
    width: 44px !important;
    height: 50px !important;
    font-size: 1.25rem !important;
  }

  /* Role cards */
  .role-cards {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
}

/* ===== Payment Page Mobile ===== */
@media (max-width: 480px) {
  .payment-container {
    padding: 1rem !important;
  }

  .qr-code img {
    max-width: 200px !important;
  }

  .payment-details {
    font-size: 0.875rem;
  }
}

/* ===== Contact Page Mobile ===== */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* ===== Index/Home Page Mobile ===== */
@media (max-width: 768px) {
  .hero-premium-container {
    grid-template-columns: 1fr !important;
    padding: 2rem 1rem 4rem !important;
    gap: 2rem !important;
    text-align: center;
  }

  .hero-visual-premium {
    display: none;
  }

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

  .hero-subtitle-premium {
    font-size: 1rem !important;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  /* Services grid */
  .services-grid-premium {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 1rem;
  }

  .section-premium {
    padding: 3rem 1rem !important;
  }

  /* Trust bar */
  .trust-bar {
    flex-wrap: wrap;
    gap: 1rem !important;
    justify-content: center;
  }

  .trust-item {
    font-size: 0.8125rem;
  }
}

/* ===== General Mobile Touch Improvements ===== */
@media (max-width: 768px) {

  /* Ensure tap targets are large enough */
  a,
  button,
  input,
  select,
  textarea {
    min-height: 36px;
  }

  /* Better scrolling for modals */
  [style*="position:fixed"][style*="overflow-y:auto"],
  [style*="position: fixed"][style*="overflow-y: auto"] {
    -webkit-overflow-scrolling: touch;
  }

  /* Prevent horizontal overflow */
  .container,
  .content,
  main,
  section {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Fix grid overflows */
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Toast notifications on mobile */
  .toast-container {
    bottom: 1rem !important;
    right: 1rem !important;
    left: 1rem !important;
    max-width: none !important;
  }

  /* Loading overlay text */
  .loading-overlay .loading-text {
    font-size: 0.875rem !important;
    padding: 0 1rem;
  }
}

/* ===== Small screens (< 360px) ===== */
@media (max-width: 360px) {
  html {
    font-size: 13px;
  }

  .stats-grid,
  .stat-grid {
    grid-template-columns: 1fr !important;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===================================================
   LIGHT THEME OVERRIDES
   Bright, clean light mode for all premium sections
   =================================================== */

/* Light Theme - Hero Premium */
[data-theme="light"] .hero-premium {
  background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 25%, #bfdbfe 50%, #dbeafe 75%, #eef2ff 100%) !important;
}

[data-theme="light"] .hero-premium .mesh-orb {
  opacity: 0.25;
}

[data-theme="light"] .mesh-orb-1 {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%) !important;
}

[data-theme="light"] .mesh-orb-2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%) !important;
}

[data-theme="light"] .mesh-orb-3 {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%) !important;
}

[data-theme="light"] .mesh-orb-4 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%) !important;
}

[data-theme="light"] .hero-title {
  color: #1e3a8a !important;
}

[data-theme="light"] .hero-title .highlight,
[data-theme="light"] .hero-premium .title-highlight {
  color: #d97706 !important;
}

/* Light Theme - Hero Headline (critical: uses -webkit-text-fill-color: transparent) */
[data-theme="light"] .hero-headline {
  color: #1e3a8a !important;
}

[data-theme="light"] .headline-line-1 {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

[data-theme="light"] .headline-line-2 {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

[data-theme="light"] .accent-text {
  background: linear-gradient(135deg, #d97706 0%, #b45309 50%, #d97706 100%) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

[data-theme="light"] .hero-subheadline {
  color: #374151 !important;
}

[data-theme="light"] .hero-cta-secondary {
  background: rgba(30, 58, 138, 0.08) !important;
  color: #1e3a8a !important;
  border: 1px solid rgba(30, 58, 138, 0.2) !important;
}

[data-theme="light"] .hero-cta-secondary:hover {
  background: rgba(30, 58, 138, 0.15) !important;
}

/* Light Theme - Hero Stat Badges */
[data-theme="light"] .stat-badge-premium,
[data-theme="light"] .hero-stat-badge {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .stat-badge-premium .stat-label,
[data-theme="light"] .hero-stat-badge span:last-child {
  color: #6b7280 !important;
}

[data-theme="light"] .stat-badge-premium .stat-value,
[data-theme="light"] .hero-stat-badge span:first-child {
  color: #1e3a8a !important;
}

[data-theme="light"] .hero-subtitle {
  color: #374151 !important;
}

[data-theme="light"] .hero-desc {
  color: #4b5563 !important;
}

[data-theme="light"] .hero-premium h1,
[data-theme="light"] .hero-premium h2 {
  color: #1e3a8a !important;
}

[data-theme="light"] .hero-premium p {
  color: #4b5563 !important;
}

[data-theme="light"] .hero-premium .hero-cta-secondary {
  background: rgba(30, 58, 138, 0.1) !important;
  color: #1e3a8a !important;
  border: 1px solid rgba(30, 58, 138, 0.2) !important;
}

[data-theme="light"] .hero-premium .hero-cta-secondary:hover {
  background: rgba(30, 58, 138, 0.15) !important;
}

/* Light Theme - Hero Badge */
[data-theme="light"] .hero-premium-badge,
[data-theme="light"] .hero-badge-premium {
  background: rgba(30, 58, 138, 0.08) !important;
  color: #1e3a8a !important;
  border-color: rgba(30, 58, 138, 0.15) !important;
}

/* Light Theme - Stat Badges */
[data-theme="light"] .stat-badge-premium {
  background: white !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .stat-badge-premium .stat-label {
  color: #6b7280 !important;
}

[data-theme="light"] .stat-badge-premium .stat-value {
  color: #1e3a8a !important;
}

/* Light Theme - Hero Floating Card */
[data-theme="light"] .hero-floating-card {
  background: white !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.12) !important;
}

[data-theme="light"] .card-kit-title {
  color: #1e3a8a !important;
}

[data-theme="light"] .card-kit-subtitle {
  color: #6b7280 !important;
}

[data-theme="light"] .card-price-big {
  color: #d97706 !important;
}

[data-theme="light"] .card-price-small {
  color: #6b7280 !important;
}

[data-theme="light"] .checklist-item {
  background: #f9fafb !important;
  border-color: #e5e7eb !important;
}

[data-theme="light"] .checklist-item:hover {
  background: #fef3c7 !important;
  border-color: #fbbf24 !important;
}

[data-theme="light"] .checklist-item span {
  color: #374151 !important;
}

[data-theme="light"] .floating-card-header {
  border-bottom-color: #e5e7eb !important;
}

[data-theme="light"] .floating-card-footer {
  border-top-color: #e5e7eb !important;
}

[data-theme="light"] .floating-mini-badge {
  background: white !important;
  border-color: #e5e7eb !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  color: #d97706 !important;
}

[data-theme="light"] .card-best-seller {
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.15) !important;
}

/* Light Theme - Particle canvas */
[data-theme="light"] #heroParticles {
  opacity: 0.3;
}

/* Light Theme - Premium Navigation (scrolled) */
[data-theme="light"] .premium-nav {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

[data-theme="light"] .premium-nav .nav-gradient-border {
  background: linear-gradient(90deg, #fbbf24, #1e3a8a, #fbbf24) !important;
}

[data-theme="light"] .premium-nav .logo-text {
  color: #1e3a8a !important;
}

[data-theme="light"] .premium-nav .nav-links a {
  color: #374151 !important;
}

[data-theme="light"] .premium-nav .nav-links a:hover,
[data-theme="light"] .premium-nav .nav-links a.nav-link-active {
  color: #1e3a8a !important;
}

[data-theme="light"] .premium-nav.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .premium-nav.scrolled .logo-text {
  color: #1e3a8a !important;
}

[data-theme="light"] .premium-nav.scrolled .nav-links a {
  color: #374151 !important;
}

[data-theme="light"] .premium-nav.scrolled .nav-links a:hover {
  color: #1e3a8a !important;
  background: rgba(30, 58, 138, 0.06) !important;
}

[data-theme="light"] .nav-toggle span {
  background: #1e3a8a !important;
}

/* Light Theme - Nav Profile Button */
[data-theme="light"] .nav-profile-btn {
  border-color: rgba(30, 58, 138, 0.3) !important;
  color: #1e3a8a !important;
}

[data-theme="light"] .nav-profile-btn:hover {
  border-color: #1e3a8a !important;
  background: rgba(30, 58, 138, 0.06) !important;
}

[data-theme="light"] .nav-profile-name {
  color: #1e3a8a !important;
}

[data-theme="light"] .nav-profile-avatar-placeholder {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6) !important;
}

/* Light Theme - Mobile Nav */
@media (max-width: 768px) {
  [data-theme="light"] .nav-links {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    border-left: 1px solid #e5e7eb !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1) !important;
  }

  [data-theme="light"] .nav-links a {
    color: #374151 !important;
  }

  [data-theme="light"] .nav-links a:hover {
    color: #1e3a8a !important;
    background: rgba(30, 58, 138, 0.06) !important;
  }
}

/* Light Theme - Premium Sections */
[data-theme="light"] .section-premium {
  background: white !important;
}

[data-theme="light"] .section-premium.section-alt {
  background: #f9fafb !important;
}

[data-theme="light"] .section-badge-premium {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(251, 191, 36, 0.08)) !important;
  color: #1e3a8a !important;
  border: 1px solid rgba(30, 58, 138, 0.12) !important;
}

[data-theme="light"] .section-title-premium {
  color: #1e3a8a !important;
}

[data-theme="light"] .section-subtitle-premium {
  color: #6b7280 !important;
}

/* Light Theme - Service Cards Premium */
[data-theme="light"] .service-card-premium {
  background: white !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .service-card-premium:hover {
  border-color: #fbbf24 !important;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.15) !important;
}

[data-theme="light"] .scard-glow {
  opacity: 0 !important;
}

[data-theme="light"] .service-card-premium:hover .scard-glow {
  opacity: 0.3 !important;
}

[data-theme="light"] .scard-title {
  color: #1e3a8a !important;
}

[data-theme="light"] .scard-hindi {
  color: #6b7280 !important;
}

[data-theme="light"] .scard-desc {
  color: #4b5563 !important;
}

[data-theme="light"] .scard-price {
  color: #d97706 !important;
}

[data-theme="light"] .scard-tag {
  background: rgba(30, 58, 138, 0.06) !important;
  color: #374151 !important;
  border-color: rgba(30, 58, 138, 0.1) !important;
}

[data-theme="light"] .scard-icon {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(30, 58, 138, 0.06)) !important;
  color: #1e3a8a !important;
}

/* Light Theme - Steps Premium */
[data-theme="light"] .steps-line {
  background: #e5e7eb !important;
}

[data-theme="light"] .step-content-premium {
  background: white !important;
  border: 1px solid #e5e7eb !important;
}

[data-theme="light"] .step-content-premium h3 {
  color: #1e3a8a !important;
}

[data-theme="light"] .step-content-premium p {
  color: #6b7280 !important;
}

[data-theme="light"] .step-icon-wrap {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.06)) !important;
  color: #1e3a8a !important;
}

/* Light Theme - Feature Premium */
[data-theme="light"] .feature-premium {
  background: white !important;
  border: 1px solid #e5e7eb !important;
}

[data-theme="light"] .feature-premium:hover {
  border-color: #fbbf24 !important;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.12) !important;
}

[data-theme="light"] .feature-premium h4 {
  color: #1e3a8a !important;
}

[data-theme="light"] .feature-premium p {
  color: #6b7280 !important;
}

[data-theme="light"] .fp-icon {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(251, 191, 36, 0.06)) !important;
  color: #d97706 !important;
}

/* Light Theme - CTA Premium */
[data-theme="light"] .cta-premium {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1e3a8a 100%) !important;
}

[data-theme="light"] .cta-headline {
  color: white !important;
}

[data-theme="light"] .cta-sub {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Light Theme - Affiliate Banner */
[data-theme="light"] .affiliate-banner {
  background: white !important;
  border: 1px solid #e5e7eb !important;
}

[data-theme="light"] .affiliate-banner h3 {
  color: #1e3a8a !important;
}

[data-theme="light"] .affiliate-banner p {
  color: #6b7280 !important;
}

[data-theme="light"] .affiliate-icon-wrap {
  color: #d97706 !important;
}

/* ===== Light Theme - Trust Strip Fix (100% Secure, 24h Delivery, etc.) ===== */
[data-theme="light"] .trust-strip-inner {
  background: rgba(30, 58, 138, 0.08) !important;
  border: 1px solid rgba(30, 58, 138, 0.12) !important;
}

[data-theme="light"] .trust-item {
  color: #1e3a8a !important;
}

[data-theme="light"] .trust-item i {
  color: #d97706 !important;
}

[data-theme="light"] .trust-divider {
  background: rgba(30, 58, 138, 0.2) !important;
}

/* ===== Light Theme - Hero Stats Row Fix ===== */
[data-theme="light"] .hero-stats-row {
  background: rgba(30, 58, 138, 0.06) !important;
  border: 1px solid rgba(30, 58, 138, 0.1) !important;
}

[data-theme="light"] .stat-label-text {
  color: #4b5563 !important;
}

[data-theme="light"] .hero-stat-divider {
  background: linear-gradient(to bottom, transparent, rgba(30, 58, 138, 0.15), transparent) !important;
}

/* ===== Light Theme - CTA Section Contact Us Button Fix ===== */
[data-theme="light"] .cta-premium .hero-cta-secondary {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

[data-theme="light"] .cta-premium .hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* ===== Dark Theme - Logo MASTER text fix ===== */
[data-theme="dark"] .logo-text .logo-24,
.logo-text .logo-24 {
  background: var(--gradient-gold) !important;
  color: #1e3a8a !important;
  -webkit-text-fill-color: #1e3a8a !important;
}

/* ===== Dark Theme - Login/CTA Button text fix ===== */
[data-theme="dark"] .nav-cta-btn,
.nav-cta-btn {
  background: var(--gradient-gold) !important;
  color: #1e3a8a !important;
  -webkit-text-fill-color: #1e3a8a !important;
}

/* ===== Dark Theme - Explore Services button text fix ===== */
[data-theme="dark"] .hero-cta-primary,
.hero-cta-primary {
  color: #1e3a8a !important;
  -webkit-text-fill-color: #1e3a8a !important;
}

/* ===== Dark Theme - Get Started button text fix ===== */
[data-theme="dark"] .cta-premium .hero-cta-primary {
  color: #1e3a8a !important;
  -webkit-text-fill-color: #1e3a8a !important;
}

/* ===== Light Theme - Login Button Fix ===== */
[data-theme="light"] .nav-cta-btn {
  background: var(--gradient-gold) !important;
  color: #1e3a8a !important;
  -webkit-text-fill-color: #1e3a8a !important;
}

/* Light Theme - Premium Footer */
[data-theme="light"] .footer-premium {
  background: linear-gradient(180deg, #1e3a8a 0%, #15296b 100%) !important;
}

/* Light Theme - Controls Wrapper */
[data-theme="light"] .control-btn {
  background: var(--gradient-primary) !important;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3) !important;
}

/* Light Theme - Profile Dropdown */
[data-theme="light"] .profile-dropdown {
  background: white !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
}

[data-theme="light"] .profile-dropdown::before {
  border-bottom-color: white !important;
}

[data-theme="light"] .dropdown-user-info {
  border-bottom-color: #e5e7eb !important;
}

[data-theme="light"] .dropdown-user-name {
  color: #1e3a8a !important;
}

[data-theme="light"] .dropdown-user-email {
  color: #6b7280 !important;
}

[data-theme="light"] .dropdown-link {
  color: #374151 !important;
}

[data-theme="light"] .dropdown-link:hover {
  background: rgba(30, 58, 138, 0.06) !important;
  color: #1e3a8a !important;
}

[data-theme="light"] .dropdown-divider {
  background: #e5e7eb !important;
}

[data-theme="light"] .dropdown-section-title {
  color: #9ca3af !important;
}

/* Light Theme - Inline dark-styled page headers (About, Contact, etc) */
[data-theme="light"] section[style*="background:linear-gradient(135deg,#1e3a8a"],
[data-theme="light"] section[style*="background: linear-gradient(135deg,#1e3a8a"],
[data-theme="light"] section[style*="background:linear-gradient(135deg, #1e3a8a"] {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
}

/* Light Theme - Dark sections with white text stay unchanged (they look good) */
[data-theme="light"] section[style*="background:white"],
[data-theme="light"] section[style*="background: white"] {
  background: white !important;
}

/* Light Theme - Ensure inline dark text colors remain accessible */
[data-theme="light"] [style*="color:#1e3a8a"],
[data-theme="light"] [style*="color: #1e3a8a"] {
  color: #1e3a8a !important;
}

[data-theme="light"] [style*="color:#6b7280"],
[data-theme="light"] [style*="color: #6b7280"] {
  color: #6b7280 !important;
}

[data-theme="light"] [style*="color:#4b5563"],
[data-theme="light"] [style*="color: #4b5563"] {
  color: #4b5563 !important;
}

/* Light Theme - Cards */
[data-theme="light"] .card {
  background: white !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .card:hover {
  border-color: #fbbf24 !important;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.12) !important;
}

/* Light Theme - Toast */
[data-theme="light"] .toast {
  background: white !important;
  color: #374151 !important;
}

/* Light Theme - Modal */
[data-theme="light"] .modal {
  background: white !important;
}

[data-theme="light"] .modal-header {
  border-color: #e5e7eb !important;
}

[data-theme="light"] .modal-footer {
  border-color: #e5e7eb !important;
}

/* Light Theme - Body Background */
[data-theme="light"] body {
  background-color: #ffffff !important;
  color: #1f2937 !important;
}

/* ===== FAQ Accordion ===== */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-900);
  gap: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gold-500);
}

.faq-item.faq-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.faq-open .faq-answer {
  max-height: 500px !important;
  overflow: visible !important;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.faq-item.faq-open {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.08);
}

/* Light Theme FAQ */
[data-theme="light"] .faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .faq-item:hover {
  border-color: var(--gold-400);
}

[data-theme="light"] .faq-item.faq-open {
  border-color: var(--gold-400);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15);
}

[data-theme="light"] .faq-question {
  color: var(--primary-900);
}

[data-theme="light"] .faq-answer p {
  color: var(--gray-600);
}

/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ===================================================== */

/* Global overflow prevention */
html {
  overflow-x: hidden !important;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

/* ===== Tablet (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .steps-container::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ===== Mobile (max-width: 768px) ===== */
@media (max-width: 768px) {

  /* Global spacing */
  .section-premium,
  .section {
    padding: 3rem 0 !important;
  }

  .section-container {
    padding: 0 1rem !important;
  }

  /* Nav mobile improvements */
  .nav-container {
    padding: 0 1rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    z-index: 999;
    transition: right 0.3s ease;
  }

  .nav-links.nav-active {
    right: 0;
  }

  .nav-toggle {
    display: flex !important;
  }

  /* Hero section */
  .hero-premium {
    min-height: auto !important;
    padding: 5rem 0 3rem !important;
  }

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

  .hero-subheadline {
    font-size: 0.95rem !important;
  }

  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .service-card {
    padding: 1.5rem !important;
  }

  /* Steps */
  .step-card {
    padding: 1.5rem 1rem;
  }

  /* Features grid */
  .features-grid-premium {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* CTA section */
  .cta-headline {
    font-size: 1.75rem !important;
  }

  .cta-sub {
    font-size: 1rem !important;
  }

  .cta-btns {
    flex-direction: column !important;
    align-items: center !important;
  }

  .cta-btns .hero-cta-primary,
  .cta-btns .hero-cta-secondary {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Footer */
  .footer-premium {
    padding: 3rem 0 1.5rem !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  .footer-social-links {
    justify-content: center !important;
  }

  /* Affiliate banner */
  .affiliate-banner {
    flex-direction: column !important;
    text-align: center;
    padding: 1.5rem !important;
    gap: 1rem !important;
  }

  /* Section headers */
  .section-title-premium {
    font-size: 1.75rem !important;
  }

  .section-badge-premium {
    font-size: 0.8rem !important;
  }

  /* Cards general */
  .card {
    padding: 1.25rem !important;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.95rem !important;
    padding: 1rem 1.25rem !important;
  }

  .faq-answer {
    padding: 0 1.25rem !important;
  }

  /* Trust strip */
  .trust-strip-inner {
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 0.75rem !important;
    border-radius: 16px !important;
  }

  .trust-divider {
    display: none !important;
  }

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

/* ===== Small Mobile (max-width: 480px) ===== */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.625rem !important;
    letter-spacing: -0.5px;
  }

  .hero-subheadline {
    font-size: 0.875rem !important;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
  }

  .nav-cta-btn {
    padding: 0.45rem 1rem !important;
    font-size: 0.8rem !important;
  }

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

  .section-title-premium {
    font-size: 1.35rem !important;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .stat-card {
    padding: 1.25rem !important;
  }

  .cta-headline {
    font-size: 1.375rem !important;
  }

  /* Logo responsiveness */
  .logo-text {
    font-size: 1.15rem !important;
  }

  .logo-icon img {
    width: 26px !important;
    height: 26px !important;
  }
}