/* =====================================================
   MrX Robotics - PREMIUM DESIGN ENHANCEMENTS
   Modern, Polished, Professional Styling
   ===================================================== */

/* =====================================================
   ENHANCED GLOBAL STYLES
   ===================================================== */

/* Smooth scroll & better typography */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #ffffff;
  color: #1a1a2e;
}

/* Premium Selection */
::selection {
  background: rgba(200, 16, 46, 0.15);
  color: #1a1a2e;
}

/* =====================================================
   PREMIUM HERO SECTIONS
   ===================================================== */

.premium-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.premium-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(200, 16, 46, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.premium-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.2), transparent);
}

/* =====================================================
   PREMIUM CARDS
   ===================================================== */

.premium-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 12px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 0 0 1px rgba(200, 16, 46, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.08);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8102E, #ff6b6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover::before {
  transform: scaleX(1);
}

/* =====================================================
   PREMIUM BUTTONS
   ===================================================== */

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-premium-primary {
  background: linear-gradient(135deg, #C8102E 0%, #a00d24 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-premium-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
}

.btn-premium-secondary {
  background: #ffffff;
  color: #1a1a2e;
  border: 2px solid #e5e7eb;
}

.btn-premium-secondary:hover {
  border-color: #C8102E;
  color: #C8102E;
  transform: translateY(-2px);
}

/* Button ripple effect */
.btn-premium::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.5s;
}

.btn-premium:active::after {
  transform: scale(2);
  opacity: 0;
  transition: 0s;
}

/* =====================================================
   PREMIUM SECTION HEADERS
   ===================================================== */

.section-header-premium {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-premium .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #C8102E;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-header-premium .section-eyebrow::before,
.section-header-premium .section-eyebrow::after {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #C8102E, transparent);
}

.section-header-premium .section-eyebrow::after {
  background: linear-gradient(90deg, transparent, #C8102E);
}

.section-header-premium h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header-premium p {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   PREMIUM FORM STYLES
   ===================================================== */

.premium-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 25px 50px rgba(0, 0, 0, 0.08);
}

.premium-form .form-group {
  margin-bottom: 24px;
}

.premium-form label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 8px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1a1a2e;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  outline: none;
  border-color: #C8102E;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
  color: #9ca3af;
}

/* =====================================================
   PREMIUM TABLE STYLES
   ===================================================== */

.premium-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 10px 40px rgba(0, 0, 0, 0.08);
}

.premium-table thead {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
}

.premium-table th {
  padding: 20px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0.5px;
}

.premium-table td {
  padding: 20px 24px;
  font-size: 0.95rem;
  color: #4b5563;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s;
}

.premium-table tbody tr:hover {
  background: #f9fafb;
}

.premium-table tbody tr:last-child td {
  border-bottom: none;
}

/* =====================================================
   PREMIUM PRICING/DISCOUNT BADGES
   ===================================================== */

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.discount-badge.tier-1 {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
}

.discount-badge.tier-2 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}

.discount-badge.tier-3 {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #6d28d9;
}

.discount-badge.tier-4 {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #b45309;
  border: 2px solid #f59e0b;
}

/* =====================================================
   PREMIUM FEATURE GRID
   ===================================================== */

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.premium-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f3f4f6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.premium-feature-card .feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #ffffff;
  position: relative;
}

.premium-feature-card .feature-icon.gradient-red {
  background: linear-gradient(135deg, #C8102E 0%, #ff6b6b 100%);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
}

.premium-feature-card .feature-icon.gradient-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.premium-feature-card .feature-icon.gradient-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.premium-feature-card .feature-icon.gradient-green {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.premium-feature-card .feature-icon.gradient-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.premium-feature-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.premium-feature-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* =====================================================
   PREMIUM STATS ROW
   ===================================================== */

.premium-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.premium-stat {
  text-align: center;
}

.premium-stat .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #C8102E;
  line-height: 1;
  margin-bottom: 8px;
}

.premium-stat .stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* =====================================================
   PREMIUM CTA SECTION
   ===================================================== */

.premium-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.premium-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.premium-cta .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.premium-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.premium-cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.premium-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* =====================================================
   PREMIUM BREADCRUMB
   ===================================================== */

.premium-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.premium-breadcrumb a {
  color: #6b7280;
  transition: color 0.2s;
}

.premium-breadcrumb a:hover {
  color: #C8102E;
}

.premium-breadcrumb i {
  font-size: 0.7rem;
  color: #d1d5db;
}

.premium-breadcrumb span {
  color: #1a1a2e;
  font-weight: 600;
}

/* =====================================================
   PREMIUM ANIMATIONS
   ===================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.5s ease forwards;
}

/* Staggered animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* =====================================================
   PREMIUM HOVER EFFECTS
   ===================================================== */

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(200, 16, 46, 0.2);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* =====================================================
   PREMIUM GLASSMORPHISM
   ===================================================== */

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */

@media (max-width: 992px) {
  .section-header-premium h2 {
    font-size: 2.25rem;
  }
  
  .premium-stats {
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .premium-stat .stat-number {
    font-size: 2.5rem;
  }
  
  .premium-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .premium-form {
    padding: 32px 24px;
  }
  
  .section-header-premium h2 {
    font-size: 1.875rem;
  }
  
  .premium-stats {
    gap: 30px;
    padding: 40px 20px;
  }
  
  .premium-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .premium-card {
    padding: 28px;
  }
  
  .premium-feature-card {
    padding: 28px 20px;
  }
  
  .btn-premium {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* =====================================================
   ADDITIONAL PREMIUM ENHANCEMENTS
   ===================================================== */

/* Section Padding Utility Classes */
.section-padding-lg {
  padding: 80px 0;
}

.section-padding-md {
  padding: 60px 0;
}

.section-padding-sm {
  padding: 40px 0;
}

/* Premium Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, #C8102E 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Divider */
.premium-divider {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, #C8102E, #ff6b6b);
  border-radius: 2px;
  margin: 20px auto;
}

/* Premium Badge */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C8102E 0%, #a00d24 100%);
  color: #ffffff;
}

/* Premium Icon Box */
.premium-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.1) 0%, rgba(200, 16, 46, 0.05) 100%);
  color: #C8102E;
  margin-bottom: 20px;
}

