/* ==================================================  
   CSS RESET & NORMALIZATION
   ================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
}
button:focus, input:focus, textarea:focus, select:focus {
  outline: none;
}


/* ===========================
   BRAND & DESIGN VARIABLES
   =========================== */
:root {
  --color-primary: #183153;
  --color-primary-dark: #121F34;
  --color-secondary: #1CA3A3;
  --color-accent: #F6F6F6;
  --color-metal: #B9BAC1;
  --color-bg: #17181A;
  --color-bg-alt: #212225;
  --color-muted: #3F4A5A;
  --color-light: #FFFFFF;
  --color-shadow: rgba(12,24,35,0.17);
  --color-shadow-strong: rgba(24,49,83,0.40);
  --color-text: #F6F6F6;
  --color-text-dark: #22252A;
  --color-text-muted: #B9BAC1;
  --radius-md: 12px;
  --radius-sm: 7px;
  --radius-lg: 22px;
  --shadow: 0 2px 12px var(--color-shadow);
  --shadow-hover: 0 4px 30px var(--color-shadow-strong);
  --font-display: 'Montserrat', 'Arial Black', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
  --trans: 0.22s cubic-bezier(.74,.01,.25,1);
}

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
}

body {
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

.container {
  width: 94%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 8px;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--color-light);
  margin-bottom: 20px;
  text-shadow: 0 2px 6px var(--color-shadow);
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 24px;
  line-height: 1.16;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px var(--color-shadow);
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.18;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, ul li, ol li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.62;
  margin-bottom: 16px;
  color: var(--color-text);
}
strong {
  color: var(--color-secondary);
}

ul, ol {
  margin-left: 1.3em;
  margin-bottom: 16px;
  list-style: disc inside;
}
li {
  margin-left: 0;
  margin-bottom: 8px;
  line-height: 1.52;
}
.text-section ul, .content-wrapper ul {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}
.text-section ul li, .content-wrapper ul li {
  position: relative;
  padding-left: 28px;
}
.text-section ul li:before, .content-wrapper ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px; height: 2.2px;
  background: var(--color-secondary);
  border-radius: 2px;
}

/* ===============================
   HEADER & GLOBAL NAVIGATION  
   =============================== */
header {
  width: 100%;
  background: var(--color-bg-alt);
  box-shadow: 0 2px 16px var(--color-shadow);
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 64px;
}
header img {
  max-height: 50px;
  height: 40px;
  margin-right: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 1.4em;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--color-light);
  letter-spacing: 0.02em;
  transition: color var(--trans);
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-secondary);
}
header .btn-primary {
  margin-left: 22px;
  padding: 0.75em 1.4em;
}
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1000px) {
  header .container nav {
    gap: 1em;
  }
}
@media (max-width: 860px) {
  header .btn-primary {
    margin-left: 10px;
    padding: 0.72em 1.2em;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 0 7px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-secondary);
    background: none;
    border: none;
    margin-left: 12px;
    cursor: pointer;
    height: 44px;
    width: 44px;
    transition: color var(--trans);
    z-index: 101;
  }
}

/* ===============
   MOBILE NAV MENU
   =============== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  color: var(--color-light);
  z-index: 1500;
  transform: translateX(-102vw);
  transition: transform var(--trans);
  box-shadow: 3px 0 22px var(--color-shadow-strong);
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  transition: transform 0.3s cubic-bezier(.77,0,.18,1.00), opacity 0.25s;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2.3rem;
  position: absolute;
  top: 22px;
  right: 28px;
  z-index: 1002;
  line-height: 1;
  cursor: pointer;
  transition: color var(--trans);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin-top: 90px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: 10px 7px;
  border-radius: var(--radius-sm);
  transition: background 0.17s, color var(--trans);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(27,29,34,0.18);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============================
   MAIN SECTIONS & FLEX PATTERNS  
   =============================== */
