/* --------------------------------------------------
RentenFokus Industrial Modern CSS - style.css
---------------------------------------------------*/
/* RESET & NORMALIZE */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  background: #181A1B;
  color: #F1FAEE;
  font-family: Arial, "Segoe UI", "Liberation Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: #A8DADC;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F1FAEE;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #F1FAEE;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, label {
  font-size: 1rem;
  font-family: Arial, 'Segoe UI', sans-serif;
  color: #E1E6EA;
}
strong {
  color: #A9BBC7;
  font-weight: 700;
}

/* BRAND COLORS */
:root {
  --primary: #1D3557;
  --secondary: #457B9D;
  --accent: #F1FAEE;
  --steel: #2B3035;
  --slate: #23282D;
  --metallic: #9CA3AF;
}

/* CONTAINERS & SECTIONS */
.container {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section,
.hero, .features, .services-overview, .testimonials, .cta-banner,
.services-detailed, .about, .team, .approach,
.process, .benefits, .knowledge-base, .tip-highlights,
.faq-list, .contact-cta, .contact-section, .thank-you-section, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #23282D;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(50,56,61,.11);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HEADER */
header {
  background: var(--steel);
  box-shadow: 0 1px 8px 0 rgba(41,49,56,0.14);
  z-index: 100;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  color: #E1E6EA;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: Arial, sans-serif;
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.15s, color 0.15s;
}
header nav a:hover,
header nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
header img {
  width: 170px;
  height: auto;
}

.cta-btn {
  background: linear-gradient(90deg, #457B9D 60%, #1D3557 100%);
  color: #F1FAEE;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 1.15rem;
  letter-spacing: .5px;
  box-shadow: 0 2px 6px 0 rgba(41, 49, 56, 0.22);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-left: 20px;
  display: inline-block;
  text-shadow: 1px 1px 6px rgba(29,53,87,0.2);
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #1D3557 40%, #457B9D 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px 0 rgba(41,49,56,0.22);
}

/* --- Mobile Burger Menu --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  margin-left: 20px;
  cursor: pointer;
  z-index: 200;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #FFD166;
  outline: 2px solid #F1FAEE;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--slate);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 32px 32px 32px;
  transform: translateX(-110vw);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.3,.6,.4,1), opacity 0.25s;
  box-shadow: 4px 0 32px rgba(23, 23, 23, 0.28);
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 12px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
}
.mobile-nav a {
  color: #F1FAEE;
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #2B3847;
  width: 100%;
  transition: color 0.18s, background 0.15s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--secondary);
  background: rgba(255,255,255,0.05);
}
/* Hide regular nav and show burger on mobile */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ------ HERO SECTION ------ */
.hero {
  background: linear-gradient(85deg, #23282D 89%, #1D3557 100%);
  box-shadow: 0 2px 14px 0 rgba(40,46,52,.13);
  align-items: stretch;
  margin-bottom: 32px;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  min-height: 330px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: 'Merriweather', serif;
  text-shadow: 1px 2.5px 0px #1A2633;
  color: var(--accent);
}
.hero p {
  font-size: 1.22rem;
  color: #C3D1DA;
  max-width: 600px;
}

/* ------ FEATURES LIST ------ */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.features ul li {
  background: #141517;
  flex: 1 1 270px;
  min-width: 250px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(80,90,100,.14);
  border-left: 4px solid var(--secondary);
  font-family: Arial, sans-serif;
}
.features ul li img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.8) brightness(1.15) contrast(1.2);
  margin-right: 8px;
}
.features ul li strong {
  color: var(--secondary);
  font-family: 'Merriweather', serif;
}

/* ----- SERVICES OVERVIEW ----- */
.services-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-overview ul li {
  background: #16181C;
  border-radius: 10px;
  flex: 1 1 250px;
  min-width: 240px;
  margin-bottom: 20px;
  padding: 18px 20px 24px 20px;
  box-shadow: 0 2px 8px 0 rgba(80,90,100,.13);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--primary);
}
.services-overview ul li h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: var(--accent);
}
.service-price {
  font-size: 1.09rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 9px;
  letter-spacing: 0.6px;
}

