/* ===== CSS Variables ===== */
:root {
  --primary: #0f2cff;
  --primary-light: #3b82f6;
  --primary-dark: #0a1c9a;
  --secondary: #f1f5f9;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --destructive: #ef4444;
  --destructive-light: #fef2f2;
  --success: #22c55e;
  --success-light: #f0fdf4;
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --gradient-hero: linear-gradient(135deg, #0f2cff 0%, #3b82f6 100%);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font-family: inherit; font-size: inherit; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--muted); }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.header.scrolled .logo { color: var(--foreground); }

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  border-radius: var(--radius-md);
  color: white;
}

.nav {
  display: none;
  gap: 0.5rem;
}

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

.nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.header.scrolled .nav a { color: var(--muted-foreground); }
.nav a:hover, .nav a.active { color: white; background: rgba(255,255,255,0.1); }
.header.scrolled .nav a:hover, .header.scrolled .nav a.active { color: var(--primary); background: rgba(15,44,255,0.1); }

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 0.5rem;
}

.header.scrolled .mobile-toggle { color: var(--foreground); }

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.nav.open {
  display: flex;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.5rem;
  z-index: 99;
}

.nav.open a {
  color: var(--foreground);
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.nav.open a:hover { background: var(--muted); }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 52rem;
  padding: 3rem 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title .gradient {
  display: block;
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.9);
  max-width: 38rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

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

.hero-buttons .btn { padding: 1rem 2rem; font-size: 1rem; font-weight: 600; border-radius: 0.5rem; transition: all 0.3s; }

/* ===== Slideshow Indicators ===== */
.hero-indicators {
  position: absolute;
  bottom: 8.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.hero-indicator {
  width: 3rem;
  height: 0.25rem;
  background: rgba(255,255,255,0.4);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-indicator:hover { background: rgba(255,255,255,0.6); }

.hero-indicator.active { background: white; width: 4rem; }

/* ===== Stats ===== */
.hero-stats {
  position: relative;
  z-index: 20;
  margin-top: 1rem;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

.hero-stat { padding: 2.5rem 1.5rem; text-align: center; }

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

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

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.header.scrolled .btn-outline { color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.header.scrolled .btn-outline:hover { background: rgba(15,44,255,0.1); }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1.125rem; }

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

/* ===== Product Cards ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f5f5f5;
}

.product-body { padding: 1.25rem; }

.product-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.product-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body { padding: 1.5rem; }

.service-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.service-link:hover { gap: 0.75rem; }

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--gradient-hero);
  padding: 5rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
}

.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

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

.cta-buttons .btn-primary:hover { background: rgba(255,255,255,0.9); }

.cta-buttons .btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.cta-buttons .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ===== Footer ===== */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-contact p { font-size: 0.875rem; }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Page Hero ===== */
.page-hero {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  margin-top: 5rem;
  color: white;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin: 0.75rem 0;
}

.page-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 48rem;
  margin: 0 auto;
}

/* ===== Bullet List ===== */
.bullet-list { display: flex; flex-direction: column; gap: 1rem; }

.bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  color: var(--foreground);
}

.check-icon { color: var(--success); flex-shrink: 0; }

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }

.value-card h3 { font-size: 1.25rem; font-weight: 600; margin: 0.75rem 0; }
.value-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ===== Capabilities ===== */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cap-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.cap-card h3 { font-size: 1.125rem; font-weight: 600; margin: 0.75rem 0; }

/* ===== Projects ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-body { padding: 1.5rem; }

.project-body h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.project-body p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.project-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--muted-foreground); }

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,44,255,0.1);
}

textarea.form-input { min-height: 120px; resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
}

.contact-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== Admin Styles ===== */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 250px;
  background: #1e293b;
  color: white;
  padding: 1.5rem;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar nav { display: flex; flex-direction: column; gap: 0.5rem; }

.admin-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.admin-nav-link:hover, .admin-nav-link.active { background: rgba(255,255,255,0.1); color: white; }

.admin-main {
  margin-left: 250px;
  padding: 2rem;
  flex: 1;
  background: #f1f5f9;
}

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

.admin-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f2cff 0%, #3b82f6 100%);
}

.login-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
}

.login-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.admin-form-group { margin-bottom: 1.25rem; }

.admin-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #334155;
}

.admin-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.admin-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.admin-btn {
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.admin-btn:hover { background: #2563eb; }

.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid, .services-grid, .products-grid, .process-grid, .values-grid, .caps-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:first-child, .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border-light); }
  .hero-indicators { bottom: 5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .admin-main { margin-left: 0; }
  .admin-layout { flex-direction: column; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero { height: 60vh; min-height: 400px; }
  .section { padding: 3rem 0; }
  .features-grid, .services-grid, .products-grid, .process-grid, .values-grid, .caps-grid, .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-indicators { bottom: 5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .admin-main { margin-left: 0; }
  .admin-layout { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-stat { padding: 1.5rem 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
