/* ----------------------------------------------
   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, b, 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #20232A;
  color: #F4F6F8;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #5CBF74;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #94EBC3;
  outline: none;
}
ul, ol {
  padding-left: 20px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 10px;
  text-align: left;
}

/* ----------------------------------------------
   BRAND FONTS
-----------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F4F6F8;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
h4 { font-size: 1.125rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; margin-bottom: 4px; }
.subtitle {
  color: #B2B9BF;
  font-size: 1.125rem;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
p, li, dt, dd {
  font-size: 1rem;
  color: #E1E5E7;
}
strong {
  font-weight: 700;
  color: #F4F6F8;
}

/* ----------------------------------------------
   UTILITY & BASE CLASSES
-----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Section spacing (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #23262D;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(30,32,38,0.08);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------------------------------------
   INDUSTRIAL MODERN: COLORS & EFFECTS
-----------------------------------------------*/
:root {
  --clr-primary: #2C4E72;
  --clr-secondary: #5CBF74;
  --clr-accent: #F4F6F8;
  --clr-bg: #20232A;
  --clr-dark: #14161A;
  --clr-metal: #798897;
  --clr-muted: #B2B9BF;
  --clr-card: #23262D;
  --clr-shadow: rgba(33,42,60, 0.12);
  --shadow-main: 0 2px 14px 0 var(--clr-shadow);
  --radius-main: 12px;
  --radius-card: 16px;
}

body {
  background: var(--clr-bg);
}

