/* =============================
   CSS RESET & BASELINE 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-size: 16px;
  color: #161616;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #103A5D;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #000;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.25em;
  padding-left: 0.5em;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #101010;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* === Layout Containers === */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
}
.text-section {
  background: #fafbfc;
  border-radius: 10px;
  padding: 24px 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 6px;
}
.card {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 28px rgba(20,20,21,0.05), 0 1.5px 8px rgba(10,10,12,0.06);
  position: relative;
  padding: 32px 24px;
  min-width: 220px;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.15s;
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(20,20,21,0.13), 0 3px 16px rgba(10,10,12,0.09);
  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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(117deg, #fff 0%, #f3f3f4 100%);
  border-bottom: 1px solid #e9ecef;
  padding-top: 48px;
  padding-bottom: 52px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #0B0B0B;
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -1px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: #454545;
  max-width: 540px;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ===== BUTTONS & CTAs ===== */
.cta-button, .cta-nav, .service-cta, .cookie-btn, .cookie-settings-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #101115;
  color: #fff;
  border-radius: 8px;
  padding: 14px 34px;
  font-weight: 600;
  font-size: 1.09rem;
  min-height: 44px;
  border: none;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 14px rgba(16,58,93,0.07);
  text-align: center;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.17s;
  outline: none;
  text-decoration: none;
}
.cta-button:hover, .cta-button:focus, .cta-nav:hover, .cta-nav:focus, .service-cta:hover, .service-cta:focus, .cookie-btn:hover, .cookie-settings-btn:hover {
  background: #0B0B0B;
  color: #FFC04D;
  box-shadow: 0 4px 22px rgba(16,58,93,0.21);
  transform: translateY(-1px) scale(1.012);
}
.cta-nav {
  background: #fff;
  color: #101010;
  border: 2px solid #101010;
  font-size: 1rem;
  margin-left: 18px;
  padding: 10px 22px;
  transition: background 0.19s cubic-bezier(.4,0,.2,1), color 0.19s, border 0.19s, transform 0.16s;
}
.cta-nav:hover, .cta-nav:focus {
  background: #101010;
  color: #fff;
  border-color: #101010;
}
.service-cta {
  padding: 10px 18px;
  font-size: 1rem;
  margin-top: 12px;
  background: #fff;
  color: #0B0B0B;
  border: 2px solid #0B0B0B;
}
.service-cta:hover, .service-cta:focus {
  background: #0B0B0B;
  color: #FFC04D;
}

/* ============= MAIN NAV ============= */
header {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 18px;
  padding-left: 6px;
  padding-right: 6px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 15;
  position: relative;
}
.main-nav img {
  height: 40px;
  min-width: 40px;
}
.main-nav a:not(.cta-nav) {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #161616;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background 0.18s cubic-bezier(.4,0,.2,1);
}
.main-nav a:not(.cta-nav):hover, .main-nav a:not(.cta-nav):focus {
  background: #F6F6F8;
  color: #0B0B0B;
}

/* ============= MOBILE NAV (Burger) ============= */
.mobile-menu-toggle {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 203;
  background: none;
  border: none;
  font-size: 2rem;
  color: #101010;
  cursor: pointer;
  display: none;
  width: 42px;
  height: 42px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(18,19,24,0.94);
  box-shadow: 0 0 120px 0 rgba(16,58,93,0.16);
  z-index: 300;
  display: flex; flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.44s cubic-bezier(.7,0,.3,1), opacity 0.28s;
  transform: translateX(-100vw);
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  cursor: pointer;
  z-index: 302;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFC04D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: #fff;
  padding: 18px 32px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #262729;
  color: #FFC04D;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
    padding: 10px 6px 10px 8px;
  }
  .main-nav a.cta-nav {
    margin-left: 9px;
    padding: 10px 10px;
  }
}
@media (max-width: 899px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ====== SERVICE CARDS ====== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border: 1.5px solid #d1d4d9;
  border-radius: 12px;
  flex: 1 1 248px;
  min-width: 224px;
  max-width: 290px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(16,16,22,0.06);
  padding: 28px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  justify-content: flex-start;
  transition: box-shadow 0.19s, border 0.2s;
}
.service-card h3 {
  font-size: 1.19rem;
  color: #101010;
  margin-bottom: 4px;
}
.service-card .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232323;
  font-weight: 700;
  font-size: 1.02rem;
}

/* ====== TEAM PROFILES ====== */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.team-member-profile {
  background: #fff;
  border: 1.5px solid #e7e7e9;
  border-radius: 11px;
  box-shadow: 0 3px 15px rgba(20,20,21,0.03);
  padding: 24px 18px;
  flex: 1 1 240px;
  min-width: 190px;
  max-width: 300px;
}

