/* ===== FRESH CLEAN MODERN STYLE ===== */
:root {
  /* Brand Color Palette - Sophisticated Blue & Gray Progression */
  --primary: #2563eb; /* Vibrant Royal Blue */
  --primary-dark: #1e3a8a; /* Dark Navy Blue */
  --primary-light: #dbeafe; /* Light Blue Tint */
  
  --secondary: #64748b; /* Light Gray */
  --secondary-dark: #374151; /* Dark Gray/Charcoal */
  --secondary-light: #f8fafc; /* Very Light Gray */
  
  --accent: #3b82f6; /* Muted Sky Blue */
  --accent-dark: #1d4ed8; /* Darker Sky Blue */
  --accent-light: #eff6ff; /* Very Light Sky Blue */
  
  /* Supporting Colors */
  --success: #10b981; /* Green for success states */
  --warning: #f59e0b; /* Orange for warnings */
  --error: #ef4444; /* Red for errors */
  
  /* Neutral Grays */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* 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 -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition: all 0.2s ease-in-out;
  --transition-slow: all 0.3s ease-in-out;
  
  /* Mobile-specific variables */
  --mobile-padding: 1rem;
  --mobile-spacing: 0.75rem;
  --mobile-font-size: 0.9rem;
  --mobile-button-height: 44px;
  --touch-target-min: 44px;
  --touch-target-ideal: 48px;
  
  /* Mobile breakpoints */
  --mobile-sm: 480px;
  --mobile-md: 768px;
  --mobile-lg: 1024px;
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Mobile viewport optimization */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* Prevent horizontal scroll on mobile */
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Mobile optimization */
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  /* Prevent horizontal scroll */
  overflow-x: hidden;
  /* Touch optimization */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.875rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  color: var(--gray-700);
  margin-bottom: var(--space-4);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gray-900);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

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

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.nav-toggle {
  display: none !important;
  flex-direction: column;
  cursor: pointer;
  visibility: hidden !important;
  opacity: 0 !important;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gray-600);
  margin: 3px 0;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  /* Mobile touch optimization */
  min-height: var(--touch-target-min);
  min-width: var(--touch-target-min);
  /* Prevent text selection on mobile */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Touch feedback */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

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

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

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-primary.btn-large {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn-outline.btn-large {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.btn-outline.btn-large:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== INDEX PAGE HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  display: flex;
  align-items: center;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 3rem;
}

.hero-logo {
  text-align: center;
  margin-bottom: 1rem;
  width: 100%;
}

.hero-logo-img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(37, 99, 235, 0.2));
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-dark);
  margin: 0;
}

.hero-subtitle {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--secondary-dark);
  margin: 0;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary);
  width: 2rem;
  text-align: center;
}

.feature-item span {
  font-weight: 500;
  color: var(--secondary-dark);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 2rem;
}

.mobile-phone-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  z-index: 1;
}

.mobile-phone-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.2));
}



.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  width: 100%;
}

.card-header {
  margin-bottom: 1.5rem;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.5rem 0;
}

.card-content p {
  color: var(--secondary-dark);
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: var(--primary-light);
  border-radius: 12px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-dark);
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.how-it-works {
  padding: 6rem 0;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 1rem 0;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--secondary-dark);
  margin: 0;
}

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

.step-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 1rem 0;
}

.step-card p {
  color: var(--secondary-dark);
  line-height: 1.6;
  margin: 0;
}

