/* ----------------------------------------------
   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, main, 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;
}
article, aside, details, figcaption, figure, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #171B1F;
  color: #EBEDEF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #F9C846;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(.55,0,.1,1);
}
a:hover, a:focus {
  color: #ffd95f;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}
button, .cta {
  cursor: pointer;
}

/* ----------------------------------------------
   VARIABLE FONTS FOR INDUSTRIAL MODERN LOOK
-----------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body {
  --primary: #2A587A;
  --primary-dark: #193243;
  --secondary: #F9C846;
  --secondary-light: #fff7d3;
  --accent: #FFFFFF;
  --gray-dark: #23282D;
  --gray: #3C434A;
  --gray-medium: #545C62;
  --gray-light: #C5C9CC;
  --industrial-steel: #7B8A99;
  --industrial-cement: #49505A;
  --shadow-dark: 0 3px 16px 0 rgba(25,35,50,0.18);
  --shadow-light: 0 1.5px 8px 0 rgba(46,50,58,0.08);
  --card-radius: 16px;
}

/* ----------------------------------------------
   FLEXBOX CONTAINER BASICS
-----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 20px;
}
.content-wrapper, .text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ----------------------------------------------
   INDUSTRIAL MODERN TYPOGRAPHY
-----------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F9C846;
  font-weight: 900;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #F9C846;
  text-shadow: 0 2px 8px rgba(40,60,85,0.18);
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--accent);
}
h4, h5, h6 {
  color: #C5C9CC;
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  color: #EBEDEF;
  font-size: 1rem;
  font-weight: 400;
}
strong, b {
  color: #F9C846;
  font-weight: 700;
}

/* TESTIMONIAL QUOTES – readable dark on light */
.testimonial-card p,
.testimonial-card span {
  color: #23282D !important;
}

/* ----------------------------------------------
   BUTTONS (CTAs): Industrial Modern
-----------------------------------------------*/
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--card-radius);
  border: 2px solid var(--secondary);
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  box-shadow: 0 2.5px 10px rgba(32,38,46,0.09);
  margin-top: 10px;
}
.cta.primary {
  background: var(--secondary);
  color: #23282D;
  border-color: var(--secondary);
  box-shadow: 0 2px 12px rgba(255, 209, 40, 0.10);
}
.cta.primary:hover, .cta.primary:focus {
  background: #ffd95f;
  color: #171B1F;
  border-color: #ffd95f;
  box-shadow: 0 4px 24px rgba(255, 209, 40, 0.15);
}
.cta:hover, .cta:focus {
  background: var(--primary-dark);
  color: #F9C846;
  border-color: #7B8A99;
}

/* ----------------------------------------------
   CARD & FLEX LAYOUTS: Industrial Modern
-----------------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-dark);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-dark);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg, #23282D);
  color: #fff;
  padding: 28px 20px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-dark);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 314px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid var(--industrial-steel);
  transition: box-shadow 0.18s, border 0.19s, transform 0.20s cubic-bezier(.24,.85,.52,1.3);
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px rgba(42, 88, 122, 0.18), 0 1.5px 8px 0 rgba(46,50,60,0.10);
  border-color: #F9C846;
  transform: translateY(-4px) scale(1.012);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0 12px 0;
  border-bottom: 1px solid var(--gray-medium);
}
.feature-item:last-child {
  border-bottom: none;
}

/* ----------------------------------------------
   HEADER & NAVIGATION
-----------------------------------------------*/
header {
  width: 100%;
  background: #171B1F;
  box-shadow: 0 6px 26px rgba(38,53,71,0.12);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 25;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 12px;
}
header img {
  height: 54px;
  margin-right: 18px;
  filter: grayscale(18%) contrast(1.08) drop-shadow(0px 6px 14px rgba(50,65,80,0.13));
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F9C846;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.18s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #23282D;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  margin-left: 14px;
  padding: 8px 14px;
  font-size: 2rem;
  background: none;
  color: #F9C846;
  border-radius: 8px;
  border: 2px solid #F9C846;
  box-shadow: 0 2px 12px rgba(42,88,122,0.08);
  transition: background 0.18s, color 0.16s, border 0.16s;
  z-index: 210;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f9c846;
  color: #23282D;
  border-color: #ffd95f;
}

