/* ---------------------------
   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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f7f9fa;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.35,1.19,.54,1.01);
}
img {
  border: none; max-width: 100%; display: block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}
button { cursor: pointer; }

/* ---------------------------
   VARIABLES & COLOR SYSTEM
-----------------------------*/
:root {
  --brand-primary: #1C2B36;
  --brand-secondary: #F7B32B;
  --brand-accent: #FFFFFF;
  --vibrant-blue: #2196f3;
  --electric-green: #62ff5a;
  --hot-pink: #FF4193;
  --brand-grey-bg: #f7f9fa;
  --font-display: 'Roboto Slab', serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --shadow-md: 0 4px 20px 0 rgba(31,41,69,0.07);
  --shadow-card: 0 6px 40px 0 rgba(28,43,54,0.13);
}

/* ---------------------------
   LAYOUT CONTAINER PATTERNS
-----------------------------*/
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  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 {
  background: #fff;
  color: #1C2B36;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(28,43,54,0.15);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* ----------------------------------
   HEADER & NAVIGATION (DESKTOP)
-----------------------------------*/
header {
  width: 100%;
  background: var(--brand-primary);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0 18px 0;
  position: relative;
  z-index: 102;
  box-shadow: 0 6px 24px 0 rgba(28,43,54,0.08);
}
header > a img,
.footer-logo img {
  height: 42px;
  margin-right: 24px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: 32px;
}
header nav a {
  color: var(--brand-accent);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 8px;
  padding: 6px 16px;
  position: relative;
  transition: background .18s cubic-bezier(.35,1.19,.54,1.01), color .18s cubic-bezier(.35,1.19,.54,1.01);
}
header nav a:hover,
header nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
header .btn-primary {
  margin-left: auto;
}


/* -----------------------------
   MOBILE BURGER NAVIGATION
-------------------------------*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 28px;
  right: 24px;
  z-index: 120;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  transition: box-shadow .2s;
  box-shadow: 0 2px 10px 0 rgba(247,179,43,0.14);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  box-shadow: 0 2px 18px 0 rgba(33,150,243,0.20);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--brand-primary);
  color: var(--brand-accent);
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.29,1.02,.6,.98);
  box-shadow: 0 9px 50px 0 rgba(33,150,243,0.25);
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.5rem;
  color: var(--brand-accent);
  background: none;
  border: none;
  margin: 24px 24px 8px auto;
  align-self: flex-end;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 36px 40px 36px;
}
.mobile-nav a {
  color: var(--brand-accent);
  font-size: 1.2rem;
  padding: 16px 0 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color .17s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--brand-secondary);
}


/* -----------------------------
   HERO SECTION & CTA BUTTONS
-------------------------------*/
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-secondary) 58%, var(--vibrant-blue) 100%);
  min-height: 440px;
  color: var(--brand-primary);
  overflow-x: hidden;
  position: relative;
}
.hero .content-wrapper {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  align-items: flex-start;
  padding: 44px 0 34px 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.20;
  color: var(--brand-primary);
  letter-spacing: -.01em;
}
.hero p {
  font-size: 1.2rem;
  color: var(--brand-primary);
  font-weight: 500;
}
/* CTA Section */
.cta .container {
  text-align: center;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta h2 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}
.cta p {
  font-size: 1.18rem;
  color: #222;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .02em;
  font-family: var(--font-display),serif;
  border-radius: 9px;
  padding: 13px 28px;
  box-shadow: 0 3px 18px 0 rgba(33,150,243,0.10);
  margin-top: 10px;
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
  user-select: none;
  text-align: center;
  transition: background .19s, color .17s, transform .17s;
  outline: none;
}
.btn-primary {
  background: var(--vibrant-blue);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--hot-pink);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(255,65,147,0.10);
}
.btn-secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--electric-green);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(98,255,90,0.09);
}

