/* ══ DARK THEME (default) ══ */
:root {
  --brand-blue: #1B9FD8;
  --brand-blue-dark: #1480B0;
  --brand-red: #E8231A;
  --brand-red-dark: #C01A12;
  --accent: var(--brand-blue);
  --accent-dark: var(--brand-blue-dark);
  --accent2: var(--brand-red);
  --charcoal: #0E1218;
  --dark: #161C25;
  --mid: #1E2733;
  --light-text: #BDC8D4;
  --white: #FFFFFF;

  --bg-body: #0E1218;
  --bg-section-alt: #161C25;
  --bg-section-deep: #0A0E14;
  --bg-card: #1E2733;
  --bg-card-border: #2A3545;
  --bg-input: #161C25;
  --bg-input-focus: #1E2733;
  --bg-input-border: #2A3545;
  --bg-nav: rgba(10,14,20,0.97);
  --bg-dropdown: #1a2230;
  --bg-dropdown-border: #2A3545;
  --bg-why-visual: #0a0e14;
  --bg-footer: #060A10;
  --text-body: #FFFFFF;
  --text-muted: #fff;
  --text-faint: #fff;
  --text-footer: #fff;
  --text-footer-link: #8A9AAA;
  --text-nav-link: #fffblog-section;
  --text-dropdown-item: #BDC8D4;
  --text-pricing-row-border: #1E2733;
  --text-footer-copy: #ffffooter-copy;
  --toggler-border: #2A3545;
  --toggler-icon-filter: invert(1);
  --hero-overlay: linear-gradient(110deg, rgba(6,10,16,0.95) 35%, rgba(6,10,16,0.6) 100%);
  --pricing-note-color: #4A5A6A;
  --footer-tagline-color: #4A5A6A;
  --footer-p-color: #4A5A6A;
  --footer-col-text-color: #4A5A6A;
  --hero-stripe: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-red) 100%);
  --orange: var(--brand-blue);
  --orange-dark: var(--brand-blue-dark);
}

/* ══ LIGHT THEME ══ */
[data-theme="light"] {
  --accent: var(--brand-blue);
  --accent-dark: var(--brand-blue-dark);
  --accent2: var(--brand-red);
  --charcoal: #F0F4F8;
  --dark: #E4EBF2;
  --mid: #FFFFFF;
  --light-text: #3A4A5A;
  --white: #0E1218;
  --bg-body: #F0F4F8;
  --bg-section-alt: #E4EBF2;
  --bg-section-deep: #E8EEF4;
  --bg-card: #FFFFFF;
  --bg-card-border: #CCD8E4;
  --bg-input: #FFFFFF;
  --bg-input-focus: #F8FAFC;
  --bg-input-border: #B8C8D8;
  --bg-nav: rgba(255,255,255,0.97);
  --bg-dropdown: #FFFFFF;
  --bg-dropdown-border: #CCD8E4;
  --bg-why-visual: #CDD8E4;
  --bg-footer: #0E1218;
  --text-body: #0E1218;
  --text-muted: #000;
  --text-faint: #7A8A9A;
  --text-footer: #8A9AAA;
  --text-footer-link: #BDC8D4;
  --text-nav-link: #1A2A3A;
  --text-dropdown-item: #1A2A3A;
  --text-pricing-row-border: #CCD8E4;
  --text-footer-copy: #fff;
  --toggler-border: #B8C8D8;
  --toggler-icon-filter: invert(0);
  --hero-overlay: linear-gradient(110deg, rgba(6,10,16,0.92) 35%, rgba(6,10,16,0.5) 100%);
  --pricing-note-color: #7A8A9A;
  --footer-tagline-color: #8A9AAA;
  --footer-p-color: #8A9AAA;
  --footer-col-text-color: #8A9AAA;
  --hero-stripe: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-red) 100%);
  --orange: var(--brand-blue);
  --orange-dark: var(--brand-blue-dark);
}