/* Butler Circle Layout for How It Works Section */
.butler-circle-container {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-butler {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.butler-mascot-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  background: white;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.butler-mascot-img:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 50px rgba(37, 99, 235, 0.4);
}

/* Thought Bubble Cards */
.thought-bubble-card {
  position: absolute;
  width: 200px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.thought-bubble-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

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

.bubble-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.bubble-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.thought-bubble-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 10px 0;
}

.thought-bubble-card p {
  font-size: 0.9rem;
  color: var(--secondary-dark);
  line-height: 1.4;
  margin: 0;
}

/* Position the thought bubble cards in a circle */
.thought-bubble-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.thought-bubble-2 {
  bottom: 50px;
  left: 50px;
  transform: translateX(-50%);
}

.thought-bubble-3 {
  bottom: 50px;
  right: 50px;
  transform: translateX(-50%);
}

/* Connection lines from Butler to thought bubbles */
.thought-bubble-card::before {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  z-index: -1;
}

.thought-bubble-1::before {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
}

.thought-bubble-2::before {
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
}

.thought-bubble-3::before {
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
}

/* Responsive design for the circle layout */
@media (max-width: 768px) {
  .butler-circle-container {
    width: 400px;
    height: 400px;
  }
  
  .butler-mascot-img {
    width: 80px;
    height: 80px;
  }
  
  .thought-bubble-card {
    width: 150px;
    padding: 15px;
  }
  
  .bubble-icon {
    width: 50px;
    height: 50px;
  }
  
  .bubble-icon i {
    font-size: 1.2rem;
  }
  
  .thought-bubble-card h3 {
    font-size: 1rem;
  }
  
  .thought-bubble-card p {
    font-size: 0.8rem;
  }
  
  .thought-bubble-2 {
    bottom: 30px;
    left: 30px;
  }
  
  .thought-bubble-3 {
    bottom: 30px;
    right: 30px;
  }
}

@media (max-width: 480px) {
  .butler-circle-container {
    width: 300px;
    height: 300px;
  }
  
  .butler-mascot-img {
    width: 60px;
    height: 60px;
  }
  
  .thought-bubble-card {
    width: 120px;
    padding: 12px;
  }
  
  .bubble-icon {
    width: 40px;
    height: 40px;
  }
  
  .bubble-icon i {
    font-size: 1rem;
  }
  
  .thought-bubble-card h3 {
    font-size: 0.9rem;
  }
  
  .thought-bubble-card p {
    font-size: 0.75rem;
  }
  
  .thought-bubble-2 {
    bottom: 20px;
    left: 20px;
  }
  
  .thought-bubble-3 {
    bottom: 20px;
    right: 20px;
  }
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--secondary-light);
}

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

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 1rem 0;
}

.feature-card p {
  color: var(--secondary-dark);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.feature-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-badge.free {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.feature-badge.premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.cta-content p {
  font-size: 1.25rem;
  margin: 0 0 2rem 0;
  opacity: 0.9;
}

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

/* ===== AUTH MODALS ===== */
.auth-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

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

.auth-modal.modal-hidden {
  display: none;
}

.auth-modal-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.auth-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-400);
  transition: var(--transition);
}

.auth-close:hover {
  color: var(--gray-600);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--secondary-dark);
  margin: 0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--secondary-dark);
}