/* --------------------------------
   FEATURES, SERVICE CARDS, TEAM
----------------------------------*/
.features .content-wrapper,
.services-overview .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features ul, .services-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 12px;
  padding-left: 0px;
}
.features li, .services-overview li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 13px;
  padding: 18px 18px 18px 19px;
  box-shadow: 0 2px 12px 0 rgba(33,150,243,0.09);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 260px;
}
.features li img,
.services-overview li img {
  width: 36px; height: 36px;
}
.features strong, .services-overview strong {
  color: var(--vibrant-blue);
  font-family: var(--font-display);
  font-weight: 700;
}
.services-overview li {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
}
.services-overview li h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.17rem;
}
.services-overview p {
  font-size: 1rem;
}
/* Detailed Service Cards (Leistungen) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.detailed-service-card {
  flex: 1 1 250px;
  min-width: 250px;
  background: #fff;
  color: #172530;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
  border: 3px solid transparent;
}
.detailed-service-card:hover, .detailed-service-card:focus-within {
  box-shadow: 0 12px 36px 0 rgba(255,65,147,0.06);
  border-color: var(--hot-pink);
  transform: translateY(-3px) scale(1.025);
}
.detailed-service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;}
.detailed-service-card img { width: 36px; height: 36px; }
/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-card);
  padding: 26px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .13s;
}
.team-member img { width: 40px; height: 40px; }
.team-member h3 { font-family: var(--font-display); font-size: 1.13rem; font-weight: 700; }
.team-member blockquote {
  font-size: 1.01rem;
  color: #888;
  font-style: italic;
  border-left: 3px solid var(--brand-secondary);
  padding-left: 11px;
  margin-top: 6px;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 10px 36px 0 rgba(33,150,243,0.08);
  transform: scale(1.02);
}


/* --------------------
   TYPOGRAPHY
----------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 800;
  line-height: 1.1;
}
h1 { font-size: 2.15rem; margin-bottom: 20px; }
h2 { font-size: 1.6rem; margin-bottom: 15px; }
h3 { font-size: 1.20rem; margin-bottom: 10px; }
h4 { font-size: 1.08rem; margin-bottom: 8px; }
p, ul li, ol li, label, td, th {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #232943;
  line-height: 1.5;
}
.text-section h1, .text-section h2, .text-section h3, .text-section h4 {
  margin-top: 20px;
}
.text-section p, .text-section ul, .text-section ol {
  margin-bottom: 13px;
}
.text-section ul {
  padding-left: 18px;
}
.text-section ul li::before {
  content: "• ";
  color: var(--brand-secondary);
  font-weight: bold;
}
.strong, strong {
  color: var(--vibrant-blue);
}


/* --------------------
   TABLES (Preise etc)
----------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(28,43,54,0.08);
  border-radius: 11px;
  overflow: hidden;
}
thead tr { background: var(--brand-primary); color: #fff; }
thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  padding: 16px 10px;
  letter-spacing: .015em;
  text-align: left;
}
tbody tr { border-bottom: 1px solid #f3f3f3; }
td {
  padding: 13px 10px;
  font-size: 1.01rem;
  color: #293750;
}
tbody tr:nth-child(odd) td { background: #fafbff; }
tbody tr:nth-child(even) td { background: #f7f9fa; }
tbody tr:hover td {
  background: #fffbe4;
}

/* ------------
   FAQ Styles
--------------*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 22px;
}
.faq-list div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 18px rgba(247,179,43,0.07);
  padding: 15px 23px 15px 18px;
  margin-bottom: 10px;
}
.faq-list h3 {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.faq-list p { font-size: 1rem; color: #293750; }
.topic-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  align-items: center;
}
.topic-links a {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 6px;
  padding: 5px 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: background .17s, color .17s;
}
.topic-links a:hover { background: var(--hot-pink); color: #fff; }


/* --------------------
   TESTIMONIALS
----------------------*/
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.testimonial-card {
  max-width: 560px;
  margin: 0 0 22px 0;
}
.testimonial-card p {
  font-size: 1.09rem;
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--brand-secondary);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
}
.star-rating {
  color: var(--electric-green);
  font-size: 1.2rem;
  letter-spacing: 1.3px;
  font-family: var(--font-display);
  margin-top: 5px;
}


/* ---------------------------------
   FOOTER
------------------------------------*/
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 42px 0 26px 0;
  font-size: 1rem;
  margin-top: 60px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
footer .footer-logo img {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
  align-items: center;
}
.footer-nav a {
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  padding: 5px 14px;
  transition: background .16s, color .16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--hot-pink);
  color: #fff;
}
footer address {
  color: #dbe4ef;
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.6;
  margin-top: 4px;
}
footer address a {
  color: #fff59c;
  word-break: break-all;
  text-decoration: underline dotted;
}

