*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary-50:  #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gray-900);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { font-size: 14px; color: var(--gray-300); max-width: 700px; }
#cookie-banner p a { color: var(--primary-400); text-decoration: underline; cursor: pointer; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--primary-500);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--primary-600); }
.btn-cookie-decline {
  background: transparent;
  color: var(--gray-400);
  border: 1px solid var(--gray-600);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cookie-decline:hover { border-color: var(--gray-400); color: var(--white); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary-600); }
.nav-cta {
  background: var(--primary-600);
  color: white !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--primary-700) !important; color: white !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 5vw 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
}

/* ── SECTIONS ── */
section { padding: 96px 5vw; }
.container { max-width: 1100px; margin: 0 auto; }

/* ── HERO ── */
#hero {
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(145deg, var(--primary-900) 0%, var(--primary-700) 60%, var(--primary-500) 100%);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--primary-200);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--primary-300); }
.hero-sub {
  font-size: 18px;
  color: var(--primary-200);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary-700);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); background: var(--primary-50); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* Hero Screenshot (Image) */
.dashboard-screenshot-wrapper{
  width: 100%;
  max-width: 640px;                /* vorher z.B. 520px */
  position: relative;
  transform: translateY(6px);      /* kleine optische Zentrierung */
}

/* Subtiler Glow hinter dem Screenshot */
.dashboard-screenshot-wrapper::before{
  content: "";
  position: absolute;
  inset: -18px;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(59,130,246,0.35),
    transparent 60%
  );
  filter: blur(18px);
  z-index: 0;
}

.dashboard-screenshot{
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.35),
    0 12px 30px rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.18);
  object-fit: contain;
}

/* Optional: etwas “premium” beim Hover */
@media (hover: hover) {
  .dashboard-screenshot-wrapper{
    transition: transform 220ms ease;
  }
  .dashboard-screenshot-wrapper:hover{
    transform: translateY(2px) scale(1.01);
  }
}

/* Mobile: nicht zu dominant */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: flex;           /* falls irgendwo noch display:none gesetzt ist */
    justify-content: center; /* optional */
  }

  .dashboard-screenshot-wrapper {
    max-width: 520px;        /* kannst du lassen */
  }
}



/* ── SOCIAL PROOF ── */
#social-proof {
  padding: 48px 5vw;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.social-proof-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.social-proof-inner p { color: var(--gray-500); font-size: 14px; font-weight: 500; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.06em; }
.industry-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* ── FEATURES ── */
#features { background: white; }
.section-label {
  display: inline-block;
  color: var(--primary-600);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub { font-size: 18px; color: var(--gray-500); max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 64px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-200); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--primary-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.feature-card p  { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

/* ── HOW IT WORKS ── */
#how { background: var(--primary-900); }
#how .section-title { color: white; }
#how .section-sub   { color: var(--primary-300); }
#how .section-label { color: var(--primary-400); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}
.step-number {
  font-size: 52px;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 48px; height: 48px;
  background: var(--primary-600);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.step-card h3 { color: white; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p  { color: var(--primary-300); font-size: 15px; line-height: 1.65; }

/* ── PRICING ── */
#pricing { background: var(--gray-50); }
.pricing-wrapper { display: flex; justify-content: center; margin-top: 64px; }
.pricing-card {
  background: white;
  border: 2px solid var(--primary-500);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  text-align: center;
}
.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-500);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-name { font-size: 14px; font-weight: 700; color: var(--primary-600); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 8px; }
.price-old  { font-size: 22px; font-weight: 700; color: var(--gray-400); text-decoration: line-through; }
.price-new  { font-size: 52px; font-weight: 900; color: var(--gray-900); letter-spacing: -0.03em; }
.price-currency { font-size: 24px; font-weight: 700; color: var(--gray-700); }
.price-period { font-size: 15px; color: var(--gray-500); margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 36px; text-align: left; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--gray-700);
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--primary-500); font-size: 18px; font-weight: 700; flex-shrink: 0; }
.btn-pricing {
  display: block;
  width: 100%;
  background: var(--primary-600);
  color: white;
  padding: 15px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-pricing:hover { background: var(--primary-700); transform: translateY(-1px); }
.pricing-note { font-size: 13px; color: var(--gray-400); margin-top: 16px; }

/* ── CONTACT ── */
#kontakt { background: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; letter-spacing: -0.02em; }
.contact-info p  { color: var(--gray-500); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; color: var(--gray-700); font-size: 15px; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--primary-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-800);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--primary-600);
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { background: var(--primary-700); transform: translateY(-1px); }
.form-submit:disabled { background: var(--gray-400); cursor: not-allowed; transform: none; }
.form-note { font-size: 12px; color: var(--gray-400); margin-top: 12px; text-align: center; }
.form-note a { color: var(--primary-600); text-decoration: underline; cursor: pointer; }
#form-success { display: none; text-align: center; padding: 40px 20px; }
#form-success .success-icon { font-size: 48px; margin-bottom: 16px; }
#form-success h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
#form-success p  { color: var(--gray-500); font-size: 15px; }

/* ── FOOTER ── */
footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 5vw 32px; }
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-700);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--gray-400); text-decoration: none; font-size: 14px; cursor: pointer; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9990;
  overflow-y: auto;
  padding: 40px 20px;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  padding: 40px;
  position: relative;
  margin: auto;
  box-shadow: var(--shadow-xl);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--gray-200); }