.form-group input {
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

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

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Device Login Buttons */
.device-login-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-mobile {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  flex: 1;
  transition: all 0.3s ease;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

.btn-mobile:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-desktop {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  flex: 1;
  transition: all 0.3s ease;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}

.btn-desktop:hover {
  background: linear-gradient(135deg, #e085e8 0%, #e04a5f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 147, 251, 0.4);
}

.btn-mobile:disabled,
.btn-desktop:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.auth-footer p {
  margin: 0;
  color: var(--secondary-dark);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 500;
}

.auth-error {
  background: var(--error);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Additional auth modal styles */
.auth-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-logo img {
  height: 2rem;
  width: auto;
}

.auth-logo span {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.auth-modal-body {
  width: 100%;
}

.auth-welcome {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.auth-welcome h2 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.auth-welcome p {
  color: var(--secondary-dark);
  margin: 0;
  font-size: 0.95rem;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-300);
}

.auth-divider span {
  background: white;
  padding: 0 1rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.auth-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.auth-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.auth-submit {
  width: 100%;
  margin-top: 1rem;
}

/* Subscription Cards Styling */
.subscription-label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--secondary-dark);
  font-size: 1rem;
}

.subscription-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.subscription-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.subscription-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.subscription-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.subscription-card.selected::before {
  content: '✓';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.card-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-dark);
}

.card-description {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.total-cost {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--secondary-dark);
}

.total-cost span {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Select dropdown styling */
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  background-color: white;
  color: var(--secondary-dark);
  transition: var(--transition);
  cursor: pointer;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select:hover {
  border-color: var(--primary-light);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-menu {
    display: none !important;
    position: fixed !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--white) !important;
    flex-direction: column !important;
    padding: var(--space-6) !important;
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: var(--transition-slow) !important;
    z-index: 999 !important;
  }
  
  .nav-menu.active {
    display: flex !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: var(--space-3);
    min-height: var(--touch-target-min);
    font-size: 1rem;
  }
  
  .nav-toggle {
    display: flex !important;
    min-height: var(--touch-target-min);
    padding: var(--space-2);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
  }
  
  /* Mobile navigation menu */
  .mobile-nav {
    display: none !important;
    position: fixed !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--white) !important;
    flex-direction: column !important;
    padding: var(--space-6) !important;
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: var(--transition-slow) !important;
    z-index: 999 !important;
  }
  
  .mobile-nav.active {
    display: flex !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-600);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Mobile Hero Section */
  .hero-container {
    gap: 2rem;
    text-align: center;
    padding: 0 var(--mobile-padding);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .hero-description {
    font-size: clamp(1rem, 4vw, 1.1rem);
    line-height: 1.5;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: var(--mobile-spacing);
  }
  
  .hero-features {
    gap: var(--mobile-spacing);
  }
  
  .feature-item {
    padding: var(--mobile-spacing);
    font-size: var(--mobile-font-size);
  }
  
  /* Mobile Buttons */
  .btn-large {
    width: 100%;
    max-width: 300px;
    min-height: var(--touch-target-ideal);
    padding: var(--space-4) var(--space-6);
    font-size: 1rem;
  }
  
  /* Mobile Grid Layouts */
  .steps-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--mobile-spacing);
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: var(--mobile-spacing);
  }
  
  /* Mobile Visual Elements */
  .hero-visual {
    order: -1;
  }
  
  .mobile-phone-container {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .mobile-phone-img {
    width: 100%;
    height: auto;
  }
  
  .hero-card {
    margin-top: var(--mobile-spacing);
    padding: var(--mobile-spacing);
  }
  
  /* Mobile Container */
  .container {
    padding: 0 var(--mobile-padding);
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile Optimization */
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }
  
  .hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
  
  .section-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .cta-content h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .auth-modal-content {
    padding: 1rem;
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
  
  /* Extra Small Mobile Buttons */
  .btn-large {
    min-height: var(--touch-target-ideal);
    padding: var(--space-3) var(--space-4);
    font-size: 0.95rem;
  }
  
  /* Extra Small Mobile Spacing */
  .hero-container {
    padding: 0 0.75rem;
  }
  
  .container {
    padding: 0 0.75rem;
  }
  
  /* Extra Small Mobile Navigation */
  .nav-menu {
    padding: var(--space-4);
  }
  
  .nav-link {
    padding: var(--space-2) var(--space-3);
    font-size: 0.95rem;
  }
}

/* ===== SUBSCRIPTION SECTION STYLES ===== */
.subscription-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
}

/* ===== MOBILE OPTIMIZATION ===== */
/* Mobile viewport height fix */
@supports (-webkit-touch-callout: none) {
  .hero-section {
    min-height: -webkit-fill-available;
  }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-container {
    gap: 1rem;
  }
  
  .hero-content {
    gap: 1rem;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }
  
  .nav-link:hover {
    transform: none;
  }
  
  .feature-item:hover {
    transform: none;
  }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  * {
    animation-duration: 0.2s !important;
    transition-duration: 0.2s !important;
  }
  
  /* Optimize images for mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Ensure proper text sizing */
  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

.subscription-section h3 {
  margin: 0 0 1rem 0;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.subscription-options {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.subscription-option {
  position: relative;
}

.subscription-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.subscription-label {
  display: block;
  padding: 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--surface);
}

.subscription-option input[type="radio"]:checked + .subscription-label {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

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

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

.plan-header h4 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.plan-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

.subscription-label p {
  margin: 0 0 1rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.subscription-label ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.subscription-label li {
  margin-bottom: 0.3rem;
}

/* Form Row for side-by-side inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .subscription-options {
    grid-template-columns: 1fr;
  }
  
  /* Mobile phone responsive styles */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .mobile-phone-img {
    max-width: 250px;
  }
  
  /* Show header on mobile for index page */
  .index-page .main-header {
    display: block !important;
  }
  
  /* Show mobile auth buttons */
  .mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  
  /* Hide desktop hero actions on mobile */
  .hero-actions {
    display: none;
  }
  
  /* Mobile auth button styles */
  .btn-mobile {
    width: 100%;
    max-width: 300px;
    min-height: 44px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    color: inherit;
  }
  
  .btn-mobile.btn-primary {
    background: var(--primary);
    color: var(--white);
  }
  
  .btn-mobile.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
  }
  
  .btn-mobile.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-mobile.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
  }
}

@media (max-width: 480px) {
  .mobile-phone-img {
    max-width: 200px;
  }
  

}

/* ===== PREMIUM UPGRADE BADGE SECTION ===== */
.premium-upgrade-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

/* ===== TIER COMPARISON MATRIX SECTION ===== */
.tier-matrix-section {
  padding: 6rem 0;
  background: var(--gray-50);
  position: relative;
}

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

.tier-matrix-section .section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.tier-matrix-section .section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.tier-matrix {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.matrix-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.tier-column-header {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  position: relative;
}

.tier-column-header:last-child {
  border-right: none;
}

.tier-column-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.tier-duration {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.trial-badge {
  background: linear-gradient(135deg, var(--warning) 0%, #f97316 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.premium-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.tier-column-header.trial {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
}

.tier-column-header.premium {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.matrix-features {
  border-bottom: 1px solid var(--gray-200);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.feature-row:hover {
  background: var(--gray-50);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-name {
  padding: 1.5rem 2rem;
  font-weight: 600;
  color: var(--gray-900);
  border-right: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
}

.feature-value {
  padding: 1.5rem 2rem;
  text-align: center;
  font-weight: 500;
  color: var(--gray-700);
  border-right: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-value:last-child {
  border-right: none;
}

.feature-value:first-of-type {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.matrix-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 2rem;
  gap: 1rem;
  background: var(--gray-50);
}

.tier-action {
  text-align: center;
}

.tier-action .btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tier-action .btn-outline {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.tier-action .btn-outline:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  transform: translateY(-2px);
}

.tier-action .btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.tier-action .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.tier-action .btn-premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border: 2px solid var(--primary);
}

.tier-action .btn-premium:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Responsive for Tier Matrix */
@media (max-width: 768px) {
  .tier-matrix-section .section-header h2 {
    font-size: 2rem;
  }
  
  .tier-matrix-section .section-header p {
    font-size: 1rem;
  }
  
  .matrix-header {
    grid-template-columns: 1fr;
  }
  
  .tier-column-header {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .tier-column-header:last-child {
    border-bottom: none;
  }
  
  .feature-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  
  .feature-name {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .feature-value {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
  }
  
  .feature-value:last-child {
    border-bottom: none;
  }
  
  .matrix-actions {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .tier-action .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

.premium-upgrade-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="premium-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23premium-pattern)"/></svg>');
  pointer-events: none;
}

.premium-badge {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 4rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.premium-badge-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

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

.premium-mascot-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  border: 4px solid var(--primary-light);
}

.premium-mascot-img:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: var(--shadow-xl);
}

.premium-badge-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  font-family: var(--font-display);
}

.premium-badge-text p {
  font-size: 1.25rem;
  color: var(--secondary-dark);
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
  font-weight: 500;
}

.premium-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.premium-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.premium-feature:hover {
  transform: translateX(8px);
  background: var(--accent-light);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.premium-feature i {
  color: var(--success);
  font-size: 1.25rem;
  width: 1.5rem;
  text-align: center;
}

.premium-feature span {
  font-weight: 600;
  color: var(--secondary-dark);
  font-size: 1.1rem;
}

.btn-premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-premium:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
  padding: 4rem 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  background: var(--primary-light);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--secondary-dark);
  font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.stars i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--secondary-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 0.25rem 0;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
}

/* ===== PREMIUM SHOWCASE SECTION ===== */
.premium-showcase {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  position: relative;
  overflow: hidden;
}

.premium-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="showcase-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23showcase-pattern)"/></svg>');
  pointer-events: none;
}

.premium-showcase-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.premium-showcase-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 1rem 0;
}

.premium-showcase-text p {
  font-size: 1.25rem;
  color: var(--secondary-dark);
  margin: 0 0 3rem 0;
  line-height: 1.6;
}

.premium-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.95);
}

.benefit-item i {
  font-size: 1.5rem;
  color: var(--primary);
  width: 2rem;
  text-align: center;
  margin-top: 0.25rem;
}

.benefit-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 0.5rem 0;
}

.benefit-item p {
  font-size: 1rem;
  color: var(--secondary-dark);
  margin: 0;
  line-height: 1.5;
}

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

.premium-showcase-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  transition: transform 0.3s ease;
}

.premium-showcase-img:hover {
  transform: scale(1.05);
}

/* ===== BUTLER CIRCLE CONTAINER STYLES ===== */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.how-it-works-step {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.how-it-works-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
}

.step-icon {
  margin-bottom: 2rem;
}

.step-icon i {
  font-size: 3rem;
  color: var(--primary);
  background: var(--primary-light);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.how-it-works-step:hover .step-icon i {
  transform: scale(1.1);
  background: var(--accent-light);
}

.how-it-works-step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 1rem 0;
}

.how-it-works-step p {
  font-size: 1.1rem;
  color: var(--secondary-dark);
  margin: 0;
  line-height: 1.6;
}

.butler-circle-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  margin: 2rem 0;
}

.central-butler {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.butler-mascot-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
  background: white;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.butler-mascot-img:hover {
  transform: scale(1.1);
}

.thought-bubble-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.1);
  max-width: 280px;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.thought-bubble-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.2);
}