/* Premium Quote */
.premium-quote {
  position: relative;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 20px;
  border-left: 4px solid #C8102E;
}

.premium-quote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(200, 16, 46, 0.1);
  line-height: 1;
}

/* Premium List Styles */
.premium-list {
  list-style: none;
  padding: 0;
}

.premium-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: #4b5563;
}

.premium-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #C8102E 0%, #ff6b6b 100%);
  border-radius: 50%;
  opacity: 0.2;
}

.premium-list li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 5px;
  font-size: 0.75rem;
  color: #C8102E;
  font-weight: bold;
}

/* Premium Tooltip */
.premium-tooltip {
  position: relative;
  cursor: help;
}

.premium-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: #1a1a2e;
  color: #ffffff;
  font-size: 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.premium-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 8px);
}

/* Premium Progress Bar */
.premium-progress {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.premium-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #C8102E, #ff6b6b);
  border-radius: 4px;
  transition: width 0.6s ease;
}

/* Premium Tag Cloud */
.premium-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-tag {
  padding: 8px 16px;
  background: #f3f4f6;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #4b5563;
  transition: all 0.3s ease;
}

.premium-tag:hover {
  background: #C8102E;
  color: #ffffff;
}

/* Premium Alert/Notice */
.premium-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.premium-alert.info {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
}

.premium-alert.success {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
}

.premium-alert.warning {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
}

.premium-alert.error {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Micro-interactions for inputs */
.premium-form input:not(:placeholder-shown):valid,
.premium-form textarea:not(:placeholder-shown):valid {
  border-color: #22c55e;
}

.premium-form input:not(:placeholder-shown):invalid,
.premium-form textarea:not(:placeholder-shown):invalid {
  border-color: #ef4444;
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid #C8102E;
  outline-offset: 2px;
}

/* Premium scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #C8102E, #a00d24);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a00d24;
}

/* =====================================================
   PREMIUM RESPONSIVE STYLES
   ===================================================== */

/* Tablets */
@media (max-width: 992px) {
  .premium-hero {
    padding: 100px 0 60px;
  }
  
  .premium-card {
    padding: 30px;
  }
  
  .premium-section {
    padding: 60px 0;
  }
  
  .premium-grid-3,
  .premium-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .premium-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .premium-hero {
    padding: 80px 0 50px;
  }
  
  .premium-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .premium-hero p {
    font-size: 1.1rem;
  }
  
  .premium-card {
    padding: 24px;
    border-radius: 16px;
  }
  
  .premium-grid-2,
  .premium-grid-3,
  .premium-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .premium-section {
    padding: 50px 0;
  }
  
  .premium-section-header h2 {
    font-size: 1.75rem;
  }
  
  .premium-section-header p {
    font-size: 1rem;
  }
  
  .premium-btn-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .premium-btn-group .btn {
    width: 100%;
  }
  
  .premium-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .premium-tabs button {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .premium-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    text-align: center;
  }
  
  .premium-stat {
    align-items: center;
  }
  
  .premium-breadcrumb {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .premium-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .premium-table {
    min-width: 600px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .premium-hero {
    padding: 70px 0 40px;
  }
  
  .premium-hero h1 {
    font-size: 1.6rem;
  }
  
  .premium-hero p {
    font-size: 1rem;
  }
  
  .premium-card {
    padding: 20px;
    border-radius: 12px;
  }
  
  .premium-card:hover {
    transform: none;
  }
  
  .premium-section {
    padding: 40px 0;
  }
  
  .premium-section-header h2 {
    font-size: 1.5rem;
  }
  
  .premium-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
  
  .premium-tooltip {
    max-width: 250px;
    font-size: 0.85rem;
  }
}