/* --------------------
   MISCELLANEOUS
----------------------*/
.text-section {
  max-width: 760px;
  margin: 0 auto 24px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul, ol {
  margin-left: 0px;
  margin-bottom: 14px;
}
ul li, ol li {
  margin-bottom: 5px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 1000px) {
  .container { max-width: 99vw; }
  .content-wrapper, .text-section { max-width: 100%;}
}

/* --------------------
   RESPONSIVE DESIGN
----------------------*/
@media (max-width: 920px) {
  .features ul, .services-overview ul,
  .card-container, .team-grid, .content-grid, .service-cards {
    flex-direction: column;
    gap: 19px;
  }
  .detailed-service-card, .team-member, .features li, .services-overview li {
    width: 100%;
    min-width: 85vw;
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    min-height: unset;
    padding: 36px 0;
  }
  .hero h1 {
    font-size: 1.44rem;
  }
  .cta h2 {
    font-size: 1.27rem;
  }
  .cta p {
    font-size: 1rem;
  }
  .features ul, .services-overview ul,
  .card-container, .team-grid, .service-cards, .content-grid, .faq-list {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  section {
    padding: 29px 10px;
    margin-bottom: 35px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
}
@media (max-width: 430px) {
  body, p, td, th, .btn-primary, .btn-secondary {
    font-size: 0.98rem;
  }
  h1 { font-size: 1.13rem; }
  h2 { font-size: 1.07rem; }
  .btn-primary, .btn-secondary { padding: 9px 12px; font-size: 1rem; }
  .footer-logo img { width: 40px; }
  .mobile-nav { padding: 22px 10px 25px 10px; }
}

/* --------------------------------
   COOKIE CONSENT BANNER STYLES
----------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 12000;
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 -4px 32px rgba(33,150,243,0.13);
  padding: 20px 14px 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  border-top: 3px solid var(--brand-secondary);
  animation: cookie-slide-in .41s cubic-bezier(.31,.88,.71,1.18);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 3px;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 8px 16px;
  min-width: 96px;
  border: none;
  transition: background 0.18s, color 0.13s, transform 0.13s;
}
.cookie-btn-accept {
  background: var(--electric-green);
  color: var(--brand-primary);
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus { background: var(--vibrant-blue); color: #fff; }
.cookie-btn-reject {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}
.cookie-btn-settings {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #fffbe4;
  color: var(--hot-pink);
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 13500;
  inset: 0;
  background: rgba(28,43,54,0.45);
  transition: opacity .18s;
  animation: cookie-modal-in .26s cubic-bezier(.27,1.17,.61,1.06);
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 410px;
  width: 94vw;
  box-shadow: 0 14px 48px 0 rgba(247,179,43,0.16);
  padding: 36px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 14000;
}
.cookie-modal h2 {
  font-size: 1.27rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--brand-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}
.cookie-modal-toggle {
  width: 44px;
  height: 23px;
  border-radius: 12px;
  appearance: none;
  background: #dce4f7;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background .11s;
}
.cookie-modal-toggle:checked {
  background: var(--vibrant-blue);
}
.cookie-modal-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 19px;
  height: 19px;
  border-radius: 100%;
  background: #fff;
  transition: transform .14s;
}
.cookie-modal-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-btn-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--hot-pink);
  font-size: 1.45rem;
  font-weight: bold;
  transition: color .17s;
}
.cookie-modal .cookie-btn-close:hover,
.cookie-modal .cookie-btn-close:focus {
  color: var(--brand-primary);
}


/* --------------------
   PRINT
----------------------*/
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
    display: none !important;
  }
  body { background: #fff; color: #000; }
}

/* --------------------
   UTILITIES
----------------------*/
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }

/* --------------
 OVERLAY LAYER for mobile menu
 --------------*/
.mobile-menu-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(28,43,54,0.62);
  z-index: 1099;
  opacity: 1;
  transition: opacity .22s;
  pointer-events: none;
  display: none;
}
.mobile-menu.open ~ .mobile-menu-backdrop {
  pointer-events: auto;
  display: block;
}

/* --------------
 DYNAMIC & ENERGETIC ACCENTS
 --------------*/
.detailed-service-card:hover,
.features li:hover, .services-overview li:hover {
  box-shadow: 0 8px 44px 0 rgba(33,150,243,0.16);
  border-color: var(--brand-secondary);
  transform: scale(1.017);
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
  filter: brightness(0.95);
}
.service-cards .detailed-service-card:nth-child(2n) {
  border-left: 6px solid var(--vibrant-blue);
}
.service-cards .detailed-service-card:nth-child(2n+1) {
  border-left: 6px solid var(--hot-pink);
}
/* Make all focus states clearly visible */
a:focus, button:focus, [tabindex]:focus {
  outline: 2.5px solid var(--hot-pink);
  outline-offset: 2px;
  z-index: 100;
}

/* ---------------
   SELECTION STYLE
-----------------*/
::selection {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

/* -------------------------
   END OF STYLE.CSS
---------------------------*/
