/* ======================================
   CSS RESET & BASE (Normalize Styles)
====================================== */
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;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #171717;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
 }
 a:focus {
  outline: 2px solid #222;
  outline-offset: 2px;
 }

/* ========================
   TYPOGRAPHY
======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.25;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #171717;
}
.subheadline {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
}

/* ======================================
   LAYOUT & CONTAINER
====================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* ======================================
   HEADER & NAVIGATION
====================================== */
header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 12px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #111;
}
.main-nav a.active {
  color: #19486A;
  font-weight: 600;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px 0 rgba(17,17,17,0.04);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  margin-left: 16px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #333;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(17,17,17,0.10);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #111;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 10px;
  z-index: 121;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  background: #eee;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 8px 48px rgba(33,33,33,0.22);
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 24px;
  min-height: 100vh;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: #f4f4f4;
  border: none;
  border-radius: 24px;
  font-size: 2.2rem;
  color: #222;
  padding: 4px 12px;
  z-index: 200;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #222;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  padding: 14px 28px;
  transition: background 0.2s, color 0.2s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f3f3f3;
  color: #19486A;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ======================================
   HERO SECTION
====================================== */
.hero {
  background: #fff;
  padding: 54px 0 46px 0;
  border-bottom: 1px solid #eee;
}
.hero .container {
  min-height: 280px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.hero h1 {
  color: #111;
  font-size: 2.8rem;
  margin-bottom: 18px;
}
.hero .subheadline {
  color: #2F2F2F;
  font-size: 1.33rem;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .hero {
    padding: 36px 0 24px 0;
  }
  .hero .container {
    min-height: 120px;
  }
  .hero .content-wrapper {
    text-align: left;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subheadline {
    font-size: 1rem;
  }
}

/* ======================================
   FEATURE LISTS
====================================== */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 0;
  margin-top: 8px;
}
.feature-list li {
  background: #fff;
  box-shadow: 0 4px 21px 0 rgba(0,0,0,0.07);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 18px 18px 18px;
  min-width: 210px;
  flex: 1 1 220px;
  max-width: 280px;
  margin-bottom: 20px;
  border: 1px solid #ededed;
  transition: box-shadow 0.19s, background 0.18s;
}
.feature-list li:hover {
  box-shadow: 0 8px 28px 0 rgba(25, 72, 106, 0.10);
  background: #f7f7f7;
}
.feature-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .feature-list {
    gap: 18px;
  }
  .feature-list li {
    min-width: 160px;
    max-width: 48%;
    padding: 20px 10px;
  }
}
@media (max-width: 600px) {
  .feature-list {
    flex-direction: column;
    gap: 12px;
  }
  .feature-list li {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 14px;
  }
}

/* ======================================
   SERVICES & CARDS
====================================== */
.service-list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-item, .service-card {
  background: #fafbfc;
  border: 1px solid #d2d4d7;
  border-radius: 13px;
  box-shadow: 0 3px 16px 0 rgba(25,25,25,0.06);
  padding: 28px 22px 22px 22px;
  min-width: 210px;
  flex: 1 1 220px;
  max-width: 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.20s, background 0.18s, border 0.18s;
}
.service-item:hover, .service-card:hover {
  box-shadow: 0 8px 28px 0 rgba(25, 72, 106, 0.12);
  border-color: #bbb;
  background: #f4f8fb;
}
.price, .highlight {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2px;
  color: #222;
}
.highlight {
  color: #444;
  font-weight: 500;
}
@media (max-width: 900px) {
  .service-list, .service-cards {
    gap: 14px;
  }
  .service-item, .service-card {
    min-width: 170px;
    max-width: 47%;
    padding: 19px 7px 17px 13px;
  }
}
@media (max-width: 600px) {
  .service-list, .service-cards {
    flex-direction: column;
    gap: 7px;
  }
  .service-item, .service-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px 12px 12px;
  }
}

/* ======================================
   TESTIMONIALS
====================================== */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 18px 24px;
  border-radius: 16px;
  background: #f5f6f7;
  border: 1px solid #e8e8e8;
  min-width: 220px;
  flex: 1 1 280px;
  max-width: 390px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(25,25,25,0.07);
  color: #151515;
  font-style: italic;
  position: relative;
  transition: box-shadow 0.18s, background 0.16s, border 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(25, 72, 106, 0.13);
  background: #fafbfc;
  border: 1px solid #bdbdbd;
}
.testimonial-card p {
  color: #151515;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-style: normal;
  color: #555;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .testimonial-row {
    gap: 14px;
  }
  .testimonial-card {
    min-width: 150px;
    max-width: 100%;
    padding: 13px 10px 14px 12px;
  }
}
@media (max-width: 600px) {
  .testimonial-row {
    flex-direction: column;
    gap: 8px;
  }
  .testimonial-card {
    min-width: 0;
    margin-bottom: 13px;
    padding: 13px 7px;
  }
}