.thought-bubble-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.thought-bubble-2 {
  bottom: 0;
  left: 20%;
  animation-delay: 2s;
}

.thought-bubble-3 {
  bottom: 0;
  right: 20%;
  animation-delay: 4s;
}

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

.bubble-icon {
  margin-bottom: 1rem;
}

.bubble-icon i {
  font-size: 2rem;
  color: var(--primary);
  background: var(--primary-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.bubble-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 0.75rem 0;
}

.bubble-content p {
  font-size: 0.95rem;
  color: var(--secondary-dark);
  margin: 0;
  line-height: 1.5;
}

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

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
  .premium-badge-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .premium-mascot-img {
    width: 120px;
    height: 120px;
  }
  
  .premium-badge-text h3 {
    font-size: 2rem;
  }
  
  .premium-badge-text p {
    font-size: 1.1rem;
  }
  
  .premium-badge {
    padding: 3rem 2rem;
    margin: 0 1rem;
  }
  
  .premium-features-list {
    gap: 1rem;
  }
  
  .premium-feature {
    padding: 0.875rem 1.25rem;
  }
  
  .premium-feature span {
    font-size: 1rem;
  }
  
  .btn-premium {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .premium-showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .premium-showcase-img {
    width: 150px;
    height: 150px;
  }
  
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .how-it-works-step {
    padding: 2rem 1.5rem;
  }
  
  .step-icon {
    margin-bottom: 1.5rem;
  }
  
  .step-icon i {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
  }
  
  .how-it-works-step h3 {
    font-size: 1.3rem;
  }
  
  .how-it-works-step p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .premium-badge {
    padding: 2rem 1.5rem;
  }
  
  .premium-badge-text h3 {
    font-size: 1.25rem;
  }
  
  .premium-showcase-text h2 {
    font-size: 2rem;
  }
  
  .benefit-item {
    padding: 1rem;
    gap: 1rem;
  }
  
  .benefit-item i {
    font-size: 1.2rem;
  }
  
  .benefit-item h4 {
    font-size: 1.1rem;
  }
}

/* ===== FEATURE HIGHLIGHTS ===== */
.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  justify-content: center;
}