/* ══ THEME TRANSITION ══ */
*, *::before, *::after {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease;
}

/* ══ THEME TOGGLE ══ */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-card-border);
  background: var(--bg-card);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  margin-left: 0.5rem;
}
.theme-toggle:hover { border-color: var(--brand-blue); color: var(--brand-blue); transform: rotate(20deg); }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg-body);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, .display-font {
  font-family: 'Barlow Condensed', sans-serif;
	text-transform:uppercase;
  letter-spacing: 0.02em;
}

/* ── NAV ── */
.navbar {
  background: var(--bg-nav);
  border-bottom: 2px solid var(--orange);
  padding: 0.6rem 0;
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(6px);
}

.navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--text-body) !important;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0; position: relative;
}

.navbar-brand img {
  height: 44px;
  width: auto;
  transition: transform .3s ease, filter .3s ease;
}

.navbar-brand:hover img {
  transform: translateY(-3px) scale(1.06);
  filter: drop-shadow(0 8px 14px rgba(27,159,216,.35));
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500; font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--text-nav-link) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--brand-blue) !important; }

.dropdown-menu {
  background: var(--bg-dropdown);
  border: 1px solid var(--bg-dropdown-border);
  border-top: 2px solid var(--brand-blue);
  min-width: 230px;
}

.dropdown-item {
  font-family: "Inter", sans-serif;
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-dropdown-item);
  padding: 0.55rem 1.2rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover { background: var(--brand-blue); color: #fff; }

.btn-call {
  background: var(--brand-blue); color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.5rem 1.2rem; border-radius: 3px; border: none;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn-call:hover { background: var(--brand-blue-dark); transform: scale(1.03); }

.navbar-toggler { border: 1px solid var(--toggler-border); }
.navbar-toggler-icon { filter: var(--toggler-icon-filter); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: #0d0d0d;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    var(--hero-overlay),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
}

.sparks { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.spark {
  position: absolute; width: 3px; height: 3px;
  border-radius: 50%; background: var(--orange);
  opacity: 0; animation: sparkFly 3s infinite;
}

@keyframes sparkFly {
  0%   { opacity: 0; transform: translate(0,0) scale(1); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.2); }
}

.hero-content { position: relative; z-index: 2; }

.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brand-blue);
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.hero-label::before, .hero-label::after {
  content: ''; width: 30px; height: 2px;
  background: var(--hero-stripe);
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900; line-height: 0.95;
  margin-bottom: 0.3rem; color: #ffffff;
}
.hero h1 .highlight { color: var(--brand-blue); display: block; }
.hero h1 .highlight-red { color: var(--brand-red); }

.hero-sub {
  font-size: 1.1rem; color: rgba(220,230,240,0.88);
  max-width: 480px; line-height: 1.6; margin-bottom: 2rem;
}

.btn-primary-dd {
  background: var(--brand-blue); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.85rem 2rem; border: none; border-radius: 3px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-dd:hover { background: var(--brand-blue-dark); transform: translateY(-2px); color: #fff; }
.btn-primary-dd.red { background: var(--brand-red); }
.btn-primary-dd.red:hover { background: var(--brand-red-dark); }

.btn-outline-dd {
  background: transparent; color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.85rem 2rem; border: 2px solid rgba(255,255,255,0.45);
  border-radius: 3px; cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline-dd:hover {
  border-color: var(--brand-blue); color: var(--brand-blue);
  background: rgba(27,159,216,0.08);
}

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--hero-stripe); z-index: 2;
}

.stat-item {
  padding: 1.1rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 3rem; line-height: 1; color: #fff;
}

.stat-label {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.85); font-weight: 600;
}

/* ── SECTION TITLES ── */
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brand-blue); margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1;
  color: var(--text-body); margin-bottom: 1rem;
}

.section-line {
  width: 60px; height: 3px;
  background: var(--hero-stripe); margin-bottom: 1.5rem;
}

