/* ==========================================================================
   COTRONICS — Industrial Blueprint Design System
   Palette:  #FBF9F6 (cream) #FFFFFF (panel) #F3F4F6 (panel-light)
             #0EA5A4 (muted-teal) #FF6B35 (machine-orange) #0F1724 (text)
             #6B7280 (secondary text)
   Type:     Sora (display / technical headings) + Inter (body)
   Signature: clean, premium, warm-cream surfaces
   ========================================================================== */

:root {
  /* Light / premium palette (cream background, white panels, warm accents) */
  --graphite: #FBF9F6; /* page background - warm cream */
  --panel: #FFFFFF; /* card / panel background */
  --panel-light: #F3F4F6; /* subtle lighter panel */
  --cyan: #0EA5A4; /* muted teal accent for subtle highlights */
  --cyan-dim: #0B8B89;
  --orange: #FF6B35; /* signature warm accent (kept) */
  --orange-dim: #E2531F;
  --off-white: #0F1724; /* primary text (dark) */
  --secondary: #6B7280; /* muted secondary text */
  --border-line: #E6E6E9; /* light subtle borders */
  --success: #16A34A;
  --danger: #DC2626;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--graphite);
  color: var(--off-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--off-white);
}

a { text-decoration: none; color: var(--cyan); transition: color .2s ease; }
a:hover { color: var(--orange); }

.text-secondary-light { color: var(--secondary) !important; }

::selection { background: var(--cyan); color: var(--graphite); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.cotronics-navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-line);
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--off-white) !important;
}
.navbar-brand .brand-mark { color: var(--orange); }

.nav-spacer { height: 78px; }

.navbar-nav .nav-link {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--off-white); }
.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.15rem;
  height: 2px;
  background: var(--orange);
}

.btn-cta {
  background: var(--orange);
  border: none;
  color: #fff !important;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  letter-spacing: 0.01em;
}
.btn-cta:hover { background: var(--orange-dim); color: #fff !important; }

/* ==========================================================================
   BUTTONS (generic)
   ========================================================================== */

.btn-blueprint {
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-weight: 600;
  border-radius: 4px;
  padding: 0.65rem 1.5rem;
  letter-spacing: 0.02em;
  transition: all .2s ease;
}
.btn-blueprint:hover { background: var(--cyan); color: var(--graphite); }

.btn-machine {
  background: var(--orange);
  border: 1.5px solid var(--orange);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.65rem 1.5rem;
  letter-spacing: 0.02em;
  transition: all .2s ease;
}
.btn-machine:hover { background: var(--orange-dim); border-color: var(--orange-dim); color: #fff; }

.btn-whatsapp-action {
  background: #25D366;
  border: none;
  color: #08331a;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform .15s ease, background .2s ease;
}
.btn-whatsapp-action:hover { background: #1ebe5a; color: #08331a; transform: translateY(-1px); }

/* ==========================================================================
   SECTION / PAGE-HEADER (blueprint grid signature)
   ========================================================================== */

.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-alt { background: var(--panel); }

.eyebrow {
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

.page-header {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background:
    linear-gradient(rgba(251,249,246,0.96), rgba(251,249,246,0.98)),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(15,23,36,0.03) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(15,23,36,0.03) 39px 40px);
  border-bottom: 1px solid var(--border-line);
}
.page-header h1 { font-size: 2.6rem; }
.page-header .lead-sub { color: var(--secondary); font-size: 1.05rem; max-width: 900px; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--graphite);
  background-image:
    radial-gradient(circle at 80% 20%, rgba(14,139,136,0.08), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,107,53,0.06), transparent 40%),
    repeating-linear-gradient(0deg, transparent 0 49px, rgba(15,23,36,0.03) 49px 50px),
    repeating-linear-gradient(90deg, transparent 0 49px, rgba(15,23,36,0.03) 49px 50px);
  overflow: hidden;
  border-bottom: 1px solid var(--border-line);
}

.hero-corner-frame {
  position: absolute;
  width: 38px; height: 38px;
  border: 2px solid var(--cyan);
  opacity: 0.55;
}
.hero-corner-frame.tl { top: 90px; left: 24px; border-right: none; border-bottom: none; }
.hero-corner-frame.br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

.hero-tag {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,107,53,0.4);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 1.3rem;
}
.hero h1 .accent { color: var(--cyan); }

.hero p.lead {
  color: var(--secondary);
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--off-white);
}
.hero-stats .stat-label {
  font-size: 0.78rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  height: 460px;
  border: 1px solid var(--border-line);
  border-radius: 6px;
  background: linear-gradient(160deg, var(--panel), var(--panel-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual .dim-line {
  position: absolute;
  background: var(--cyan);
  opacity: 0.5;
}
.hero-visual .crosshair {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--orange);
}

/* ==========================================================================
   CARDS — Process / Service / Benefit (corner-bracket signature)
   ========================================================================== */

.bracket-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border-line);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  height: 100%;
  transition: transform .25s ease, border-color .25s ease;
}
.bracket-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}
.bracket-card::before, .bracket-card::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--orange);
  opacity: 0;
  transition: opacity .25s ease;
}
.bracket-card::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.bracket-card::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }
.bracket-card:hover::before, .bracket-card:hover::after { opacity: 1; }