/* ----------------------------------------------
   MOBILE MENU OVERLAY
-----------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #23282dF0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: opacity 0.32s cubic-bezier(.72,.11,.37,1.07), transform 0.34s cubic-bezier(.55,0,.1,1);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 32px 12px 0;
  font-size: 2.4rem;
  background: none;
  color: #F9C846;
  border-radius: 10px;
  border: 2px solid #F9C846;
  padding: 8px 14px;
  transition: background 0.14s, color 0.14s, border 0.16s;
  z-index: 220;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f9c846;
  color: #23282D;
  border-color: #ffd95f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 70vh;
  margin-top: 40px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFF;
  background: #23282D;
  border-radius: 12px;
  padding: 18px 42px;
  margin: 0 0 5px 0;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9C846;
  color: #23282D;
}

/* ----------------------------------------------
   MAIN AND PAGE LAYOUT
-----------------------------------------------*/
main {
  flex: 1 1 auto;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-dark);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-dark);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: inherit;
}
ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 0 0;
}
ul > li {
  position: relative;
  padding-left: 36px;
  font-size: 1.03rem;
  color: #ebedef;
}
ul > li:before {
  content: '';
  display: inline-block;
  background: var(--secondary);
  width: 20px; height: 4px;
  border-radius: 2px;
  position: absolute;
  left: 0; top: 14px;
}