/* ── ABOUT ── */
.about-section { background: var(--bg-section-alt); padding: 6rem 0; }

.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 420px; object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
}

.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--brand-red); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; text-transform: uppercase; text-align: center;
  padding: 1.2rem 1.5rem; width: 130px; line-height: 1.1;
}
.about-badge .big { font-size: 2.8rem; display: block; }
.about-badge .small { font-size: 0.75rem; letter-spacing: 0.1em; }

.about-text p { color: var(--text-muted); line-height: 1.75; font-size: 1rem; }

/* ── SERVICES ── */
.services-section { background: var(--bg-body); padding: 3rem 0; }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-top: 3px solid transparent;
  padding: 1rem 1.1rem; height: 100%;
  transition: border-top-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.service-card:hover {
  border-top-color: var(--brand-blue);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.service-icon {
  width: 50px; height: 50px;
  background: rgba(27,159,216,0.1);
  border: 1px solid rgba(27,159,216,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--brand-blue);
  margin-bottom: 1.2rem; border-radius: 3px;
}

.service-card h4 {
  font-size: 1.8rem; font-weight: 700;
  color: var(--text-body); margin-bottom: 0.7rem;
	text-transform: none;
}
.service-card p {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 0;
}

.service-card a {
	text-decoration: none;
}

/* ── WHY US ── */
.why-section { background: var(--bg-section-alt); padding: 6rem 0; }

.why-item { display: flex; gap: 1.2rem; margin-bottom: 2rem; }

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: rgba(27,159,216,0.18); line-height: 1; min-width: 60px;
}

.why-content h5 {
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-body); margin-bottom: 0.4rem;
}
.why-content p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6; margin: 0;
}

.why-visual {
  position: relative; background: var(--bg-why-visual); overflow: hidden;
}
.why-visual img {
  width: 100%; height: 100%; min-height: 380px;
  object-fit: cover; opacity: 1;
}
.why-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,159,216,0.2) 0%, rgba(232,35,26,0.1) 100%);
}

/* ── PRICING ── */
.pricing-section { background: var(--bg-section-deep); padding: 6rem 0; }

.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead tr { background: var(--orange); }
.pricing-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff; padding: 0.9rem 1.2rem; border: none;
}
.pricing-table tbody tr {
  border-bottom: 1px solid var(--text-pricing-row-border);
  transition: background 0.15s;
}
.pricing-table tbody tr:hover { background: rgba(27,159,216,0.07); }
.pricing-table tbody td {
  font-size: 0.95rem; color: var(--text-muted); padding: 0.8rem 1.2rem;
}
.pricing-table tbody td:first-child { color: var(--text-body); font-weight: 500; }

.price-highlight {
  color: var(--brand-blue); font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem;
}

.pricing-note {
  font-size: 0.82rem; color: var(--pricing-note-color);
  margin-top: 1rem; line-height: 1.5;
}

/* ── CONTACT ── */
.contact-section { background: var(--bg-section-alt); padding: 6rem 0; }

.contact-box {
  background: var(--bg-card); border: 1px solid var(--bg-card-border); padding: 2.5rem;
}

.contact-item {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem;
}

.contact-icon {
  width: 42px; height: 42px; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; border-radius: 3px; flex-shrink: 0;
}

.contact-info h6 {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--orange);
  margin-bottom: 0.2rem; font-weight: 700;
}
.contact-info p, .contact-info a {
  font-size: 1rem; color: var(--text-body); margin: 0; text-decoration: none;
}
.contact-info a:hover { color: var(--orange); }

.form-control-dd {
  background: var(--bg-input); border: 1px solid var(--bg-input-border);
  color: var(--text-body); padding: 0.75rem 1rem;
  border-radius: 3px; font-size: 1.2rem; width: 100%;
  transition: border-color 0.2s; outline: none;
  font-family: 'Barlow', sans-serif;
}
.form-control-dd:focus { border-color: var(--orange); background: var(--bg-input-focus); color: var(--text-body); }
.form-control-dd::placeholder { color: var(--text-faint); }
textarea.form-control-dd { resize: vertical; min-height: 130px; }