.highlight {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.premium-feature {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  position: relative;
  overflow: hidden;
}

.premium-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #667eea 50%, var(--primary) 100%);
}

.premium-feature .feature-icon i {
  background: linear-gradient(135deg, var(--primary) 0%, #667eea 100%);
  color: white;
}

.premium-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.2);
  border-color: #667eea;
}

.premium-feature .feature-badge {
  background: linear-gradient(135deg, var(--primary) 0%, #667eea 100%);
  color: white;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* ===== ENHANCED FEATURE CARDS ===== */
.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  background: var(--primary-light);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1);
}

.feature-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-badge.free {
  background: #e8f5e8;
  color: #2d5a2d;
}

.feature-badge.premium {
  background: var(--primary-light);
  color: var(--primary);
}

/* ===== PREMIUM SCREENSHOT SECTION ===== */
.premium-screenshot {
  position: relative;
  margin: 4rem 0;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(37, 99, 235, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.premium-screenshot:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.premium-demo-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}

.premium-demo-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.screenshot-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(37, 99, 235, 0.95);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  text-align: center;
  max-width: 400px;
  opacity: 0;
  transition: var(--transition-slow);
}

.premium-screenshot:hover .screenshot-overlay {
  opacity: 1;
}

.screenshot-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.screenshot-overlay p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* ===== SCREENSHOT POPUP MODAL ===== */
.screenshot-popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}

