/* ==========================================================================
   LEPOCO ERP - Premium Landing Page & Auth Stylesheet
   ========================================================================== */

:root {
  /* Premium Dark Theme Variables (Landing Page Hero & Auth UI) */
  --premium-bg-dark: #0b0f19;
  --premium-radial-bg: radial-gradient(circle at 80% 20%, #172554 0%, #030712 100%);
  --premium-text-glow: rgba(59, 130, 246, 0.5);
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-focus: rgba(59, 130, 246, 0.4);
  --glass-blur: blur(24px);
  --glass-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   1. LANDING PAGE NAVBAR
   ========================================================================== */

.landing-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem 0;
}

/* Transparent starting state, updates on scroll */
.navbar-premium-glass {
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.navbar-scrolled {
  background-color: rgba(3, 7, 18, 0.75) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 0.85rem 0 !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.landing-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.landing-brand i {
  color: #3b82f6;
  text-shadow: 0 0 12px var(--premium-text-glow);
}

.nav-link-landing {
  color: #94a3b8 !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

.nav-link-landing:hover,
.nav-link-landing.active {
  color: #ffffff !important;
}

.btn-premium-cta {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-premium-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-premium-cta-outline {
  background: transparent;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-premium-cta-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */

.premium-hero {
  min-height: 100vh;
  background: var(--premium-radial-bg);
  background-color: var(--premium-bg-dark);
  padding: 180px 0 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Glow effects in the background */
.premium-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.premium-hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}

.hero-h1-premium {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.text-blue-glow {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

.hero-desc {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 580px;
}

/* ==========================================================================
   3. FLOATING HERO DASHBOARD (GLASSMOPRHISM MOCKUP)
   ========================================================================== */

.glass-card-floating {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--glass-shadow);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  /* GPU acceleration variables */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.glass-card-floating:hover {
  transform: translateY(-6px) scale(1.01) translateZ(0);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.glass-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.glass-card-dot-red { background-color: #ef4444; }
.glass-card-dot-yellow { background-color: #f59e0b; }
.glass-card-dot-green { background-color: #10b981; }

.glass-card-title {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.glass-card-body img {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Keep resolution high when transforming */
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
}

.glass-divider {
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
  align-self: center;
}

.glass-stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  font-weight: 600;
}

.glass-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1;
}

.glass-progress-rail {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.glass-progress-bar {
  height: 100%;
  background: linear-gradient(to right, #3b82f6, #10b981);
  border-radius: 10px;
}

.glass-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ==========================================================================
   4. FEATURES SECTION
   ========================================================================== */

.section-padding {
  padding: 100px 0;
}

.bg-light-slate {
  background-color: #f8fafc;
}

.section-title-area {
  margin-bottom: 60px;
  text-align: center;
}

.section-subtitle {
  color: #3b82f6;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: #0f172a;
}

.section-desc {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 16px auto 0 auto;
}

.feature-box-premium {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-box-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.feature-icon-blue {
  background-color: #eff6ff;
  color: #3b82f6;
}

.feature-icon-green {
  background-color: #ecfdf5;
  color: #10b981;
}

.feature-icon-orange {
  background-color: #fffbeb;
  color: #f59e0b;
}

.feature-icon-purple {
  background-color: #faf5ff;
  color: #a855f7;
}

.feature-box-premium h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-box-premium p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   5. HOW IT WORKS
   ========================================================================== */

.step-card-active {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb !important;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-number-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.8rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step-title-premium {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.step-desc-premium {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.step-graphic-premium {
  background-color: #0f172a;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.step-illustration-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: var(--glass-blur);
}

/* ==========================================================================
   6. FAQ & CONTACT
   ========================================================================== */

.accordion-landing {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: #e2e8f0;
  --bs-accordion-btn-color: #0f172a;
  --bs-accordion-active-color: #2563eb;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-landing .accordion-item {
  border: none;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0 !important;
}

.accordion-landing .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 0;
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-landing .accordion-button:not(.collapsed) {
  color: #2563eb;
}

.accordion-landing .accordion-body {
  padding: 0 0 24px 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-premium {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.form-premium .form-label-custom {
  font-weight: 600;
  color: #334155;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.form-premium .form-control-custom {
  border: 1px solid #cbd5e1;
  background-color: #f8fafc;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.form-premium .form-control-custom:focus {
  background-color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */

.themed-footer {
  background-color: #030712;
  color: #94a3b8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.themed-footer-h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-area i {
  color: #3b82f6;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.ghost-watermark {
  position: absolute;
  bottom: -20px;
  right: -5%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.015);
  user-select: none;
  pointer-events: none;
}

/* ==========================================================================
   8. AUTH PAGES (LOGIN / SIGNUP)
   ========================================================================== */

.auth-wrapper {
  min-height: 100vh;
  background: var(--premium-radial-bg);
  background-color: var(--premium-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

/* Float visual glow cards behind auth card */
.auth-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.auth-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  box-shadow: var(--glass-shadow);
  z-index: 10;
  position: relative;
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 8px;
}

.auth-brand i {
  color: #3b82f6;
  text-shadow: 0 0 12px var(--premium-text-glow);
}

.auth-subtitle {
  color: #94a3b8;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 32px;
}

.auth-tab-group {
  display: flex;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
}

.auth-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn.active {
  background-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.auth-form-group {
  margin-bottom: 20px;
}

.auth-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.auth-input-wrapper {
  position: relative;
}

.auth-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1rem;
}

.auth-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px 12px 42px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.auth-input:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.auth-input-password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.auth-input-password-toggle:hover {
  color: #cbd5e1;
}

.auth-forgot {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: #60a5fa;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.auth-forgot:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.btn-auth-submit {
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-auth-submit:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-divider:not(:empty)::before {
  margin-right: .75em;
}

.auth-divider:not(:empty)::after {
  margin-left: .75em;
}

.btn-google-auth {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-google-auth:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.auth-back-btn {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.auth-back-btn:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   9. OTP FLOW / FORGOT PASSWORD SPECIFICS
   ========================================================================== */

.otp-container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 0;
}

.otp-input {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s ease;
  outline: none;
}

.otp-input:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Password strength indicator bar */
.password-strength-rail {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
  display: flex;
  gap: 2px;
}

.password-strength-chunk {
  flex: 1;
  height: 100%;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.strength-weak .password-strength-chunk:nth-child(1) { background-color: #ef4444; }
.strength-medium .password-strength-chunk:nth-child(1),
.strength-medium .password-strength-chunk:nth-child(2) { background-color: #f59e0b; }
.strength-strong .password-strength-chunk { background-color: #10b981; }

.password-strength-desc {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 6px;
  font-weight: 500;
}

/* ==========================================================================
   10. MOBILE & RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
  .hero-h1-premium {
    font-size: 2.8rem;
  }
  .glass-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 24px 0;
  }
  .premium-hero {
    padding: 140px 0 80px 0;
  }
}

@media (max-width: 768px) {
  .hero-h1-premium {
    font-size: 2.3rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .auth-card {
    padding: 24px;
  }
  .otp-input {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