.modal h2 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 20px; }
.modal h3 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin: 20px 0 8px; }
.modal p, .modal li { font-size: 14px; color: var(--gray-600); line-height: 1.75; }
.modal ul { padding-left: 20px; margin: 8px 0; }
.modal li { margin-bottom: 4px; }
.modal a { color: var(--primary-600); }

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--gray-900);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  z-index: 9998;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s ease;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}
#toast.show { transform: translateY(0); opacity: 1; }
#toast.error { background: #dc2626; }

/* ── DASHBOARD MOCKUP (Hero) ── */
.dashboard-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 8px 25px rgba(37,99,235,0.12);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
  max-width: 480px;
  width: 100%;
}
.dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(0deg);
}
.mockup-topbar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-url {
  background: var(--gray-100);
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  color: var(--gray-400);
}
.mockup-user {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--gray-500);
}
.mockup-avatar {
  width: 22px; height: 22px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--primary-700); font-weight: 700;
}
.mockup-body { display: flex; height: 280px; }
.mockup-sidebar {
  width: 130px;
  background: #0f172a;
  padding: 1rem 0;
  display: flex; flex-direction: column; gap: 0.25rem; flex-shrink: 0;
}
.mockup-brand {
  padding: 0.5rem 1rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.mockup-brand-icon { width: 20px; height: 20px; }
.mockup-brand-text { color: #fff; font-size: 0.85rem; font-weight: 700; }
.sidebar-item {
  padding: 0.5rem 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; color: #94a3b8;
  cursor: pointer; transition: background 0.15s;
}
.sidebar-item.active { background: var(--primary-600); color: #fff; }
.sidebar-item:not(.active):hover { background: #1e293b; }
.sidebar-icon { width: 14px; height: 14px; opacity: 0.8; }
.mockup-content {
  flex: 1;
  background: var(--gray-50);
  padding: 1rem;
  overflow: hidden;
}
.mockup-title { font-size: 0.95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.75rem; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.stat-card {
  background: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.5rem;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
}
.stat-label { font-size: 0.58rem; color: var(--gray-400); margin-bottom: 0.15rem; }
.stat-value { font-size: 1rem; font-weight: 800; color: var(--gray-800); }
.stat-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.icon-blue   { background: var(--primary-100); }
.icon-green  { background: #d1fae5; }
.icon-purple { background: #ede9fe; }
.icon-red    { background: #fee2e2; }
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.bottom-card {
  background: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--gray-200);
}
.bottom-card-title {
  font-size: 0.65rem; font-weight: 700; color: var(--gray-700);
  margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.3rem;
}
.warning-dot { width: 6px; height: 6px; background: #f59e0b; border-radius: 50%; }
.move-dot    { width: 6px; height: 6px; background: var(--primary-500); border-radius: 50%; }
.low-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.low-item:last-child { border-bottom: none; }
.low-name { font-size: 0.6rem; color: var(--gray-700); font-weight: 500; }
.low-qty  { font-size: 0.6rem; color: #ef4444; font-weight: 700; background: #fee2e2; padding: 0.1rem 0.35rem; border-radius: 4px; }
.move-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.move-item:last-child { border-bottom: none; }
.move-name  { font-size: 0.6rem; color: var(--gray-700); }
.move-badge { font-size: 0.55rem; padding: 0.1rem 0.35rem; border-radius: 4px; font-weight: 600; }
.badge-in  { background: #d1fae5; color: #065f46; }
.badge-out { background: #fee2e2; color: #991b1b; }

@media (max-width: 900px) {
  .dashboard-mockup { transform: none; max-width: 100%; }
}
@media (max-width: 600px) {
  .mockup-sidebar { width: 110px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
