/* ===============================================================
   UrbanZeit Duisburg – Monochrome Sophisticated CSS
   Brand: Klar, urban, inspirierend, monochrom, sophisticated
   Font: Oswald (display), Roboto (body)
   Color Palette: #2A2C32 (primary), #8A918E (secondary), #E5E7EB (accent), #fff, #000
   =============================================================== */
/* ==== RESET & BASE ============================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  background: #fff;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  color: #18191b;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  font-size: 1rem;
  line-height: 1.65;
  /* Prevent horizontal scroll */
  overflow-x: hidden;
}
::selection {
  background: #2A2C32;
  color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.15;
  color: #131417;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 14px;
}
p, ul, ol, li {
  font-size: 1.02rem;
  color: #2A2C32;
}
p {
  margin-bottom: 12px;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
strong {
  font-weight: 600;
  color: #222;
}
a {
  color: #2A2C32;
  text-decoration-skip-ink: auto;
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #000;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
hr {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 24px 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.text-section ul {
  list-style: disc inside;
}
.text-section img {
  width: 1.3em;
  margin-right: 8px;
  vertical-align: middle;
  filter: grayscale(1) contrast(1.6);
}
/* ==== LAYOUT SPACING & FLEXBOX ========================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34, 35, 37, 0.04);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(42,44,50,0.10);
  padding: 28px 22px;
  transition: box-shadow 0.24s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 16px rgba(34,35,37,0.16);
  transform: translateY(-2px) scale(1.012);
  z-index: 2;
}
.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: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f7f8fa;
  border-left: 5px solid #2A2C32;
  border-radius: 12px;
  box-shadow: 0 0 16px 0 rgba(15,18,25,0.025);
}
.testimonial-card p {
  color: #111;
  font-style: italic;
  font-size: 1.02rem;
}
.testimonial-card strong {
  color: #2A2C32;
  font-size: 1rem;
  margin-top: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ==== HEADER & NAVIGATION ==================== */
header {
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(34, 35, 37, 0.02);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 16px 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  display: block;
  padding: 8px 0 6px 0;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  font-size: 1.06rem;
  color: #2A2C32;
  background: transparent;
  border: none;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.21s, border-bottom 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #000;
  border-bottom: 2px solid #2A2C32;
  background: #f3f3f6;
}
header a.cta-btn {
  margin-left: auto;
  margin-right: 0;
  padding: 10px 28px;
  background: #2A2C32;
  color: #fff;
  border-radius: 24px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 22px -6px rgba(42,44,50,0.10);
  border: none;
  text-decoration: none;
  transition: background 0.2s, color 0.21s, box-shadow 0.21s, transform 0.21s;
  position: relative;
}
header a.cta-btn:hover, header a.cta-btn:focus {
  background: #131417;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 8px 32px -6px rgba(22, 23, 25, 0.15);
}
/* ==== MOBILE MENU =========================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 501;
  width: 46px;
  height: 46px;
  background: #2A2C32;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 2rem;
  transition: background 0.19s;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(42,44,50,0.13);
}
.mobile-menu-toggle:active {
  background: #18191b;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background: #232325ee;
  color: #fff;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  z-index: 601;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.43,0.13,0.23,0.96);
  box-shadow: -5px 0 30px 0 rgba(31,31,32,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  padding: 18px 22px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E5E7EB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.19rem;
  color: #fff;
  text-decoration: none;
  padding: 15px 0;
  transition: color 0.18s, padding-left 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E5E7EB;
  padding-left: 8px;
}
/* ==== MAIN CTAs =========================== */
.cta-btn {
  display: inline-block;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  background: #fff;
  color: #2A2C32;
  border-radius: 24px;
  font-size: 1.06rem;
  font-weight: 500;
  border: 2px solid #2A2C32;
  box-shadow: 0 2px 12px 0 rgba(27,27,29,0.04);
  padding: 11px 28px;
  margin-top: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.19s, border 0.19s, transform 0.12s, box-shadow 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2A2C32;
  color: #fff;
  border-color: #18191b;
  box-shadow: 0 6px 22px -6px rgba(42,44,50,0.15);
  transform: translateY(-2px) scale(1.03);
}
/* ==== LISTS & ICONS ========================= */
ul, .text-section ul {
  list-style: none;
  padding-left: 0;
}
.section ul li, .text-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.04rem;
}
.section ul img, .text-section ul img {
  width: 1.1em;
  margin-right: 6px;
  vertical-align: middle;
  filter: grayscale(1) contrast(1.5);
}
/* ==== FOOTER ============================= */
footer {
  background: #2A2C32;
  color: #fff;
  padding: 34px 0 22px 0;
  margin-top: 48px;
  box-shadow: 0 -2px 12px 0 rgba(31,32,35,0.04);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}
footer nav a {
  color: #E5E7EB;
  text-decoration: none;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  letter-spacing: 0.012em;
  transition: color 0.15s;
  font-size: 1rem;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer .text-section span {
  font-size: 1rem;
  color: #c7cacea;
}
/* ==== COOKIE CONSENT BANNER & MODAL ============ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #1A1A1A;
  color: #fff;
  border-top: 2px solid #2A2C32;
  padding: 26px 18px 20px 18px;
  box-shadow: 0 -3px 32px 0 rgba(31,32,35,0.13);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  animation: cookieBannerIn 0.6s cubic-bezier(.72,-0.03,.37,1.37);
}
@keyframes cookieBannerIn { from {transform: translateY(120%);} to{ transform: translateY(0);}}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin: 0 12px 0 0;
}
.cookie-btn {
  background: #2A2C32;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  margin-right: 7px;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, transform 0.14s;
  box-shadow: 0 2px 8px 0 rgba(42,44,50,0.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #000;
  color: #fff;
  transform: scale(1.045);
}
.cookie-settings-btn {
  background: #fff;
  color: #2A2C32;
  border: 1px solid #2A2C32;
  border-radius: 22px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  margin-right: 7px;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, border 0.13s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #2A2C32;
  color: #fff;
}
/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(28,29,34,0.69);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.34s cubic-bezier(.72,-0.03,.37,1.12);
}
@keyframes cookieModalIn { from {opacity:0;} to{ opacity:1;}}
.cookie-modal {
  background: #fff;
  color: #232325;
  border-radius: 22px;
  max-width: 410px;
  width: 90%;
  padding: 38px 28px 28px;
  box-shadow: 0 10px 60px 0 rgba(32,36,40,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalPop 0.4s cubic-bezier(.61,-0.07,.44,1.2);
}
@keyframes cookieModalPop { from {transform:scale(.84);} to{ transform:scale(1);}}
.cookie-modal h3 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.24rem;
  font-weight: 500;
  color: #2A2C32;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
  gap: 10px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #2A2C32;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #2A2C32;
  font-size: 1.64rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #18191b;
}
.cookie-modal .cookie-btn, .cookie-modal .cookie-settings-btn {
  margin: 6px 9px 0 0;
}
.cookie-category-description {
  font-size: 0.98rem;
  color: #6A6E75;
  margin-left: 6px;
}
/* ==== FORMS, INPUTS, ETC =========================== */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border-radius: 7px;
  border: 1px solid #dedede;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 1.04rem;
  color: #2A2C32;
  background: #f6f6f8;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #2A2C32;
  outline: none;
}
label {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  color: #2A2C32;
  margin-bottom: 6px;
  display: block;
}
button {
  font-family: inherit;
}
/* ==== SPECIALS (SUCCESS/ERROR/INFO) ============= */
.alert-success {
  color: #1f4c23;
  background: #e2f4e7;
  border-left: 6px solid #2A2C32;
  padding: 18px 24px;
  border-radius: 12px;
  margin-bottom: 28px;
}
.alert-error {
  color: #7b2323;
  background: #fff5f5;
  border-left: 6px solid #2A2C32;
  padding: 18px 24px;
  border-radius: 12px;
  margin-bottom: 28px;
}
/* ====================== RESPONSIVE DESIGN ======================== */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 899px) {
  .section {
    padding: 34px 11px;
  }
  header .container {
    padding: 14px 12px;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.18rem; }
  .section {
    margin-bottom: 42px;
    padding: 26px 7px;
    border-radius: 11px;
  }
  .testimonial-card { padding: 16px; }
  .card-container { gap: 17px; }
  .content-grid { gap: 13px; }
  .mobile-menu-toggle {
    display: block;
  }
  header nav,
  header a.cta-btn {
    display: none !important;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 500px) {
  .section { padding: 18px 0; }
  footer { padding: 20px 0 10px 0; }
}
/* ================= HELPERS / UTILS ==================== */
.mt-8  {margin-top:8px!important;}
.mb-8  {margin-bottom:8px!important;}
.mt-16 {margin-top:16px!important;}
.mb-16 {margin-bottom:16px!important;}
.mt-24 {margin-top:24px!important;}
.mb-24 {margin-bottom:24px!important;}
.hide {display: none !important;}
.show {display: block !important;}
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; overflow:hidden; clip: rect(0,0,0,0);white-space:nowrap;border:0;}
/* ================== MICRO-INTERACTIONS =============== */
.section,
.card,
.testimonial-card,
.cta-btn,
.cookie-btn,
.cookie-settings-btn,
.mobile-menu,
.mobile-menu-toggle,
.mobile-menu-close {
  transition: box-shadow 0.18s, border 0.18s, background 0.2s, color 0.18s, transform 0.20s;
}
/* ====================== Z-INDEX MANAGEMENT =========== */
header { z-index: 50; }
.mobile-menu-toggle { z-index: 501; }
.mobile-menu { z-index: 601; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10000; }
/* ================== VISUAL HIERARCHY =============== */
h1, .cta-btn { font-weight: 600; letter-spacing: 0.02em; }
h2, h3 { font-weight: 500; }
/* ### Prevent Overlaps in Cards & Lists ### */
.section > .container > .content-wrapper > * + * { margin-top: 12px; }
.card + .card { margin-top: 20px; }
.testimonial-card + .testimonial-card { margin-top: 20px; }
.features > .feature-item + .feature-item { margin-top: 15px; }
/* =================== PRINT =============== */
@media print { *, *::before, *::after { background: #fff !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; } }