/* ====== TESTIMONIAL CARDS ====== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f5f6f8;
  color: #141416;
  padding: 20px;
  border-radius: 11px;
  min-width: 240px;
  max-width: 350px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px 0 rgba(40,41,43,0.13);
  border: 1.4px solid #e0e0e3;
  position: relative;
}
.testimonial-card p {
  color: #252527;
  font-size: 1.04rem;
  line-height: 1.51;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-client {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #5f5f66;
  font-size: 0.98rem;
  font-weight: 500;
  margin-top: 8px;
}

/* ============== TABLES (PRICING) ============== */
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 28px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  font-family: 'Roboto', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.pricing-table thead th {
  background: #101115;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
}
.pricing-table tbody tr {
  background: #fff;
  transition: background 0.18s;
}
.pricing-table tbody tr:hover {
  background: #f3f3f3;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 13px;
}
.price-notes {
  color: #4c4c50;
  font-size: 0.98rem;
  margin-bottom: 22px;
}

/* ============= MISC CLASSES ============= */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.trust-signals span {
  font-size: 1rem;
  color: #101010;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 9px 13px;
  font-weight: 500;
}

.success-stories-preview {
  background: #f9fafb;
  border-radius: 9px;
  font-style: italic;
  color: #39393b;
  padding: 19px 18px 11px 18px;
  margin: 16px 0 10px 0;
}
.success-stories-preview span {
  display: block;
  margin-top: 9px;
  color: #64646a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
}

.next-steps-info {
  background: #fafbfa;
  padding: 16px 13px 12px 13px;
  border-radius: 7px;
  margin-top: 6px;
}
.next-steps-info ul {
  list-style: disc inside;
}

.faq-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.faq-preview a {
  color: #103A5D;
  font-weight: 500;
  transition: color 0.17s;
}
.faq-preview a:hover, .faq-preview a:focus {
  color: #101010;
}

.search-faq p {
  color: #292929;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* ==== Accordion FAQ ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.faq-item {
  background: #f7f7fa;
  border-radius: 8px;
  padding: 18px 16px;
  box-shadow: 0 2px 9px rgba(22,22,25,0.07);
  border: 1.4px solid #e1e1e8;
  margin-bottom: 6px;
  font-size: 1rem;
}
.faq-item h2 {
  font-size: 1.09rem;
  margin-bottom: 9px;
}
.faq-item p, .faq-item div {
  color: #35353B;
}

/* ==== Service List (Leistungen) ==== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 12px;
}
.service-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  background: #f6f6f7;
  border-radius: 8px;
  padding: 18px 16px;
  border: 1.2px solid #e8e8ea;
  margin-bottom: 6px;
}
.service-list img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-right: 4px;
}
.service-list .service-price {
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #35353B;
  font-size: 1.01rem;
  font-weight: 700;
  align-self: flex-end;
}

/* ==== Map/location (kontakt) ==== */
.map-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  border: 1px solid #ededee;
  background: #fafafc;
  border-radius: 8px;
  padding: 10px 8px 10px 10px;
  margin-top: 12px;
}

/* ==== CTA SECTION ==== */
.cta-section {
  background: #131316;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 38px;
  margin-top: 40px;
  box-shadow: 0 4px 38px 0 rgba(16,16,24,0.13);
}
.cta-section .content-wrapper {
  align-items: center;
}
.cta-section h2, .cta-section p {
  color: #fff;
}
.cta-section a.cta-button {
  background: #fff;
  color: #19191F;
  border: 2px solid #161616;
}
.cta-section a.cta-button:hover {
  background: #101010;
  color: #FFC04D;
  border-color: #101010;
}