.bracket-card .icon-box {
  width: 56px; height: 56px;
  border-radius: 4px;
  background: rgba(0,194,209,0.1);
  border: 1px solid rgba(0,194,209,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}

.bracket-card h3, .bracket-card h5 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.bracket-card p { color: var(--secondary); font-size: 0.95rem; margin-bottom: 1rem; }

/* Process steps */
.process-step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
}
.process-step .step-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--border-line);
  -webkit-text-stroke: 1px var(--cyan);
  margin-bottom: 0.6rem;
}
.process-step h5 { font-size: 1.05rem; }
.process-step p { color: var(--secondary); font-size: 0.9rem; }
.process-connector {
  display: none;
}
@media (min-width: 992px) {
  .process-connector {
    display: block;
    position: absolute;
    top: 38px;
    left: 100%;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--border-line) 0 6px, transparent 6px 12px);
  }
}

/* Testimonials */
.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--border-line);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  padding: 1.8rem;
  height: 100%;
}
.testimonial-card .quote-mark { color: var(--orange); font-size: 1.8rem; font-family: 'Sora', sans-serif; }
.testimonial-card p.quote-text { color: var(--off-white); font-size: 0.98rem; margin: 0.6rem 0 1.2rem; }
.testimonial-card .author { font-weight: 700; font-size: 0.92rem; }
.testimonial-card .author-role { color: var(--secondary); font-size: 0.8rem; }

/* ==========================================================================
   PRODUCT CARDS (Showroom)
   ========================================================================== */