/* ======================================
   FAQ ACCORDION
====================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #f4f6f9;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 2px 8px 0 rgba(17,17,17,0.07);
  font-size: 1rem;
  color: #161616;
}
.faq-item h2 {
  font-size: 1.18rem;
  color: #171717;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
  font-weight: 600;
}
.faq-item p {
  font-size: 1rem;
  color: #383838;
}

/* ======================================
   TABLES (PREISE)
====================================== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 16px 0;
  box-shadow: 0 2px 10px 0 rgba(22,22,22,0.025);
  background: #fafbfc;
  border-radius: 11px;
  overflow: hidden;
}
.price-table thead {
  background: #f1f2f4;
}
.price-table th, .price-table td {
  padding: 17px 14px;
  text-align: left;
  font-size: 0.98rem;
}
.price-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #222;
}
.price-table tbody tr {
  border-bottom: 1px solid #ececee;
}
.price-table tbody tr:last-child {
  border-bottom: none;
}
.price-table td {
  color: #23272e;
}

@media (max-width: 600px) {
  .price-table th, .price-table td {
    padding: 10px 7px;
    font-size: 0.95rem;
  }
}

.discount-offer {
  background: #222;
  color: #fff;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 18px;
  display: inline-block;
  margin: 12px 0 0 0;
  font-size: 1.09rem;
  box-shadow: 0 5px 14px 0 rgba(33,33,33,0.10);
}

/* ======================================
   CONTACT INFO & MAP
====================================== */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 14px 0;
}
.map-location img {
  width: 54px;
  height: 54px;
}
.map-location p {
  font-size: 0.95rem;
  color: #232323;
}

@media (max-width: 600px) {
  .map-location {
    gap: 10px;
  }
  .map-location img {
    width: 36px;
    height: 36px;
  }
}

/* ======================================
   TEAM PROFILES
====================================== */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.team-profile {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 310px;
  background: #f6f7f8;
  border-radius: 13px;
  box-shadow: 0 2px 18px rgba(22,22,22,0.04);
  padding: 18px 16px 14px 16px;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border: 1px solid #ededed;
  transition: box-shadow 0.17s, border 0.17s;
}
.team-profile:hover {
  box-shadow: 0 7px 22px rgba(25, 72, 106, 0.07);
  border-color: #cbcbcb;
}
@media (max-width: 900px) {
  .team-profiles {
    gap: 10px;
  }
  .team-profile {
    min-width: 120px;
    max-width: 100%;
    padding: 13px 8px 7px 8px;
  }
}
@media (max-width: 600px) {
  .team-profiles {
    flex-direction: column;
    gap: 6px;
  }
  .team-profile {
    min-width: 0;
    margin-bottom: 8px;
    padding: 9px 7px 7px 10px;
  }
}

/* ==========================================
   FOOTER
========================================== */
footer {
  background: #171717;
  color: #f5f5f5;
  padding-top: 46px;
  padding-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 80px;
}
footer .container {
  padding: 0 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}
.footer-main > * {
  min-width: 210px;
  flex: 1 1 230px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #d3dbe6;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}
.footer-contact p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: #d0d2d4;
  margin-bottom: 7px;
}
.footer-newsletter h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #fff;
}
.footer-newsletter p {
  font-size: 0.98rem;
  color: #cacaca;
}
.footer-bottom {
  border-top: 1px solid #323232;
  padding: 18px 0 10px 0;
  text-align: center;
  font-size: 0.97rem;
  color: #c7c7c7;
}