.services-overview .cta-btn {
  margin-top: 32px;
  align-self: flex-start;
}

/* ------------- TESTIMONIALS ------------ */
.testimonials {
  background: #282a2d;
}
.testimonials h2 {
  color: var(--accent);
}
.testimonial-card {
  background: #F1FAEE;
  color: #23282D;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 28px 22px 18px 22px;
  box-shadow: 0 3px 14px 0 rgba(80,90,100,.18);
  border-left: 5px solid var(--secondary);
  font-size: 1.08rem;
  max-width: 700px;
  transition: box-shadow 0.22s, transform 0.17s;
}
.testimonial-card p {
  margin-bottom: 0px;
  color: #1D3557;
  font-size: 1.11rem;
  line-height: 1.53;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #555B6E;
  font-style: italic;
  font-family: "Merriweather", serif;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px 0 rgba(80,90,100,.33);
  transform: translateY(-2px) scale(1.012);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(90deg, #1D3557 0%, #23282D 80%);
  box-shadow: 0 4px 18px 0 rgba(40,46,52,0.13);
  color: #F1FAEE;
  text-align: left;
}
.cta-banner h2 {
  color: #F1FAEE;
  text-shadow: 1px 2px 0 #131A22;
}
.cta-banner p {
  color: #E1E6EA;
}

/* CARD / ARTICLE GRIDS (e.g., Knowledge Base, Articles) */
.content-grid, .card-container, .articles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.articles article {
  background: #16181C;
  color: #E1E6EA;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(80,90,100,.10);
  flex: 1 1 320px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 18px;
  margin-bottom: 20px;
  border-left: 5px solid var(--metallic);
  transition: box-shadow 0.18s, transform 0.14s;
}
.articles article h2 {
  color: var(--accent);
  font-size: 1.23rem;
}
.articles article a {
  margin-top: 8px;
  display: inline-block;
  font-weight: 700;
  color: var(--secondary);
  transition: color 0.12s;
}
.articles article a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.articles article:hover, .articles article:focus {
  box-shadow: 0 8px 24px 0 rgba(80,90,100,.24);
  transform: translateY(-2px) scale(1.01);
}

.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.categories ul li a {
  background: #1D3557;
  color: #F1FAEE;
  border-radius: 6px;
  padding: 6px 22px;
  font-size: 1rem;
  font-family: 'Merriweather', serif;
  transition: background 0.15s, color 0.15s;
  border: 1.5px solid #292E36;
}
.categories ul li a:hover,
.categories ul li a:focus {
  background: #457B9D;
  color: #23282D;
  border: 1.5px solid #F1FAEE;
}

/* TIPS (e.g., .tip-highlights) */
.tip-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 8px;
}
.tip-highlights ul li {
  color: #A9BBC7;
  background: #111214;
  border-left: 4px solid var(--secondary);
  padding: 11px 16px;
  border-radius: 7px;
  font-size: 1.04rem;
  margin-bottom: 6px;
}