.form-label-dd {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 0.35rem; display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-footer);
  border-top: 3px solid var(--orange);
  padding: 3rem 0 1.5rem;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 2rem;
  text-transform: uppercase; color: #ffffff;
}
.footer-brand span { color: var(--orange); }

.footer-tagline {
  font-size: 0.85rem; color: var(--text-footer);
  text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.3rem;
}

.footer-nav a {
	font-family: "Inter", sans-serif;
  font-weight: 500; letter-spacing: 0.07em;
  color: #fff; text-decoration: none; font-size: 1.1rem;
  display: block; margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }

.footer-copy {
  font-size: 1rem; color: var(--text-footer-copy);
  border-top: 1px solid #222;
  margin-top: 2rem; padding-top: 1.5rem; text-align: center;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITY ── */
.text-orange { color: var(--orange); }

@media (max-width: 767px) {
  .hero h1 { font-size: 3rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .about-badge { right: 0; bottom: 0; }
  .pricing-table { font-size: 0.85rem; }
}

/* ══ MOBILE DRAWER ══ */

.hamburger-btn {
  width: 42px; height: 42px;
  background: transparent; border: none; cursor: pointer;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; padding: 4px; border-radius: 6px; transition: background 0.2s;
}
.hamburger-btn:hover { background: rgba(27,159,216,0.12); }
.hamburger-btn span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text-body);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.2s, width 0.3s;
}
.hamburger-btn span:nth-child(1) { width: 26px; }
.hamburger-btn span:nth-child(2) { width: 20px; }
.hamburger-btn span:nth-child(3) { width: 26px; }
.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
  width: 26px; transform: translateY(7px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
  width: 26px; transform: translateY(-7px) rotate(-45deg);
}

#mobileDrawer { display: contents; }

.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 1100; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-open .drawer-backdrop { opacity: 1; pointer-events: all; }

.drawer-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw); z-index: 1200;
  background: var(--bg-section-alt);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  overflow-y: auto; overflow-x: hidden;
}
.drawer-panel::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--hero-stripe);
}
.drawer-open .drawer-panel { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--bg-card-border); flex-shrink: 0;
}
.drawer-logo {
  height: 40px; width: auto;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), filter 0.3s ease;
}
.drawer-header:hover .drawer-logo {
  transform: scale(1.08) rotate(-1.5deg);
  filter: drop-shadow(0 0 7px rgba(27,159,216,0.5));
}
.drawer-close {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--bg-card-border);
  background: var(--bg-card); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.drawer-close:hover {
  background: var(--brand-red); color: #fff;
  border-color: var(--brand-red); transform: rotate(90deg);
}

.drawer-nav { flex: 1; padding: 1rem 0; }

.drawer-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem; text-decoration: none;
  border: none; background: transparent; width: 100%;
  text-align: left; cursor: pointer; position: relative;
  transition: background 0.2s;
}
.drawer-link::after {
  content: ''; position: absolute; left: 3px; top: 0; bottom: 0;
  width: 3px; background: var(--brand-blue);
  transform: scaleY(0); transition: transform 0.25s ease;
}
.drawer-link:hover::after,
.drawer-link[aria-expanded="true"]::after { transform: scaleY(1); }
.drawer-link:hover { background: var(--bg-card); }
.drawer-link[aria-expanded="true"] { background: var(--bg-card); }

.drawer-link-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700; color: var(--brand-blue);
  letter-spacing: 0.1em; min-width: 22px; opacity: 0.6;
}
.drawer-link-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.3rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-body); flex: 1; transition: color 0.2s;
}
.drawer-link:hover .drawer-link-text,
.drawer-link[aria-expanded="true"] .drawer-link-text { color: var(--brand-blue); }