@media (max-width: 900px) {
  .footer-main {
    gap: 16px;
  }
  .footer-main > * {
    min-width: 120px;
  }
}
@media (max-width: 600px) {
  footer {
    margin-top: 40px;
    padding-top: 24px;
  }
  .footer-main {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-main > * {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
    margin-bottom: 7px;
  }
}

/* =======================================
   QUICK LINKS
======================================= */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 0 0;
}
.quick-links a {
  background: #fff;
  color: #111;
  border: 1px solid #e2e3e7;
  border-radius: 9px;
  padding: 11px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.18s, border 0.18s, color 0.18s;
}
.quick-links a:hover, .quick-links a:focus {
  background: #222;
  border: 1px solid #222;
  color: #fff;
}
@media (max-width: 600px) {
  .quick-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* =======================================
   CARDS & CONTENT FLEXBOX
======================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(22,22,22,0.06);
  transition: box-shadow 0.16s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =======================================
   BUTTONS & INTERACTION
======================================= */
button, .cta-btn {
  outline: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.17s, color 0.17s, box-shadow 0.13s, transform 0.17s;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}

/* =======================================
   SPACING & GAPS (CRITICAL 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;
}

/* =======================================
   ANIMATION, MICRO-INTERACTION
======================================= */
.cta-btn, .footer-nav a, .main-nav a, .quick-links a {
  transition: background 0.22s, color 0.22s, box-shadow 0.18s, border 0.18s;
}
.card, .service-card, .service-item, .feature-list li, .testimonial-card, .team-profile {
  transition: box-shadow 0.21s, background 0.16s, border 0.15s, transform 0.13s;
}
.card:hover, .service-card:hover, .service-item:hover, .feature-list li:hover, .team-profile:hover {
  transform: translateY(-2px) scale(1.01);
}

/* =======================================
   MONOCHROME ELEGANT SHADOWS & DETAILS
======================================= */
.service-item, .service-card, .team-profile {
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 21px 0 rgba(0,0,0,0.07);
}
.card, .testimonial-card {
  border: 1px solid #ededed;
  box-shadow: 0 2px 8px 0 rgba(17,17,17,0.07);
}
.testimonial-card {
  background: #fafbfc;
}

/* =======================================
   COOKIE CONSENT BANNER & MODAL
======================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1a1c1e;
  color: #fff;
  z-index: 3000;
  padding: 24px 10px 18px 10px;
  box-shadow: 0 -4px 24px 0 rgba(44,44,44,0.22), 0 1px 5px rgba(62,62,62,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.32s cubic-bezier(.88,.07,.17,.87), opacity 0.2s;
  transform: translateY(0%);
  opacity: 1;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner-inner {
  max-width: 600px;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  min-width: 110px;
  font-size: 1rem;
  border-radius: 34px;
  padding: 8px 20px;
  margin-top: 2px;
  margin-bottom: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: #111;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #333;
}
.cookie-btn.reject {
  background: #fff;
  color: #111;
  border: 1px solid #bbb;
}
.cookie-btn.reject:hover {
  background: #e6e6e6;
  color: #111;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-btn.settings:hover {
  background: #111;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: #111;
  border-radius: 22px;
  box-shadow: 0 8px 44px 0 rgba(44,44,44,0.19);
  padding: 36px 38px 32px 38px;
  z-index: 3500;
  max-width: 400px;
  width: 96vw;
  opacity: 1;
  transition: opacity 0.22s, transform 0.23s;
}
.cookie-modal.hidden {
  opacity: 0;
  transform: translate(-50%,-40%) scale(0.93);
  pointer-events: none;
}
.cookie-modal h3 {
  color: #111;
  margin-bottom: 19px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cookie-category {
  background: #f4f7fa;
  border-radius: 8px;
  padding: 14px 13px 12px 13px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category.essential {
  color: #111;
  font-weight: 600;
  opacity: 0.86;
  background: #e9e9ec;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  background: #111;
  border-radius: 13px;
  border: none;
  width: 48px; height: 28px;
  position: relative;
  transition: background 0.2s;
  margin-left: 12px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  width: 48px; height: 28px;
  border-radius: 13px;
  background: #dce0e5;
  position: absolute;
  left: 0; top: 0;
  transition: background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #19486A;
}
.cookie-toggle-knob {
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  transition: left 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider .cookie-toggle-knob {
  left: 25px;
  background: #19486A;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 15px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  color: #707070;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-close:hover {
  background: #efefef;
  color: #111;
}

@media (max-width: 520px) {
  .cookie-modal {
    max-width: 97vw;
    padding: 21px 10px 23px 13px;
  }
}

/* ==============================
   MISCELLANEOUS
============================== */
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/***************************
* PRINT STYLES
****************************/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main, .container, .content-wrapper { width: 100%; max-width: none; padding: 0; }
  body { background: #fff; color: #191919; }
}