.product-card {
  background: var(--panel);
  border: 1px solid var(--border-line);
  border-radius: 6px;
  overflow: hidden;
  height: auto;
  display: flex;
  max-width: 220px;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.product-card .product-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: var(--panel-light);
  overflow: hidden;
}
.product-card .product-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-card .product-img-wrap .no-image {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--border-line);
  font-size: 2.5rem;
}
.product-card .category-tag {
  position: absolute;
  top: 5px; left: 5px;
  background: rgba(14,17,22,0.85);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.product-card .product-body {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h5 { font-size: 0.85rem; margin-bottom: 0.25rem; }
.product-card .product-desc { color: var(--secondary); font-size: 0.7rem; flex: 1; margin-bottom: 0.5rem; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.product-card .price-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.6rem;
}
.product-card .price { font-family: 'Sora', sans-serif; font-weight: 800; color: var(--off-white); font-size: 1rem; }
.product-card .price .currency { color: var(--secondary); font-size: 0.65rem; font-weight: 600; margin-right: 4px; }

.category-filter-bar {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.category-pill {
  border: 1px solid var(--border-line);
  color: var(--secondary);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all .2s ease;
}
.category-pill:hover { border-color: var(--cyan); color: var(--cyan); }
.category-pill.active { background: var(--cyan); border-color: var(--cyan); color: var(--graphite); font-weight: 700; }

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-panel {
  background: var(--panel);
  border: 1px solid var(--border-line);
  border-radius: 6px;
  padding: 2.5rem;
}
@media (max-width: 576px) { .form-panel { padding: 1.6rem; } }

.form-label {
  color: var(--off-white);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.form-control, .form-select {
  background: var(--graphite);
  border: 1px solid var(--border-line);
  color: var(--off-white);
  border-radius: 4px;
  padding: 0.65rem 0.9rem;
}
.form-control:focus, .form-select:focus {
  background: var(--graphite);
  border-color: var(--cyan);
  color: var(--off-white);
  box-shadow: 0 0 0 3px rgba(0,194,209,0.15);
}
.form-control::placeholder { color: #5C6573; }
.form-control[type="file"] { padding: 0.5rem 0.9rem; }
.form-text { color: var(--secondary); font-size: 0.82rem; }

.form-check-input {
  background-color: var(--graphite);
  border-color: var(--border-line);
}
.form-check-input:checked { background-color: var(--cyan); border-color: var(--cyan); }
.form-check-label { color: var(--secondary); font-size: 0.9rem; }

/* ==========================================================================
   ALERTS
   ========================================================================== */

.alert { border-radius: 4px; border: 1px solid transparent; font-size: 0.92rem; }
.alert-success { background: rgba(46,204,113,0.12); color: #6FE3A0; border-color: rgba(46,204,113,0.3); }
.alert-danger { background: rgba(255,92,92,0.12); color: #FF8F8F; border-color: rgba(255,92,92,0.3); }
.alert-warning { background: rgba(255,107,53,0.12); color: #FFAA85; border-color: rgba(255,107,53,0.3); }
.alert-info { background: rgba(0,194,209,0.12); color: #6FE0E8; border-color: rgba(0,194,209,0.3); }
.btn-close { filter: invert(1); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.cotronics-footer { background: var(--panel); border-top: 1px solid var(--border-line); }
.footer-brand { font-size: 1.3rem; font-weight: 800; }
.footer-heading {
  color: var(--off-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 0.65rem; font-size: 0.92rem; }
.footer-links a { color: var(--secondary); }
.footer-links a:hover { color: var(--cyan); }
.footer-contact li { color: var(--secondary); display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-contact a { color: var(--secondary); }
.footer-contact a:hover { color: var(--cyan); }
.footer-divider { border-color: var(--border-line); opacity: 1; margin: 2rem 0 1.5rem; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border-line);
  border-radius: 4px;
  color: var(--secondary);
  margin-right: 0.5rem;
}
.social-links a:hover { border-color: var(--cyan); color: var(--cyan); }

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #08331a;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 1050;
  animation: whatsapp-pulse 2.4s infinite;
}
.whatsapp-float:hover { color: #08331a; transform: scale(1.07); }
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 6px 20px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 6px 20px rgba(0,0,0,0.35), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   MISC: about / mission-vision / stats band
   ========================================================================== */

.value-card {
  background: var(--panel);
  border: 1px solid var(--border-line);
  border-radius: 4px;
  padding: 1.8rem;
  height: 100%;
}
.value-card .icon-box {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.stats-band {
  background: var(--panel-light);
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
  padding: 2.6rem 0;
}
.stats-band .stat-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--cyan); }
.stats-band .stat-label { color: var(--secondary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; }

.cta-band {
  background: linear-gradient(135deg, rgba(0,194,209,0.12), rgba(255,107,53,0.10));
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
}

.map-placeholder {
  background: var(--panel);
  border: 1px dashed var(--border-line);
  border-radius: 6px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

/* ==========================================================================
   ADMIN
   ========================================================================== */

.admin-body { background: var(--graphite); min-height: 100vh; }

.admin-sidebar {
  background: var(--panel);
  border-right: 1px solid var(--border-line);
  min-height: 100vh;
  padding: 1.5rem 1rem;
}
.admin-sidebar .admin-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0 0.6rem 1.2rem;
  border-bottom: 1px solid var(--border-line);
  margin-bottom: 1.2rem;
}
.admin-sidebar .admin-brand .brand-mark { color: var(--orange); }
.admin-nav-link {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--secondary);
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.admin-nav-link:hover { background: var(--panel-light); color: var(--off-white); }
.admin-nav-link.active { background: rgba(0,194,209,0.12); color: var(--cyan); }

.admin-content { padding: 2rem; }

.stat-card {
  background: var(--panel);
  border: 1px solid var(--border-line);
  border-radius: 6px;
  padding: 1.5rem;
}
.stat-card .stat-icon {
  width: 44px; height: 44px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}
.stat-card .stat-value { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.9rem; }
.stat-card .stat-title { color: var(--secondary); font-size: 0.85rem; }

.table-dark-custom {
  background: var(--panel);
  border-radius: 6px;
  overflow: hidden;
}
.table-dark-custom table { color: var(--off-white); margin-bottom: 0; }
.table-dark-custom th {
  background: var(--panel-light);
  color: var(--secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  border-bottom: 1px solid var(--border-line);
  padding: 0.9rem 1rem;
}
.table-dark-custom td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-line);
  vertical-align: middle;
  font-size: 0.92rem;
}
.table-dark-custom tr:last-child td { border-bottom: none; }

.badge-status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.32rem 0.7rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-new { background: rgba(0,194,209,0.15); color: var(--cyan); }
.badge-progress { background: rgba(255,107,53,0.15); color: var(--orange); }
.badge-quoted { background: rgba(155,109,255,0.15); color: #B79CFF; }
.badge-completed { background: rgba(46,204,113,0.15); color: #6FE3A0; }
.badge-cancelled { background: rgba(255,92,92,0.15); color: #FF8F8F; }

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--graphite);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(15,23,36,0.03) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(15,23,36,0.03) 39px 40px);
  padding: 1.5rem;
}
.login-card {
  background: var(--panel);
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 2.6rem;
  width: 100%;
  max-width: 420px;
}
.login-card .login-icon {
  width: 56px; height: 56px;
  border-radius: 4px;
  background: rgba(0,194,209,0.12);
  border: 1px solid rgba(0,194,209,0.3);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
}

/* 404/500 */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.error-page .error-code {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 6rem;
  color: var(--border-line);
  -webkit-text-stroke: 1.5px var(--cyan);
  line-height: 1;
}

/* ==========================================================================
   RESPONSIVE TWEAKS
   ========================================================================== */

@media (max-width: 991px) {
  .hero { min-height: auto; padding: 3rem 0; }
  .hero-visual { height: 320px; margin-top: 2rem; }
  .admin-sidebar { min-height: auto; }
}

@media (max-width: 576px) {
  .section { padding: 3.5rem 0; }
  .page-header h1 { font-size: 1.9rem; }
}