.drawer-link-arrow {
  color: var(--text-faint); font-size: 0.9rem;
  transition: transform 0.2s, color 0.2s;
}
.drawer-link:hover .drawer-link-arrow { transform: translateX(4px); color: var(--brand-blue); }

.drawer-link-chevron {
  color: var(--text-faint); font-size: 0.85rem;
  transition: transform 0.3s ease, color 0.2s;
}
.drawer-link[aria-expanded="true"] .drawer-link-chevron {
  transform: rotate(180deg); color: var(--brand-blue);
}

.drawer-group { overflow: hidden; }
.drawer-sub {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.77,0,.18,1);
  background: var(--bg-body);
}
.drawer-sub.open { max-height: 500px; }

.drawer-sub-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1.5rem 0.65rem 3.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  border-left: 2px solid transparent;
}
.drawer-sub-link::before {
  content: '—'; font-size: 0.65rem; color: var(--brand-red); flex-shrink: 0;
}
.drawer-sub-link:hover {
  color: var(--brand-blue); padding-left: 4.2rem;
  background: rgba(27,159,216,0.05);
}

.drawer-footer {
  padding: 1.5rem; border-top: 1px solid var(--bg-card-border); flex-shrink: 0;
}
.drawer-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--brand-blue); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.9rem 1.5rem;
  text-decoration: none; border-radius: 4px;
  margin-bottom: 1rem; transition: background 0.2s;
}
.drawer-cta:hover { background: var(--brand-blue-dark); color: #fff; }

.drawer-socials {
  display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 1rem;
}
.drawer-social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--bg-card-border); background: var(--bg-card);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.drawer-social-icon:hover { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }

.drawer-since {
  text-align: center; font-size: 0.75rem; color: var(--text-faint);
  letter-spacing: 0.08em; text-transform: uppercase; margin: 0;
}

.drawer-open .drawer-link { animation: drawerLinkIn 0.4s ease both; }
.drawer-open .drawer-link:nth-child(1) { animation-delay: 0.12s; }
.drawer-open .drawer-link:nth-child(2) { animation-delay: 0.17s; }
.drawer-open .drawer-link:nth-child(3) { animation-delay: 0.22s; }
.drawer-open .drawer-link:nth-child(4) { animation-delay: 0.27s; }
.drawer-open .drawer-link:nth-child(5) { animation-delay: 0.32s; }

@keyframes drawerLinkIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@media (min-width: 992px) {
  .hamburger-btn { display: none !important; }
  .drawer-backdrop, .drawer-panel { display: none !important; }
}

/* ══ LOGO THEME SWITCHING ══ */
.logo-dark  { display: block !important; }
.logo-light { display: none  !important; }
[data-theme="light"] .logo-dark  { display: none  !important; }
[data-theme="light"] .logo-light { display: block !important; }

/* ══ LANGUAGE SWITCHER — DESKTOP ══ */
.lang-sw { position: relative; display: flex; align-items: center; }