/* ----------------------------------------------
   HEADER & NAVIGATION
-----------------------------------------------*/
header {
  background-color: var(--clr-dark);
  border-bottom: 1px solid #252933;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
header img {
  height: 48px;
  min-width: 110px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #E1E5E7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  padding: 8px 0;
}
nav a:not(.cta-primary):after {
  display: block;
  content: '';
  height: 2px;
  width: 0;
  background: var(--clr-secondary);
  transition: width 0.18s;
  position: absolute;
  bottom: 0;
  left: 0;
}
nav a:hover:after, nav a:focus:after {
  width: 60%;
}
nav a.cta-primary {
  background: linear-gradient(90deg,#2C4E72 80%,#5CBF74 100%);
  color: #F4F6F8;
  border: none;
  border-radius: var(--radius-main);
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(44,78,114,0.08);
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.16s;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: linear-gradient(90deg,#365C89 70%,#85F5B4 100%);
  color: #20232A;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 30px 0 rgba(44,78,114,0.14);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #F4F6F8;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  margin-left: 8px;
  z-index: 991;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--clr-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #181A1D;
  z-index: 1002;
  transform: translateX(100%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.8,.04,.63,1.41), opacity .25s;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--clr-accent);
  font-size: 2.4rem;
  cursor: pointer;
  margin-right: 30px;
  margin-bottom: 22px;
  transition: color 0.2s;
  z-index: 1003;
}
.mobile-menu-close:focus {
  color: var(--clr-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--clr-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 14px 36px 14px 0;
  border-radius: 0 18px 18px 0;
  background: none;
  transition: background 0.2s, color 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-secondary);
  color: #222c2c;
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  nav {
    display: none;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ----------------------------------------------
   MAIN LAYOUT & SECTION STYLES
-----------------------------------------------*/
main {
  flex: 1 0 auto;
  background: var(--clr-bg);
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section .container {
  padding: 0 12px;
}

/* Feature grid and service grid */
.feature-grid, .service-grid, .testimonial-grid, .blog-teaser-list, .case-studies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.feature-grid > div, .service-grid > div {
  background: var(--clr-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-main);
  padding: 28px 22px 20px 22px;
  min-width: 240px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border-left: 5px solid var(--clr-metal);
  transition: box-shadow .26s, border-color .2s, transform .14s;
}
.feature-grid > div:hover, .service-grid > div:hover {
  border-color: var(--clr-secondary);
  box-shadow: 0 4px 32px 0 rgba(92,191,116,0.12);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img, .service-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  filter: grayscale(35%) contrast(1.2) brightness(1.18);
}

/* Blog teasers */
.blog-teaser-list {
  gap: 28px;
  margin-bottom: 32px;
}
.blog-teaser-list article {
  background: var(--clr-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-main);
  padding: 25px 22px;
  flex: 1 1 290px;
  min-width: 260px;
  transition: box-shadow .22s, transform .15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-teaser-list article:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 4px 28px 0 rgba(44,78,114,0.13);
}
.blog-teaser-list h2 {
  color: var(--clr-secondary);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.blog-teaser-list p {
  color: #CFD8DC;
}

/* Blog categories */
.blog-categories {
  background: #21242B;
  border-radius: 11px;
  box-shadow: 0 2px 14px 0 rgba(33,42,60,0.09);
  padding: 16px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-categories h3 {
  color: var(--clr-metal);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.blog-categories ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-categories a {
  color: var(--clr-secondary);
  font-weight: 500;
  font-size: 1rem;
}

/* Newsletter form */
.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.newsletter-signup input[type="email"] {
  padding: 12px 16px;
  border-radius: 8px 0 0 8px;
  border: none;
  background: #292e36;
  color: var(--clr-accent);
  font-size: 1rem;
  width: 260px;
}
.newsletter-signup button {
  background: var(--clr-secondary);
  color: #282c33;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.19s, color 0.14s;
}
.newsletter-signup button:hover, .newsletter-signup button:focus {
  background: #7FD9A1;
  color: #16191e;
}
.newsletter-signup input:focus {
  outline: 2px solid var(--clr-secondary);
}

input[type='search'] {
  padding: 10px 15px;
  background: #23262D;
  border: 1.5px solid #586777;
  color: var(--clr-accent);
  border-radius: 7px;
  width: 270px;
  transition: border-color .14s;
}
input[type='search']:focus {
  border-color: var(--clr-secondary);
}

/* Content lists */
ul li, ol li {
  margin-bottom: 9px;
}
ol {
  counter-reset: li;
  list-style: decimal inside;
}
ol li {
  position: relative;
}

/* ----------------------------------------------
   TESTIMONIALS, CASES, CARDS
-----------------------------------------------*/
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #F4F6F8;
  color: #23262D;
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 rgba(30,32,38,0.08);
  min-width: 250px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 28px 18px 26px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .19s, transform .13s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px 0 rgba(44,78,114,0.09);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card .stars {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FFE26C;
  font-size: 1.3em;
  margin-bottom: 10px;
}
.testimonial-card p {
  color: #23262D;
}
.testimonial-card span {
  color: #5CBF74;
  font-size: 0.97rem;
  margin-top: 5px;
  font-style: italic;
}

.case-studies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.case-study {
  background: var(--clr-card);
  color: var(--clr-accent);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px 0 rgba(33,42,60,0.10);
  padding: 28px 22px 20px 22px;
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.case-study h3 { color: var(--clr-secondary); margin-bottom: 10px; }
.case-study strong { color: var(--clr-metal); font-weight: 500; }

/* ----------------------------------------------
   CTA BUTTONS
-----------------------------------------------*/
.cta-primary, .cta-secondary {
  display: inline-block;
  border-radius: var(--radius-main);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  cursor: pointer;
  text-align: center;
  outline: none;
  padding: 12px 30px;
  margin-top: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 rgba(44,78,114,0.07);
  border: none;
  transition: background 0.18s, color 0.16s, transform 0.13s;
}
.cta-primary {
  background: linear-gradient(90deg,#2C4E72 80%,#5CBF74 100%);
  color: #F4F6F8;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#365C89 70%,#7EE4B0 100%);
  color: #20232A;
  transform: scale(1.035) translateY(-2px);
}
.cta-secondary {
  background: #23262D;
  color: #5CBF74;
  border: 2px solid #5CBF74;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #5CBF74;
  color: #21242B;
  transform: scale(1.03) translateY(-2px);
}

/* ----------------------------------------------
   PRICING TABLES (preise.html)
-----------------------------------------------*/
.pricing-table {
  background: var(--clr-card);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(44,78,114,0.08);
  width: 100%;
  margin-bottom: 24px;
}
.pricing-table th {
  color: var(--clr-secondary);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-bottom: 2.5px solid #374054;
}
.pricing-table td {
  color: var(--clr-accent);
  font-size: 1rem;
  border-bottom: 1px solid #2C3546;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ----------------------------------------------
   DL FAQ (preise.html)
-----------------------------------------------*/
dl {
  margin-top: 16px;
}
dt {
  font-weight: bold;
  color: var(--clr-secondary);
  margin-top: 12px;
}
dd {
  margin-bottom: 10px;
  margin-left: 0;
  color: #E1E5E7;
}

/* ----------------------------------------------
   FOOTER
-----------------------------------------------*/
footer {
  background: #17191C;
  color: #B2B9BF;
  margin-top: 70px;
  padding-top: 32px;
  padding-bottom: 10px;
}
footer .container {
  padding: 0 20px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid #22262A;
}
.footer-wrapper > * {
  margin-bottom: 16px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
.footer-menu a {
  color: var(--clr-metal);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: color 0.18s;
  font-size: 1rem;
}
.footer-menu a:hover {
  color: var(--clr-secondary);
}
.footer-contact p, .footer-contact a {
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}
.footer-contact a:hover {
  color: var(--clr-secondary);
}
.footer-social {
  min-width: 90px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(75%) brightness(1.1);
  transition: filter 0.18s, transform 0.15s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
  transform: scale(1.18);
}
.footer-bottom {
  text-align: center;
  color: #586777;
  font-size: 0.98rem;
  margin-top: 32px;
}

/* ----------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-----------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 420px;
  z-index: 2000;
  background: #20232A;
  color: #F4F6F8;
  border-radius: 15px;
  box-shadow: 0 2px 30px 0 rgba(44,78,114,0.18);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInUp .4s cubic-bezier(.8,.04,.63,1.41);
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(60px) scale(.95) }
  to { opacity:1; transform:translateY(0) scale(1) }
}
.cookie-banner strong {
  color: var(--clr-secondary);
}
.cookie-banner button {
  min-width: 110px;
  margin-right: 6px;
  margin-bottom: 4px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.cookie-accept {
  background: var(--clr-secondary);
  color: #181A1D;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #5CBF74;
  color: #1c2128;
}
.cookie-reject {
  background: #404756;
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #272C33;
}
.cookie-settings {
  background: none;
  color: var(--clr-secondary);
  border: 1.6px solid var(--clr-secondary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--clr-secondary);
  color: #20232A;
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3000;
  top:0; left:0; right:0; bottom:0;
  background: rgba(30,33,38,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .26s cubic-bezier(.8,.04,.63,1.41);
}
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
.cookie-modal {
  background: #23262D;
  color: #F4F6F8;
  border-radius: 18px;
  box-shadow: 0 6px 48px 0 rgba(44,78,114,0.18);
  width: 95vw;
  max-width: 420px;
  padding: 24px 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInUp .33s cubic-bezier(.8,.04,.63,1.41);
  position: relative;
}
.cookie-modal h3 {
  color: var(--clr-secondary);
  font-size: 1.16rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 10px 0;
  font-size: 1rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal input[type='checkbox'] {
  width: 22px; height: 22px;
  accent-color: var(--clr-secondary);
}
.cookie-modal .cookie-essential {
  font-weight: bold;
  color: var(--clr-metal);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 17px;
  margin-top: 10px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--clr-accent);
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal .cookie-close:focus {
  color: var(--clr-secondary);
}

/* ----------------------------------------------
   MEDIA QUERIES (RESPONSIVE)
-----------------------------------------------*/
@media (max-width: 991px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
  .feature-grid > div, .service-grid > div, .blog-teaser-list article,
  .testimonial-card, .case-study {
    min-width: 180px;
    flex: 1 1 180px;
    padding: 22px 14px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .section, section {
    margin-bottom: 34px;
    padding: 24px 0;
  }
  .content-wrapper {
    gap: 10px;
    padding: 0;
  }
  .feature-grid, .service-grid, .testimonial-slider,
  .testimonial-grid, .blog-teaser-list, .case-studies-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-grid > div, .blog-teaser-list article,
  .testimonial-card, .case-study {
    flex: 1 1 90vw;
    min-width: 0;
    width: 100%;
    padding: 18px 10px;
  }
  .newsletter-signup {
    flex-direction: column;
    gap: 8px;
  }
  input[type='search'] {
    width: 98%;
    min-width: 0;
  }
  .cookie-banner {
    max-width: 98vw;
    left: 1vw;
    transform: none;
    padding: 18px 7px 15px 7px;
    font-size: 0.96rem;
  }
}
@media (max-width: 480px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* ----------------------------------------------
   MICRO-INTERACTIONS & ANIMATIONS
-----------------------------------------------*/
.card, .feature-grid > div, .service-grid > div, .blog-teaser-list article,
.testimonial-card, .case-study {
  transition: box-shadow 0.23s, transform 0.13s;
}
.card:hover, .feature-grid > div:hover, .service-grid > div:hover,
.blog-teaser-list article:hover, .testimonial-card:hover, .case-study:hover {
  box-shadow: 0 6px 36px 0 rgba(44,78,114,0.13);
  transform: scale(1.025) translateY(-3px);
}

input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
button, [type="button"], [type="submit"] {
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
}

/* ----------------------------------------------
   SCROLLBAR (Industrial Metal Look)
-----------------------------------------------*/
::-webkit-scrollbar {
  width: 14px;
  background: #15171D;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #23262D 70%, #475B65 100%);
  border-radius: 7px;
  border: 2.5px solid #14161A;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #5CBF74 0%, #23262D 100%);
}

/* ----------------------------------------------
   SELECTION (Contrast for industrial feel)
-----------------------------------------------*/
::selection {
  background: #5CBF74;
  color: #17191C;
}

/* ----------------------------------------------
   MISC: Additional details
-----------------------------------------------*/
hr {
  border: 0;
  border-top: 1px solid #363B44;
  margin: 32px 0;
}
small {
  color: #B2B9BF;
}
.hide { display: none !important; }

/* ----------------------------------------------
   FLEXBOX SAFEGUARD: No Grid, No Columns
-----------------------------------------------*/
/* (All multi-column layouts use flexbox and gap, no grid/columns anywhere) */