/* ==== Footer ==== */
footer {
  background: #101115;
  color: #fff;
  padding: 38px 16px 24px 16px;
  border-top: 1.5px solid #18191c;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.footer-logo {
  display: flex; justify-content: center; margin-bottom: 16px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-nav a {
  color: #FFC04D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  position: relative;
  transition: color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact address,
.footer-contact {
  color: #e6e6ed;
  font-size: 0.99rem;
  font-style: normal;
}
.footer-contact a {
  color: #FFC04D;
  transition: color 0.16s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1150px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 899px) {
  .container {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .service-cards, .team-profiles, .testimonial-slider, .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.19rem; }
  .section { margin-bottom: 32px; padding: 30px 7px; }
  .card, .service-card, .team-member-profile {
    max-width: 100vw;
    min-width: 180px;
    padding: 24px 10px;
  }
  .content-wrapper, .text-section {
    padding: 12px 5px;
    gap: 12px;
  }
  .testimonial-card {
    min-width: 165px;
    max-width: 98vw;
    padding: 13px 8px;
  }
  .footer-contact, .footer-nav {
    gap: 7px;
    font-size: 0.93rem;
  }
  .cta-section {
    margin-bottom: 22px;
    margin-top: 22px;
    border-radius: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .service-cards, .team-profiles, .testimonial-slider, .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 500px) {
  .section { margin-bottom: 16px; padding: 18px 2vw; }
  .footer-contact, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer-logo img { height: 33px; }
}

/* ============= ANIMATIONS & TRANSITIONS ============= */
body, .card, .service-card, .testimonial-card, .cta-button, .cta-nav, .service-cta, .cookie-btn, .cookie-settings-btn {
  transition: color 0.16s, background 0.15s, box-shadow 0.16s, transform 0.14s;
}
.mobile-menu, .mobile-menu.open {
  transition: transform 0.44s cubic-bezier(.7,0,.3,1), opacity 0.28s;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4100;
  background: #212124;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 23px 5vw 19px 5vw;
  box-shadow: 0 -4px 23px 0 rgba(11,11,16,0.17);
  font-size: 1rem;
  transition: transform 0.28s, opacity 0.15s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 550px;
}
.cookie-banner .cookie-banner-btns {
  display: flex; flex-direction: row; gap: 14px; align-items: center;
}
.cookie-btn, .cookie-reject-btn {
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #101010;
  border: 2px solid #fff;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0;
  transition: background 0.17s, color 0.13s, border 0.12s, transform 0.18s;
}
.cookie-settings-btn {
  padding: 9px 20px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  font-weight: 600;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #101010;
  color: #FFC04D;
}
.cookie-reject-btn {
  background: #212124;
  color: #FFF;
  border: 2px solid #FFF;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #101010;
  color: #FFC04D;
  border: 2px solid #FFC04D;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus{
  background: #fff;
  color: #101010;
}
@media (max-width: 700px) {
  .cookie-banner{
    flex-direction: column;
    padding: 16px 3vw 13px 3vw;
    gap: 14px;
  }
  .cookie-banner .cookie-banner-btns{
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 9px;
  }
}

/* ===== COOKIE MODAL POPUP ===== */
.cookie-modal {
  position: fixed;
  z-index: 4300;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex; justify-content: center; align-items: center;
  background: rgba(15,16,24,0.83);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.17s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  color: #131316;
  border-radius: 14px;
  padding: 36px 20px 24px 20px;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 8px 54px 0 rgba(21,22,24,0.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: transparent;
  border: none;
  color: #19191F;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 1;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus{
  color: #FFC04D;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 0;
}
.cookie-category .toggle {
  width: 36px;
  height: 20px;
  border-radius: 11px;
  background: #ddd;
  position: relative;
}
.cookie-category .toggle-checkbox {
  display: none;
}
.cookie-category .toggle-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  border-radius: 11px;
  transition: background 0.3s;
}
.cookie-category .toggle-checkbox:checked + .toggle-slider {
  background: #101010;
}
.cookie-category .toggle-circle {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-category .toggle-checkbox:checked + .toggle-slider .toggle-circle {
  left: 18px;
}
.cookie-category .essential {
  color: #10995d;
  font-weight: 600;
}
.cookie-category label {
  font-size: 1rem;
  color: #252527;
  font-weight: 500;
}
@media (max-width: 440px) {
  .cookie-modal-dialog{
    padding: 18px 4vw 14px 4vw;
  }
}

/* ========== VISUAL HIERARCHY & UTIL SPACING ========== */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.space-below {
  margin-bottom: 26px;
}

/* === ACCENT COLOR HINTS, SUBTLE DIVIDERS === */
hr {
  border: none;
  border-top: 2px solid #e9ecef;
  margin: 32px 0 24px 0;
}
mark {
  background: #edeaf0;
  color: #161616;
  border-radius: 4px;
  padding: 0 4px;
}

/* === INPUTS (for future forms) === */
input, textarea, select {
  border: 1.2px solid #cfcfd2;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #151618;
  padding: 8px 12px;
  margin-bottom: 14px;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #101115;
}

/* === Hide outline on mouse users (show on keyboard navigation only) === */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #103A5D;
  outline-offset: 1px;
}

/* =======================================
   MONOCHROME SOPHISTICATED CUSTOMIZATION
   ======================================= */
body {
  background: #fafafb;
  color: #19191F;
}
.section, .card, .service-card, .team-member-profile, .faq-item {
  background: #fff;
}
.text-section, .testimonial-card {
  background: #F6F6F6;
}
.cta-button, .cookie-btn, .service-cta, .cta-nav {
  background: #101010;
  color: #fff;
}
.cta-button:hover, .cta-button:focus, .service-cta:hover {
  background: #232329;
  color: #FFC04D;
}
.footer-nav a {
  color: #FFC04D;
}
.footer-nav a:hover {
  color: #fff;
}

/* ======================
   END
   ====================== */