main {
  width: 100%;
  margin: 0 auto;
  background: var(--color-bg);
  min-height: 60vh;
  overflow: hidden;
  padding-bottom: 30px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: none;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: none;
}
.cta-banner {
  background: var(--color-primary-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 35px 22px;
  margin-top: 20px;
}
.cta-banner h2 {
  color: var(--color-accent);
}
.cta-banner .btn-primary {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .container {
    width: 99%;
    max-width: 99vw;
    padding: 0 2px;
  }
  section {
    padding: 24px 4px 30px 4px;
    margin-bottom: 42px;
  }
  .content-wrapper, .text-section {
    padding: 0:
    gap: 16px;
  }
  .cta-banner {
    padding: 26px 7px;
  }
}

/* ===============
   FLEX PATTERNS
   =============== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 26px 20px;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow var(--trans), background 0.19s;
}
.card:hover {
  background: var(--color-bg);
  box-shadow: var(--shadow-hover);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 24px;
  min-width: 220px;
  transition: box-shadow var(--trans), transform 0.18s;
  border: 1.5px solid var(--color-metal);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.016);
}
.testimonial-card p {
  color: var(--color-text-dark);
  font-size: 1.09rem;
  margin-bottom: 6px;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.testimonial-card img {
  max-width: 120px;
  height: 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.service-item, .value-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-metal);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 18px 22px 18px;
  min-width: 210px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow var(--trans), background 0.22s;
}
.service-item:hover, .value-card:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-hover);
}

@media (max-width: 1000px) {
  .content-grid {
    gap: 14px;
  }
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
}

/* Cards and Custom Elements for Services/Values */
.value-card {
  margin-right: 18px;
  margin-bottom: 20px;
}
.value-card:last-child {
  margin-right: 0;
}

/* ===============================
   BUTTONS & INTERACTIVES
   =============================== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.78em 1.9em;
  font-size: 1.13rem;
  min-width: 130px;
  box-shadow: 0 2px 14px var(--color-shadow);
  cursor: pointer;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans), transform 0.18s;
)
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary-dark);
  color: var(--color-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--color-bg-alt);
  color: var(--color-accent);
  border: 2px solid var(--color-secondary);
  margin-left: 12px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
a.btn-primary {
  text-decoration: none;
  margin-top: 8px;
}

/* ===============================
   ICON STYLES
   =============================== */
.content-wrapper img, .feature-item img, .service-item img, .value-card img {
  filter: grayscale(0.6) contrast(1.2);
  margin-bottom: 9px;
  max-width: 70px;
}

/* ===============================
  FOOTER
  =============================== */
footer {
  width: 100%;
  background: var(--color-bg-alt);
  border-top: 1.5px solid var(--color-metal);
  padding: 44px 0 30px 0;
  color: var(--color-text-muted);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-bottom: 7px;
}
footer nav a {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 1.03rem;
  letter-spacing: .01em;
  transition: color var(--trans);
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
}
footer p {
  text-align: center;
  font-size: 0.97rem;
}
@media (max-width: 600px) {
  footer .container {
    padding: 0 3px;
  }
  footer nav {
    gap: 10px;
  }
}

/* ===============================
   COOKIES CONSENT BANNER
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 18px 10px 18px 25px;
  box-shadow: 0 -2px 18px var(--color-shadow);
  width: 100vw;
  min-height: 56px;
  font-size: 1rem;
  transition: opacity 0.32s var(--trans), transform 0.32s var(--trans);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.closed {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  margin-right: 15px;
  font-size: 0.97rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btn-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: var(--radius-sm);
  padding: 7px 20px;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), transform 0.13s;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
.cookie-btn-reject {
  background: transparent;
  border: 1.4px solid var(--color-metal);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 7px 19px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), border var(--trans);
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--color-bg-alt);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.cookie-btn-settings {
  background: transparent;
  color: var(--color-metal);
  font-size: 1rem;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--trans), color var(--trans);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  color: var(--color-secondary);
  background: rgba(28,163,163,.09);
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px 17px 10px;
    font-size: 0.97rem;
    gap: 9px;
  }
  .cookie-banner .cookie-btn-group {
    gap: 7px;
  }
}

/* ===============
   COOKIE MODAL
   =============== */
.cookie-modal {
  position: fixed;
  z-index: 2001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,49,83,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.29s;
}
.cookie-modal.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  min-width: 300px;
  max-width: 96vw;
  box-shadow: var(--shadow-hover);
  padding: 32px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: popIn 0.28s cubic-bezier(.77,0,.18,1.0);
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 22px;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--trans);
  z-index: 2020;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-metal);
}
.cookie-modal h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-weight: 700;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 19px; height: 19px;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-category label {
  font-size: 1.09rem;
  color: var(--color-primary-dark);
  font-weight: 600;
}
.cookie-category.essential label {
  font-style: italic;
  color: var(--color-metal);
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 14px;
}
.cookie-modal-actions button {
  padding: 7px 22px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  transition: background var(--trans), color var(--trans);
}
.cookie-modal-actions .modal-reject {
  background: var(--color-metal);
  color: var(--color-primary);
}
.cookie-modal-actions .modal-reject:hover, .cookie-modal-actions .modal-reject:focus {
  background: var(--color-secondary);
  color: var(--color-bg);
}
.cookie-modal-actions .modal-accept:hover, .cookie-modal-actions .modal-accept:focus {
  background: var(--color-primary-dark);
  color: var(--color-accent);
}
.cookie-modal-actions .modal-cancel {
  background: transparent;
  border: 1.2px solid var(--color-metal);
  color: var(--color-metal);
  padding: 7px 18px;
}
.cookie-modal-actions .modal-cancel:hover, .cookie-modal-actions .modal-cancel:focus {
  background: var(--color-bg-alt);
  color: var(--color-secondary);
}
@media (max-width: 520px) {
  .cookie-modal-dialog {
    padding: 20px 10px 18px 10px;
  }
}
@keyframes popIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===============================
   MICRO-INTERACTIONS & PROGRESS
   =============================== */