.lang-btn {
  display: flex; align-items: center; gap: 0.3rem;
  height: 34px; padding: 0 0.65rem;
  background: transparent; border: 1px solid var(--bg-card-border);
  border-radius: 4px; color: var(--text-nav-link);
  font-family: "Inter", sans-serif;
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  cursor: pointer; white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lang-btn:hover,
.lang-sw.open .lang-btn {
  border-color: var(--brand-blue); color: var(--brand-blue);
  background: rgba(27,159,216,0.07);
}
.lang-btn .lb-flag { font-size: 1rem; line-height: 1; }
.lang-btn .lb-code { font-size: 0.8rem; }
.lang-btn .lb-caret { font-size: 0.55rem; opacity: 0.55; transition: transform 0.22s; }
.lang-sw.open .lb-caret { transform: rotate(180deg); }

.lang-panel {
  position: absolute; top: calc(100% + 7px); right: 0; min-width: 140px;
  background: var(--bg-dropdown); border: 1px solid var(--bg-dropdown-border);
  border-top: 2px solid var(--brand-blue);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  z-index: 2000; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.lang-sw.open .lang-panel { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-opt {
  display: flex; align-items: center; gap: 0.6rem; width: 100%;
  padding: 0.58rem 1rem; background: transparent; border: none;
  font-family: "Inter", sans-serif; font-weight: 700;
  font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-dropdown-item); cursor: pointer; text-align: left;
  transition: background 0.13s, color 0.13s;
}
.lang-opt:hover          { background: var(--brand-blue); color: #fff; }
.lang-opt.is-active      { color: var(--brand-blue); }
.lang-opt.is-active:hover{ color: #fff; }
.lang-opt .lo-flag       { font-size: 1rem; }
.lang-opt .lo-check      { margin-left: auto; font-size: 0.7rem; color: var(--brand-blue); opacity: 0; }
.lang-opt.is-active .lo-check  { opacity: 1; }
.lang-opt:hover .lo-check      { color: #fff; opacity: 1; }

/* ══ LANGUAGE SWITCHER — MOBILE ══ */
.drawer-lang {
  display: flex; gap: 0.45rem;
  padding: 0.9rem 1.5rem 0.6rem;
  border-top: 1px solid var(--bg-card-border);
}
.dlang-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.35rem; padding: 0.5rem 0.3rem;
  background: transparent; border: 1px solid var(--bg-card-border);
  border-radius: 3px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.dlang-btn:hover       { border-color: var(--brand-blue); color: var(--brand-blue); }
.dlang-btn.is-active   { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }
.dlang-btn .dl-flag    { font-size: 0.95rem; }

/* ══════════════════════════════════════════════════
   PAGE HERO — inner pages
══════════════════════════════════════════════════ */
.page-hero {
  position: relative; padding: 5rem 0 3.5rem; overflow: hidden;
  background: var(--bg-section-deep);
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--hero-stripe);
}
.page-hero-bg {
  position: absolute; inset: 0; opacity: 0.06;
  background: url('/assets/images/1.png') center/cover no-repeat;
}
.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brand-blue); margin-bottom: 0.6rem;
}
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; line-height: 1; color: var(--text-body);
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}
.page-hero-title span { color: var(--brand-blue); }
.page-hero-sub {
  font-size: 1rem; color: var(--text-muted); max-width: 520px; line-height: 1.65;
}

.breadcrumb-dd {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-faint); margin-top: 1.5rem;
}
.breadcrumb-dd a { color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
.breadcrumb-dd a:hover { color: var(--brand-blue); }
.breadcrumb-dd .bc-sep { color: var(--text-faint); font-size: 0.65rem; }
.breadcrumb-dd .bc-current { color: var(--brand-blue); }

/* ══════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════ */
.cta-band {
  background: var(--hero-stripe); padding: 4.5rem 0; text-align: center;
}
.cta-band h2 {
  color: #fff; font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; margin-bottom: 0.5rem;
}
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 2rem; }

.btn-primary-white {
  background: #fff; color: var(--brand-blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.85rem 2rem; border: none; border-radius: 3px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); color: var(--brand-blue-dark); }

/* ══════════════════════════════════════════════════
   SERVICE DETAIL SECTIONS
══════════════════════════════════════════════════ */
.service-detail { padding: 5rem 0; }
.service-detail:nth-child(odd) { background: var(--bg-body); }
.service-detail:nth-child(even) { background: var(--bg-section-alt); }

.service-detail-img {
  width: 100%; height: 380px; object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}
.service-feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.service-feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.4rem 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.5;
}
.service-feature-list li i { color: var(--brand-blue); margin-top: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   MAP PLACEHOLDER
══════════════════════════════════════════════════ */
.map-placeholder {
  background: var(--bg-card); border: 1px solid var(--bg-card-border);
  height: 320px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem; color: var(--text-faint);
}
.map-placeholder i { font-size: 2.5rem; color: var(--brand-blue); opacity: 0.4; }
.map-placeholder p { font-size: 0.9rem; margin: 0; text-align: center; }

/* ══════════════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════════════ */
.blog-section { background: var(--bg-body); padding: 3rem 0; }

.blog-card {
  background: var(--bg-card); border: 1px solid var(--bg-card-border);
  border-top: 3px solid transparent; overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: border-top-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  border-top-color: var(--brand-blue); transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
  padding: 1.5rem; flex: 1; display: flex; flex-direction: column;
}

.blog-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 0.2rem 0.6rem;
  background: rgba(27,159,216,0.12); color: var(--brand-blue);
  border: 1px solid rgba(27,159,216,0.25); border-radius: 2px;
  margin-bottom: 0.75rem; text-decoration: none;
}