/* FAQ CATEGORIES */
.faq-category {
  margin-bottom: 32px;
  background: #16181C;
  border-radius: 8px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px 0 rgba(80,90,100,.11);
}
.faq-category h2 {
  color: var(--secondary);
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.faq-category h3 {
  color: var(--accent);
  font-size: 1.09rem;
  margin-top: 10px;
  margin-bottom: 4px;
}
.faq-category p {
  color: #C3D1DA;
  margin-left: 9px;
  line-height: 1.48;
}

/* ----- CONTACT SECTION ----- */
.contact-details {
  background: #111214;
  border-radius: 8px;
  padding: 22px 20px;
  box-shadow: 0 1px 7px 0 rgba(80,90,100,.10);
  margin-bottom: 20px;
}
.contact-details h2 {
  color: var(--secondary);
  margin-bottom: 8px;
}
.contact-details a {
  color: var(--secondary);
  font-weight: bold;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.map-embed img {
  width: 36px;
  height: 36px;
  filter: grayscale(0.7) brightness(1.25);
}

/* ----- THANK YOU SECTION ----- */
.thank-you-section {
  background: #23282D;
  text-align: left;
}

/* ----- LEGAL SECTIONS (Datenschutz, DSGVO, etc) ----- */
.legal {
  background: #202226;
}
.legal h1, .legal h2, .legal h3 {
  color: #F1FAEE;
}
.legal .text-section ul li {
  margin-bottom: 12px;
  color: #C3D1DA;
}
.legal .text-section a {
  color: var(--secondary);
  text-decoration: underline;
}
.legal .text-section a:hover {
  color: var(--primary);
}

/* ----- CARDS (Reusable) ----- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #181A1B;
  border-radius: 14px;
  min-width: 250px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(60,60,67,0.12);
  padding: 26px 18px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(40,46,52,.19);
  transform: translateY(-1.5px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
/* Feature item for detailed lists */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------- FOOTER ----------- */
footer {
  background: #16181C;
  box-shadow: 0 -2px 10px 0 rgba(60,60,67,0.10);
  position: relative;
  z-index: 20;
}
footer .container {
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 35px 20px 30px 20px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
footer nav a {
  color: #A9BBC7;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border-bottom: 1.5px solid transparent;
  padding: 3px 0;
  transition: border-color 0.13s, color 0.13s;
}
footer nav a:hover {
  color: #F1FAEE;
  border-bottom: 1.5px solid #A8DADC;
}
footer p {
  font-size: 0.98rem;
  color: #9CA3AF;
  margin-top: 12px;
}

/* ABLUF SECTION WITH STEPS (Process) */
.process ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  counter-reset: step;
  margin-top: 14px;
}
.process ol li {
  flex: 1 1 210px;
  min-width: 180px;
  background: #15181D;
  border-radius: 8px;
  border-top: 4px solid var(--secondary);
  padding: 20px 16px 18px 16px;
  box-shadow: 0 2px 8px 0 rgba(80,90,100,.08);
  margin-bottom: 20px;
  position: relative;
  font-family: Arial, sans-serif;
  color: #C3D1DA;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process ol li img {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  filter: grayscale(0.8) brightness(1.21);
}
.process ol li strong {
  display: inline-block;
  color: var(--secondary);
  margin-bottom: 2px;
  font-family: 'Merriweather', serif;
  font-size: 1.06rem;
}

/* BENEFITS */
.benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits ul li {
  background: #191B1E;
  padding: 10px 14px;
  border-radius: 6px;
  color: #A9BBC7;
  border-left: 4px solid var(--primary);
  margin-bottom: 7px;
}
.benefits ul li strong {
  color: #457B9D;
}

/* FORMS & SEARCH INPUTS */
input[type="search"] {
  width: 100%;
  max-width: 420px;
  background: #141517;
  border: 1.5px solid #2B3035;
  border-radius: 7px;
  padding: 12px 15px;
  font-size: 1.04rem;
  color: #E1E6EA;
  margin-bottom: 16px;
  font-family: Arial, sans-serif;
  box-shadow: 0 1px 4px 0 rgba(80, 90, 100, 0.11);
  transition: border 0.18s, box-shadow 0.14s;
}
input[type="search"]:focus {
  border-color: #457B9D;
  outline: none;
  box-shadow: 0 1px 7px #457B9D55;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 12000;
  background: #15181D;
  color: #F1FAEE;
  box-shadow: 0 -3px 20px 0 rgba(35,32,40,.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  padding: 22px 12px;
  font-size: 1rem;
  border-top: 2.5px solid #457B9D;
  transition: transform 0.3s;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 8px;
  }
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  max-width: 470px;
  color: #F1FAEE;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  padding: 8px 22px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-right: 6px;
  margin-bottom: 0;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: #457B9D;
  color: #F1FAEE;
}
.cookie-banner .accept:hover {
  background: #2FA1D6;
}
.cookie-banner .reject {
  background: #23282D;
  color: #a8aeb7;
  border: 1.5px solid #888C96;
}
.cookie-banner .reject:hover {
  background: #74222d;
  color: #fff;
  border: 1.5px solid #C4301C;
}
.cookie-banner .settings {
  background: #23282D;
  color: #F1FAEE;
  border: 1.8px solid #457B9D;
}
.cookie-banner .settings:hover {
  background: #1D3557;
  border-color: #F1FAEE;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 13000;
  background: #181A1B;
  color: #F1FAEE;
  border-radius: 13px;
  box-shadow: 0 9px 36px 0 rgba(22,23,28,0.31);
  padding: 32px 30px 18px 30px;
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.18s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal .modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
}
.cookie-modal h2 {
  color: #F1FAEE;
  font-size: 1.3rem;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #F1FAEE;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-category label {
  font-size: 1.05rem;
  color: var(--accent);
  font-family: 'Merriweather', serif;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: #457B9D;
  width: 19px;
  height: 19px;
}
.cookie-category input[disabled] {
  filter: grayscale(0.7);
  opacity: 0.45;
}
.cookie-modal .modal-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .modal-footer button {
  padding: 8px 24px;
  border-radius: 6px;
  border: none;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  background: #457B9D;
  color: #F1FAEE;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .modal-footer button:hover {
  background: #1D3557;
  color: #F1FAEE;
}

/* ----------- RESPONSIVE DESIGN ----------- */

@media (max-width: 1120px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 850px) {
  .container {
    padding: 0 8px;
  }
  .card, .testimonial-card, .articles article {
    min-width: 180px;
    padding: 16px 10px;
  }
  .feature-item, .faq-category, .services-overview ul li {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .section, .hero, .features, .services-overview, .testimonials, .cta-banner,
  .services-detailed, .about, .team, .approach,
  .process, .benefits, .knowledge-base, .tip-highlights,
  .faq-list, .contact-cta, .contact-section, .thank-you-section, .legal {
    padding: 22px 6px;
  }
  .container {
    padding: 0 2vw;
  }
  .hero .container {
    flex-direction: column;
    min-height: unset;
  }
  .hero .content-wrapper h1 {
    font-size: 2.1rem;
  }
  .features ul, .services-overview ul, .card-container, .articles, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .process ol {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 20px 8px 16px 8px;
  }
  .map-embed {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 420px) {
  :root {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1rem;
  }
}

/* ------ MICRO-INTERACTIONS ------ */
.cta-btn, .cookie-banner button, .cookie-modal .modal-footer button, .categories ul li a {
  transition: background 0.18s, color 0.14s, box-shadow 0.16s, transform 0.14s;
}

.cta-btn:active, .cookie-banner button:active, .cookie-modal .modal-footer button:active, .categories ul li a:active {
  transform: scale(0.97);
  box-shadow: 0 1px 5px #2228;
}

/* ACCENTS & SHADOWS FOR INDUSTRIAL FEEL */
.section, .card, .testimonial-card, .features ul li, .services-overview ul li, .faq-category, .articles article, .contact-details {
  box-shadow: 0 1.5px 11px 0 rgba(62,64,68,0.13);
}

/* METALLIC ACCENT BORDERS */
.section, .card, .testimonial-card, .features ul li, .services-overview ul li, .faq-category {
  border-right: 2px solid #6B757E22;
}

/* HIDE COOKIE MODAL BY DEFAULT */
.cookie-modal {
  display: none;
}
.cookie-modal.show {
  display: flex;
}

/* --------- ALIGNMENT & FLEXBOX PATTERNS ---------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px;
  }
}
/* ----- SCROLLBAR STYLING FOR INDUSTRIAL MODERN ------ */
::-webkit-scrollbar {
  width: 11px;
  background: #23282D;
}
::-webkit-scrollbar-thumb {
  background: #30343A;
  border-radius: 8px;
  border: 2px solid #16181C;
}
::-webkit-scrollbar-thumb:hover {
  background: #457B9D;
}

/* ---------- VISUAL HIERARCHY ---------- */
hr {
  border: none; height: 2px; background: #2B3847; margin: 32px 0;
}

/* ---------- HELPER/UTILITY ---------- */
.text-center { text-align: center; }
.mb-xl { margin-bottom: 48px; }
.mb-lg { margin-bottom: 32px; }
.mb-md { margin-bottom: 18px; }
.mb-sm { margin-bottom: 11px; }
.mt-lg { margin-top: 32px; }
.d-flex { display: flex !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }

/* Hide visually but keep accessible */
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip: rect(0 0 0 0); overflow: hidden; }

/* END of RentenFokus CSS */