a, button {
  transition: color var(--trans), background var(--trans), box-shadow var(--trans), border var(--trans), transform 0.16s;
}
a:active, button:active {
  transform: scale(0.97);
}
*:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 7px;
}


/* ===============================
   RESPONSIVE TYPOGRAPHY & FLEX
   =============================== */
@media (max-width: 540px) {
  h1, .h1 { font-size: 1.65rem; }
  h2, .h2 { font-size: 1.15rem; }
  h3, .h3 { font-size: 1.02rem; }
  .content-wrapper, .section { padding: 9px 3px; }
}
@media (max-width: 395px) {
  h1, .h1 { font-size: 1.18rem; }
  h2, .h2 { font-size: 0.95rem; }
}

/* ===============================
   INDUSTRIAL MODERN AESTHETIC
   =============================== */
body, .container, main, section, .content-wrapper, .card, .cta-banner, .testimonial-card, .card-container, .service-item, .value-card, .footer {
  font-family: var(--font-body);
  background: none;
}
h1, h2, h3, .btn-primary, .btn-secondary {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
.section, .card, .service-item, .value-card, .testimonial-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.card, .service-item, .value-card {
  border: 1.5px solid var(--color-metal);
}
.card:hover, .service-item:hover, .value-card:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-hover);
}
.cta-banner, .testimonial-card {
  box-shadow: 0 4px 20px var(--color-shadow-strong);
  border: 2px solid var(--color-metal);
}

/* Urban/Metal Details */
h1, h2, .cta-banner {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px var(--color-shadow-strong), 0 0px 1.5px var(--color-metal);
}
.service-item, .value-card, .testimonial-card, .cta-banner {
   background: linear-gradient(112deg, var(--color-bg-alt) 76%, var(--color-bg) 100%);
   border-bottom: 3.5px solid var(--color-secondary);
}

/* Accent Metallic Lines for Authencity */
.card:before, .service-item:before, .value-card:before {
  content: '';
  display: block;
  width: 32px;
  height: 4px;
  background: var(--color-metal);
  border-radius: 3px;
  margin-bottom: 14px;
}
.card:before { background: var(--color-secondary); }

/* ===============================
   SPACING ENFORCEMENT & NO OVERLAPPING
   =============================== */
.card-container > *,
.content-grid > *,
.value-card,
.service-item,
.card,
.testimonial-card,
.feature-item {
  margin-bottom: 20px !important;
}
.card-container, .content-grid {
  gap: 24px !important;
}
.text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}

/* ===============================
   RAISED VISUAL HIERARCHY
   =============================== */
.section:not(:last-of-type) {
  border-bottom: 2.5px solid var(--color-metal);
}
h2, .h2 {
  padding-left: 3px;
  border-left: 7px solid var(--color-secondary);
  padding-bottom: 2px;
  margin-bottom: 23px;
}

/* ===============================
   MISC
   =============================== */
::selection {
  background: var(--color-secondary);
  color: var(--color-primary);
}