.blog-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem !important; font-weight: 600;
  color: var(--text-body); margin-bottom: 0.6rem; line-height: 1.25;
  text-decoration: none; display: block; transition: color 0.2s;
}
.blog-card-title:hover { color: var(--brand-blue); }

.blog-card-excerpt {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.65; flex: 1; margin-bottom: 1.2rem;
}

.blog-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.78rem; color: var(--text-faint);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.blog-meta i { color: var(--brand-blue); }

.blog-read-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--brand-blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
}
.blog-read-more:hover { color: var(--brand-blue-dark); gap: 0.7rem; }

/* ══════════════════════════════════════════════════
   BLOG ARTICLE
══════════════════════════════════════════════════ */
.article-section { background: var(--bg-body); padding: 5rem 0; }

.article-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 6rem); font-weight: 700;
  color: var(--text-body); line-height: 1.1;
  margin-bottom: 1rem; letter-spacing: 0.02em;
	text-transform: none;
}

.article-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem;
  font-size: 1.1rem; color: var(--text-faint);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 2rem;
}
.article-meta i { color: var(--brand-blue); }

.article-hero-img {
  width: 100%; max-height: 460px; object-fit: cover;
  margin-bottom: 2.5rem;
}

.article-body {
  font-size: 1.2rem; color: var(--text-muted); line-height: 1.5;
}
.article-body h2 {
  font-size: 1.6rem; font-weight: 700; color: var(--brand-blue);
  margin: 2.5rem 0 0.5rem; letter-spacing: 0.02em;
}
.article-body h3 {
  font-size: 1.25rem; font-weight: 700; color: var(--text-body);
  margin: 2rem 0 0.8rem;
}
.article-body p { margin-bottom: 1.4rem; }
.article-body ul, .article-body ol { margin-bottom: 1.4rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0; }
.article-body strong { color: var(--text-body); }
.article-body a { color: var(--brand-blue); }
.article-body a:hover { color: var(--brand-blue-dark); }
.article-body blockquote {
  border-left: 3px solid var(--brand-blue);
  padding: 1rem 1.5rem;
  background: var(--bg-card); color: var(--text-muted);
  font-style: italic; font-size: 1.2rem; margin: 2rem 0;
}
.article-divider {
  border: none; border-top: 1px solid var(--bg-card-border);
  margin: 2.5rem 0;
}

/* Sidebar */
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--bg-card-border);
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.sidebar-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--brand-blue); margin-bottom: 1rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--bg-card-border);
}
.sidebar-post-link {
  display: flex; gap: 0.75rem; text-decoration: none;
  margin-bottom: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--bg-card-border);
}
.sidebar-post-link:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-post-img { width: 64px; height: 64px; object-fit: cover; flex-shrink: 0; }
.sidebar-post-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem;
  font-weight: 600; color: var(--text-body); line-height: 1.3; transition: color 0.2s;
}
.sidebar-post-link:hover .sidebar-post-title { color: var(--brand-blue); }
.sidebar-post-date {
  font-size: 0.75rem; color: var(--text-faint); margin-top: 0.3rem;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 0.06em;
}