/* CUSTOM LIST STYLES FOR CARDS/HIGHLIGHTS */
.content-wrapper ul {
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.content-wrapper ul li {
  flex: 1 1 260px;
  background: var(--industrial-cement);
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(30,36,45,0.08);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.3px solid var(--industrial-steel);
  transition: border 0.13s, box-shadow 0.16s, background 0.2s;
}
.content-wrapper ul li:hover {
  border-color: var(--secondary);
  background: #2B3A45;
  box-shadow: 0 6px 18px rgba(249,200,70,0.14);
}
.content-wrapper ul li img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  filter: grayscale(45%) brightness(0.91) drop-shadow(0 0 2px #23282D30);
}
.content-wrapper ul li h3 {
  font-size: 1.09rem;
  color: #F9C846;
}
.content-wrapper ul li p {
  color: #F7F7F7;
  font-size: 0.98rem;
  margin-top: 6px;
}

/* ----------------------------------------------
   TESTIMONIAL CARD: High contrast, modern
-----------------------------------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #23282D;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 16px 0 rgba(25,35,50,0.12);
  padding: 20px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  border: 1px solid #C5C9CC;
  transition: box-shadow 0.18s;
}
.testimonial-card span {
  font-size: 1rem;
  color: #7B8A99;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 36px 0 rgba(42,88,122,0.12), 0 1.5px 8px 0 rgba(46,50,60,0.10);
}

/* ----------------------------------------------
   WEATHER WIDGET/ QUICK LINKS STYLE
-----------------------------------------------*/
.weather-widget {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #23282D;
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: 0 1.5px 9px rgba(30,36,45,0.08);
  border: 1px solid #7B8A99;
  margin-bottom: 14px;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1.09rem;
}
.quick-links a {
  background: #193243;
  color: #F9C846;
  padding: 6px 14px;
  border-radius: 7px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.14s, color 0.13s;
}
.quick-links a:hover {
  background: #F9C846;
  color: #23282D;
}

/* ----------------------------------------------
   FOOTER STYLES
-----------------------------------------------*/
footer {
  width: 100vw;
  background: #171B1F;
  padding: 36px 0 30px 0;
  border-top: 2.5px solid #2A587A;
  box-shadow: 0 -3px 14px rgba(38,53,71,0.14);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
footer img {
  height: 50px;
  margin-right: 22px;
  filter: grayscale(18%) contrast(1.08);
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
footer nav a {
  color: #F9C846;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 7px;
  padding: 7px 14px;
  background: transparent;
  transition: background 0.12s, color 0.12s;
}
footer nav a:hover {
  background: #23282D;
  color: #fff;
}
.contact-details {
  color: #F9C846;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #23282D;
  padding: 16px 28px;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(30,36,45,0.08);
  border: 1px solid #7B8A99;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details img {
  display: inline-block;
  height: 24px;
  width: 24px;
  margin-right: 6px;
  vertical-align: middle;
  filter: grayscale(38%) brightness(0.91);
}
.contact-details span {
  color: #C5C9CC;
  font-size: 0.98rem;
}

/* ----------------------------------------------
   MAP WIDGET
-----------------------------------------------*/
.map {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 9px;
}
.map img {
  height: 34px;
  width: 34px;
  filter: grayscale(38%) brightness(0.91);
}
.map span {
  color: #C5C9CC;
  font-size: 0.97rem;
}

/* ----------------------------------------------
   RESPONSIVE DESIGN
-----------------------------------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 940px;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  header .container,
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  section, .section {
    padding: 26px 8px;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper ul, .content-wrapper .ul {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.04rem;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    padding: 0 9px;
    align-items: flex-start;
  }
  .contact-details {
    padding: 13px 12px;
    font-size: 0.96rem;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.76rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  section, .section {
    padding: 18px 4vw;
    margin-bottom: 34px;
    border-radius: 7px;
  }
  .card {
    min-width: 0;
    border-radius: 8px;
    padding: 18px 9px;
  }
  .testimonial-card {
    border-radius: 9px;
    padding: 14px 7px;
  }
  .cta, .cta.primary {
    font-size: 1rem;
    padding: 10px 16px;
    border-radius: 8px;
  }
  .mobile-nav a {
    font-size: 1.12rem;
    padding: 13px 23px;
    border-radius: 8px;
  }
}

/* ----------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-----------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #21252a;
  color: #fff;
  width: 100vw;
  z-index: 4000;
  box-shadow: 0 -6px 24px rgba(11,14,22,0.23);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.32s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  flex: 1 1 340px;
  color: #fff;
  line-height: 1.47;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn, .cookie-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 2px solid var(--secondary);
  background: transparent;
  color: #F9C846;
  margin: 0 0 0 0;
  transition: background 0.19s, color 0.13s, border 0.13s;
  box-shadow: 0 1px 8px rgba(30,36,45,0.06);
}
.cookie-btn-primary {
  background: var(--secondary);
  color: #23282D;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #ffe388;
  color: #171B1F;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 12px 22px 12px;
    font-size: 0.97rem;
  }
  .cookie-banner-actions {
    gap: 10px;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(28,32,37,0.93);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay .3s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeInOverlay {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #23282D;
  border-radius: 16px;
  box-shadow: 0 6px 40px rgba(25,35,50,0.18);
  min-width: 330px;
  max-width: 99vw;
  padding: 38px 38px 31px 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  animation: revealModal .29s cubic-bezier(.55,0,.18,1);
}
@keyframes revealModal {
  0% { opacity: 0; transform: scale(0.9); }
  75% { opacity: 0.93; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  color: #F9C846;
  background: none;
  border: none;
  font-size: 2rem;
  border-radius: 7px;
  padding: 2px 7px;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F9C846;
  color: #23282D;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #F6F7FA;
  border-radius: 7px;
  padding: 13px 13px 13px 18px;
  border: 1px solid #C5C9CC;
}
.cookie-category strong {
  min-width: 160px;
  color: var(--gray-dark);
}
.cookie-category label {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-switch {
  width: 40px;
  height: 22px;
  border-radius: 12px;
  background: #d9d9da;
  position: relative;
  transition: background 0.15s;
  margin-right: 8px;
  cursor: pointer;
}
.cookie-switch input {
  display: none;
}
.cookie-switch span {
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #F9C846;
  transition: left 0.15s;
}
.cookie-switch input:checked + span {
  left: 20px;
  background: #2A587A;
}
.cookie-category.essential {
  background: #eaeaea;
  border-color: #e3ecf4;
}
.cookie-category.essential strong:after {
  content: " (immer aktiv)";
  font-size: 0.92em;
  color: #90a1af;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 20px;
}
@media (max-width: 440px) {
  .cookie-modal {
    min-width: 0;
    padding: 22px 7vw 17px 7vw;
    border-radius: 10px;
    gap: 16px;
  }
  .cookie-categories, .cookie-modal-actions {
    gap: 12px;
  }
}

/* -----------------------------------
  UTILITY CLASSES: Spacing, Shadows, etc.
------------------------------------*/
.mt-1 {margin-top: 8px;}
.mt-2 {margin-top:16px;}
.mt-3 {margin-top:24px;}
.mb-1 {margin-bottom:8px;}
.mb-2 {margin-bottom:16px;}
.mb-3 {margin-bottom:24px;}
.gap8 {gap:8px;}
.gap16 {gap:16px;}
.gap24 {gap:24px;}
.shadow-dark { box-shadow: var(--shadow-dark); }
.shadow-light { box-shadow: var(--shadow-light); }
.rounded { border-radius: var(--card-radius); }

/* ----------------------------------------
   SIMPLE FADE-IN ANIMATIONS FOR CONTENT
-----------------------------------------*/
[data-animate], .fade-in {
  animation: fadeInAppear 0.7s ease 0.08s both;
}
@keyframes fadeInAppear {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}