.screenshot-popup.modal-visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-popup.modal-hidden {
  display: none;
}

.screenshot-popup-content {
  background: var(--white);
  margin: auto;
  padding: 0;
  border-radius: var(--radius-2xl);
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
}

.screenshot-popup-header {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.screenshot-popup-close {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  color: var(--gray-600);
}

.screenshot-popup-close:hover {
  background: var(--white);
  color: var(--error);
  transform: scale(1.1);
}

.screenshot-popup-body {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}

.screenshot-popup-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.screenshot-popup-mascot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.screenshot-popup-body h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.screenshot-popup-body p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.screenshot-popup-body .btn-premium {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.screenshot-popup-body .btn-premium:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

@media (max-width: 768px) {
  .premium-screenshot {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
  
  .screenshot-overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 1.5rem;
    opacity: 1;
    max-width: 100%;
  }
  
  .screenshot-popup-content {
    width: 95%;
    margin: 1rem;
  }
  
  .screenshot-popup-body {
    padding: 2rem 1.5rem;
  }
  
  .screenshot-popup-body h3 {
    font-size: 1.5rem;
  }
  
  .screenshot-popup-body p {
    font-size: 1rem;
  }
  
  .screenshot-popup-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .screenshot-popup-icon i {
    font-size: 2rem;
  }
}

/* ===== INDEX HEADER STYLES - REMOVED ===== */
/* Header removed from index page to eliminate redundancy */

.device-login-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
  text-align: center;
}

.device-login-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

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

.btn-mobile:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

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

/* Hero device login section */
.hero-device-login {
  border-top: none;
  margin-top: 2rem;
  padding-top: 0;
  display: block;
}

.hero-device-login h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Mobile auth buttons - hidden by default on desktop */
.mobile-auth-buttons {
  display: none;
}

/* Desktop auth buttons - hidden by default */
.hero-actions {
  display: none;
  gap: 1rem;
  margin-top: 2rem;
}

/* Mobile styles for index page - header removed */
@media (max-width: 768px) {
  /* Header styles removed - no longer needed */
  
  /* Hero section - no header margin needed */
  .hero-section {
    margin-top: 0;
  }
  
  /* Show hero device login on mobile */
  .hero-device-login {
    display: block;
  }
  
  /* Hide desktop auth buttons on mobile */
  .hero-actions {
    display: none;
  }
  
  /* Show mobile auth buttons on mobile */
  .mobile-auth-buttons {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .mobile-auth-buttons .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
  }
}