.sidebar-category-list { list-style: none; padding: 0; margin: 0; }
.sidebar-category-list li {
  border-bottom: 1px solid var(--bg-card-border); padding: 0;
}
.sidebar-category-list li:last-child { border-bottom: none; }
.sidebar-category-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem;
  font-weight: 600; letter-spacing: 0.05em;
  color: var(--text-muted); transition: color 0.2s;
}
.sidebar-category-list a:hover { color: var(--brand-blue); }
.sidebar-category-list span {
  background: rgba(27,159,216,0.12); color: var(--brand-blue);
  border-radius: 2px; font-size: 1.3rem;
  padding: 0.1rem 0.4rem; font-family: 'Barlow Condensed', sans-serif;
}

/* ══ PRICING PAGE EXTRAS ══ */
.pricing-faq { background: var(--bg-section-alt); padding: 5rem 0; }
.faq-item {
  border-bottom: 1px solid var(--bg-card-border); padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--bg-card-border); }
.faq-q {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text-body); margin-bottom: 0.6rem;
}
.faq-a { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════════
   SERVICE LIST VIEW (services-list.html)
══════════════════════════════════════════════════ */
.svc-grid-section { background: var(--bg-body); padding: 5rem 0; }

.svc-grid-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.svc-grid-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.28);
}

/* image wrapper — aspect-ratio keeps it proportional in any column width */
.svc-grid-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-section-deep);
  flex-shrink: 0;
}
.svc-grid-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
  transition: transform 0.55s ease, filter 0.4s ease;
}
.svc-grid-card:hover .svc-grid-img img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.08) brightness(0.88);
}

/* dark gradient at bottom of image */
.svc-grid-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,10,16,0.72) 0%, rgba(6,10,16,0.06) 55%);
  transition: opacity 0.3s ease;
}
.svc-grid-card:hover .svc-grid-img-overlay { opacity: 0.9; }

/* service number badge — top-left */
.svc-grid-num {
  position: absolute; top: 1rem; left: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; background: var(--brand-blue);
  padding: 0.22rem 0.65rem; z-index: 1;
}

/* icon — bottom-right of image */
.svc-grid-icon {
  position: absolute; bottom: 1rem; right: 1rem;
  width: 46px; height: 46px;
  background: rgba(6,10,16,0.55);
  border: 1px solid rgba(27,159,216,0.45);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--brand-blue);
  z-index: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.svc-grid-card:hover .svc-grid-icon {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

/* card body */
.svc-grid-body {
  padding: 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: border-top-color 0.3s;
}
.svc-grid-card:hover .svc-grid-body { border-top-color: var(--brand-blue); }

.svc-grid-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text-body); line-height: 1.1;
  margin-bottom: 0.65rem;
}

.svc-grid-desc {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.68; flex: 1; margin-bottom: 1.1rem;
}

.svc-grid-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem;
}
.svc-grid-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.18rem 0.52rem;
  background: rgba(27,159,216,0.08);
  color: var(--brand-blue);
  border: 1px solid rgba(27,159,216,0.2);
  border-radius: 2px;
}

.svc-grid-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--brand-blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.svc-grid-link:hover { gap: 0.75rem; color: var(--brand-blue-dark); }

/* featured card — taller image ratio */
.svc-grid-card--featured .svc-grid-img { aspect-ratio: 16 / 9; }
.svc-grid-card--featured .svc-grid-title { font-size: 1.65rem; }

/* Stats strip between hero and grid */
.svc-stats-strip {
  background: var(--bg-section-deep);
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
  padding: 2rem 0;
}
.svc-stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--bg-card-border);
}
.svc-stat:last-child { border-right: none; }
.svc-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 2.2rem; line-height: 1;
  color: var(--brand-blue); display: block;
}
.svc-stat-label {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-faint);
  font-weight: 600; margin-top: 0.3rem;
}

/* nav dropdown divider */
.dropdown-divider { border-color: var(--bg-card-border) !important; margin: 0.25rem 0; }
