/* ============================================
   C.E.S.-DATA – Modernes Stylesheet
   ============================================ */

/* ============================================================
   Inter Schriftart – lokal gehostet (kein externer Aufruf)
   Inter ist unter der SIL Open Font License 1.1 lizenziert.
   Quelle: fonts.google.com / github.com/rsms/inter
   ============================================================ */

/* Lateinisch-erweitert (ä, ö, ü, ß und weitere europ. Zeichen) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                 U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Lateinisch (Grundzeichen) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
                 U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
                 U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Custom Properties ---- */
:root {
  --primary:       #1B3A6B;
  --primary-dark:  #122849;
  --primary-hover: #152d52;
  --accent:        #0EA5E9;
  --accent-hover:  #0284C7;
  --success:       #10B981;
  --bg:            #F8FAFC;
  --bg-gray:       #F1F5F9;
  --text:          #1E293B;
  --text-muted:    #64748B;
  --border:        #E2E8F0;
  --white:         #FFFFFF;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08);
  --shadow:        0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg:     0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl:     0 20px 40px rgba(0,0,0,0.15);
  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    all 0.2s ease;
  --header-h:      88px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 75px;
  width: auto;
  display: block;
}
/* Fallback text (hidden when image loads) */
.logo-main {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: white;
}
.logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Desktop nav */
nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
nav > a, nav > .dropdown > a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
nav > a:hover,
nav > .dropdown > a:hover {
  color: white;
  background: rgba(255,255,255,0.12);
}
nav > a.active {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a .chevron {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.65rem;
  transition: transform 0.2s;
}
.dropdown:hover > a .chevron { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 270px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 8px;
  z-index: 300;
}
.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: var(--bg-gray);
  color: var(--primary);
}
.dropdown-menu a .dm-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 301;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (Startseite)
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #0C1F4A 100%);
  color: white;
  padding: 110px 24px 90px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(14,165,233,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(16,185,129,0.08) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,165,233,0.2);
  color: #7DD3FC;
  border: 1px solid rgba(14,165,233,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--accent); }
.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(14,165,233,0.4);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,165,233,0.5);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--bg-gray);
  color: var(--primary);
}
.btn-ghost:hover {
  background: var(--border);
  transform: translateY(-1px);
}

/* ============================================================
   SHARED LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

section { padding: 80px 24px; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,58,107,0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SERVICE CARDS (Startseite)
   ============================================================ */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
}
.card-link {
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.825rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Icon colors */
.ic-blue   { background: #EFF6FF; }
.ic-purple { background: #F5F3FF; }
.ic-cyan   { background: #ECFEFF; }
.ic-orange { background: #FFF7ED; }
.ic-green  { background: #ECFDF5; }
.ic-teal   { background: #F0FDFA; }
.ic-rose   { background: #FFF1F2; }
.ic-indigo { background: #EEF2FF; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--primary);
  color: white;
  padding: 60px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================================
   ABOUT / PHILOSOPHY SNIPPET
   ============================================================ */
.about-section { background: var(--bg-gray); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text .btn { margin-top: 8px; }

.about-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.about-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}
.about-card .sig {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sig-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.sig-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
}
.sig-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-text h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-text p, .contact-text a {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
}
.contact-text a:hover { color: var(--accent); }

.map-placeholder {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-placeholder iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}
.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  text-decoration: none;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  border-top: 1px solid var(--border);
}
.map-link:hover { background: var(--bg-gray); color: var(--accent); }

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0C1F4A 100%);
  color: white;
  padding: 70px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(14,165,233,0.1) 0%, transparent 60%);
}
.page-hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   CONTENT PAGES
   ============================================================ */
.content-section { padding: 80px 24px; }
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.content-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.content-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-gray);
}
.content-card h2:first-child { margin-top: 0; }
.content-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 10px;
}
.content-card p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.content-card ul, .content-card ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.content-card ul li, .content-card ol li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 6px;
}
.content-card a { color: var(--accent); }

/* Info boxes */
.info-box {
  background: #EFF6FF;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.info-box p { margin: 0; color: var(--primary); font-size: 0.9rem; }

/* ============================================================
   LEISTUNGEN PAGE
   ============================================================ */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.leistung-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.leistung-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.leistung-card .lk-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.leistung-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.leistung-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
}
.leistung-card .lk-arrow {
  margin-top: 20px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0C1F4A 100%);
  color: white;
  padding: 70px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-banner .btn-primary:hover {
  background: var(--bg-gray);
  color: var(--primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.65);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}
.footer-logo span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.825rem;
  transition: var(--transition);
}
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.8rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .hamburger { display: flex; }

  nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    overflow-y: auto;
    gap: 4px;
    z-index: 199;
  }
  nav.open { display: flex; }

  nav > a, nav > .dropdown > a {
    padding: 12px 14px;
    border-radius: var(--radius);
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: rgba(0,0,0,0.25);
    box-shadow: none;
    border: none;
    border-radius: var(--radius);
    padding: 4px 0;
    margin-top: 4px;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { color: rgba(255,255,255,0.75); }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: white; }

  .hero { padding: 80px 24px 70px; }
  section { padding: 60px 20px; }

  .content-card { padding: 28px 20px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
  .services-grid { grid-template-columns: 1fr; }
  .leistungen-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO SPEC LOGO
   ============================================================ */
.hero-spec-logo {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.hero-spec-logo img {
  height: 44px;
  width: auto;
  opacity: 0.9;
  border-radius: 4px;
}

/* ============================================================
   WKO BADGE BAR
   ============================================================ */
.wko-bar {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wko-bar a {
  display: inline-block;
  transition: var(--transition);
  border-radius: 4px;
}
.wko-bar a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
.wko-bar img {
  height: 28px;
  width: auto;
  display: block;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.bg-gray { background: var(--bg-gray); }

/* Mobile nav dropdown toggle */
.dropdown > a { cursor: pointer; user-select: none; }
