/* CSS RESET AND 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; background: #fff; color: #111; }
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
strong, b { font-weight: 700; }

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

/* COLOR VARIABLES */
:root {
  --mono-bg: #fff;
  --mono-bg-soft: #f7f7f8;
  --mono-fg: #111;
  --mono-fg-alt: #333;
  --mono-border: #e3e3e6;
  --mono-dark: #1a1a1a;
  --brand-primary: #205072;
  --brand-secondary: #CCD6DF;
  --brand-accent: #FFB84C;
  --shadow-elevate: 0 2px 14px rgba(32,32,36,.09);
  --shadow-card: 0 2px 16px rgba(16,16,24,0.06);
  --shadow-heavy: 0 6px 24px rgba(20,20,32,0.16);
  --border-radius: 16px;
  --section-spacing: 60px;
  --container-max: 1160px;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: var(--mono-bg);
  color: var(--mono-fg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: var(--mono-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h1 { font-size: 2.8rem; line-height: 1.13; }
h2 { font-size: 2.0rem; line-height: 1.16; }
h3 { font-size: 1.25rem; line-height: 1.25; }
h4 { font-size: 1.1rem; }

p, ul, ol, label {
  font-size: 1rem;
  margin-bottom: 10px;
}
ul, ol { margin-left: 16px; }
ul li { margin-bottom: 6px; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1px solid var(--mono-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  z-index: 25;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
  gap: 32px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--mono-dark);
  opacity: .86;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  opacity: 1;
}
header img {
  height: 48px;
  margin-right: 12px;
}
.cta-button.primary {
  color: #fff;  background: var(--brand-primary);
  padding: 10px 28px;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  box-shadow: var(--shadow-elevate);
  font-size: 1.1rem;
  letter-spacing: .02em;
  transition: background .18s, box-shadow .18s, color .18s, transform .15s;
  margin-left: 8px;
  cursor: pointer;
  outline: none;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--mono-dark);
  color: var(--brand-accent);
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px) scale(1.04);
}

/*=== MOBILE MENU ===*/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 21px; right: 20px;
  z-index: 60;
  background: none; border: none;
  font-size: 2.3rem;
  color: var(--brand-primary);
  width: 46px; height: 46px;
  border-radius: 50%;
  transition: background .2s;
  cursor: pointer;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--brand-secondary);
  color: var(--mono-dark);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 80;
  transform: translateX(100vw);
  transition: transform .33s cubic-bezier(.83,.01,.23,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -4px 0 24px rgba(0,0,0,.14);
}
.mobile-menu-close {
  background: none; border: none;
  font-size: 2rem;
  color: var(--mono-dark);
  align-self: flex-end;
  margin: 20px 20px 8px 0;
  padding: 0 3px 2px 3px;
  cursor: pointer;
  z-index: 100;
  transition: color .18s;
}
.mobile-menu-close:hover {
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 36px 0 36px;
  gap: 22px;
  align-items: flex-start;
}
.mobile-nav a {
  padding: 13px 0;
  font-size: 1.25rem;
  color: var(--mono-dark);
  width: 100%;
  border-bottom: 1px solid var(--mono-border);
  transition: color .18s, background .18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-primary);
  background: var(--brand-secondary);
  border-radius: 8px;
}

/* --- Hide regular nav on mobile */
@media (max-width: 990px) {
  .main-nav { display: none; }
  .cta-button.primary { display: none; }
  .mobile-menu-toggle { display: block; }
  header .container {
    gap: 0;
    justify-content: flex-start;
  }
}
@media (min-width: 990px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/*=== LAYOUT SECTIONS AND UTILITIES ===*/
.section {
  margin-bottom: var(--section-spacing);
  padding: 40px 20px;
  background: none;
}
@media (max-width: 600px) {
  .section {
    padding: 35px 10px;
    margin-bottom: 36px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--mono-bg-soft);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 310px;
  min-width: 265px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
.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;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 16px 28px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  border-left: 6px solid var(--brand-primary);
  margin-bottom: 24px;
  max-width: 540px;
  min-width: 230px;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #222;
  font-style: italic;
}
.testimonial-card span { color: var(--brand-primary); font-size: .98rem; font-weight: 600; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HERO & BANNERS ==== */
.hero {
  background: linear-gradient(98deg, #fff 76%, #222 280%);
  padding: 70px 0 50px 0;
  border-bottom: 1px solid var(--mono-border);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 640px;
}
.hero h1 {
  color: #111;
  font-size: 2.6rem;
  line-height: 1.14;
  margin-bottom: 0;
}
.hero p {
  font-size: 1.13rem;
  color: #292929;
}

.cta-banner, .cta-blog {
  background: var(--mono-bg-soft);
  padding: 40px 0;
  border-radius: var(--border-radius);
  margin-bottom: var(--section-spacing);
}
.cta-banner h2, .cta-blog h2 { margin-bottom: 12px; }

/* --- FEATURES/ADVANTAGES (index/about/dienstleistungen) --- */
.features {
  margin-bottom: var(--section-spacing);
  background: none;
}
.features .content-wrapper {
  align-items: flex-start;
  gap: 32px;
}
.feature-grid {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 185px;
  max-width: 290px;
  background: var(--mono-bg-soft);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 26px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .15s;
}
.feature-grid li:hover {
  box-shadow: 0 5px 24px rgba(32,80,114,.15);
  transform: translateY(-3px) scale(1.028);
}
.feature-grid img {
  margin-bottom: 18px;
  width: 38px; height: 38px;
  filter: grayscale(100%) contrast(1.5);
}
.feature-grid h3 { margin-bottom: 8px; }

/* --- SERVICES PREVIEW --- */
.services-preview,
.services-overview {
  margin-bottom: var(--section-spacing);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.service-list li {
  background: var(--mono-bg-soft);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 22px 20px;
  flex: 1 1 220px; min-width: 180px; max-width: 297px;
  margin-bottom: 20px;
  display: flex; flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.service-list li a {
  font-weight: 600;
  color: var(--brand-primary);
  margin-top: 4px;
  transition: color .18s;
}
.service-list li a:hover { color: var(--brand-accent); text-decoration: underline; }

/* --- DETAILED SERVICE CARDS (dienstleistungen.html) ---*/
.service-cards {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.detailed-service-card {
  padding: 22px 20px;
  background: var(--mono-bg-soft);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  flex: 1 1 220px; min-width: 180px; max-width: 297px;
  margin-bottom: 20px;
  display: flex; flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  transition: box-shadow .16s, transform .12s;
}
.detailed-service-card:hover {
  box-shadow: 0 5px 24px rgba(32,32,60,.11);
  transform: translateY(-2px) scale(1.018);
}

/* --- SPECIALIZATIONS GRID (dienstleistungen.html) --- */
.specializations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.specializations-grid > div {
  background: var(--mono-bg-soft);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 22px 20px;
  flex: 1 1 220px; min-width: 180px; max-width: 300px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 7px;
  align-items: flex-start;
}
.experience-stats {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 32px;
}
.experience-stats ul { display: flex; gap: 24px; }
.experience-stats li {
  font-size: 1.06rem;
  color: var(--brand-primary);
  background: var(--mono-bg);
  padding: 10px 24px;
  border-radius: 32px;
  border: 1px solid var(--brand-secondary);
  font-weight: 700;
}

/* --- PRICING TABLES (preise.html) --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  border: 1px solid var(--mono-border);
  padding: 15px 14px;
  text-align: left;
}
.pricing-table th {
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
}
.pricing-table tbody tr:hover {
  background: var(--mono-bg-soft);
  transition: background .15s;
}

/* --- BLOG/LIST --- */
.blog-list .content-wrapper { gap: 30px; }
.categories-filter {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 1rem;
}
.categories-filter a {
  color: var(--brand-primary);
  background: var(--mono-bg-soft);
  padding: 4px 14px;
  border-radius: 20px;
  margin-right: 3px;
  font-size: 1rem;
  transition: background .14s, color .16s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: var(--brand-accent);
  color: #1a1a1a;
}
.featured-posts {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.featured-posts article {
  flex: 1 1 220px; min-width: 185px; max-width: 330px;
  background: var(--mono-bg-soft);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 22px 18px 18px 19px;
  display: flex; flex-direction: column; gap: 10px;
}
.featured-posts article a {
  font-weight: 600; color: var(--brand-primary);
  transition: color .18s; margin-top: 4px;
}
.featured-posts article a:hover { color: var(--brand-accent); }

.recent-articles {
  display: flex; flex-direction: column; gap: 13px;
}
.recent-articles article { padding: 8px 0 6px 0; }
.recent-articles article a {
  color: var(--brand-accent);
  font-weight: 600;
  font-size: .98rem;
  transition: color .12s;text-decoration: underline dotted 1.5px;
}
.recent-articles article a:hover { color: var(--brand-primary); }

/* --- CONTACT --- */
.contact ul {
  display: flex; flex-direction: column; gap: 10px; margin: 10px 0 10px 14px;
}
.contact .opening-hours { margin-top: 10px; font-weight: 600; }
.direct-contacts img, .contact ul img { margin-right: 8px; vertical-align: middle; height: 18px; }
.location-map {
  margin-top: 18px;
  font-size: .98rem;
  color: var(--brand-primary);
  background: var(--mono-bg-soft);
  border-radius: 12px; padding: 14px 16px;
}

/* --- THANK YOU PAGE --- */
.thank-you .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  background: var(--mono-bg-soft);
  border-radius: var(--border-radius);
  padding: 42px 32px;
  box-shadow: var(--shadow-card);
}

/* --- PRIVACY/LEGAL PAGES --- */
.privacy-policy, .gdpr-policy, .cookie-policy, .terms-service {
  background: var(--mono-bg-soft);
  border-radius: var(--border-radius);
  margin-bottom: var(--section-spacing);
}
.privacy-policy .content-wrapper, 
.gdpr-policy .content-wrapper,
.cookie-policy .content-wrapper,
.terms-service .content-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 38px 12px;
}

/* --- FAQ PAGE --- */
.faq-list .accordion-faq-list {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 22px;
}
.faq-list .accordion-faq-list > div {
  background: var(--mono-bg-soft);
  border-radius: 12px;
  padding: 18px 20px 14px 20px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--brand-primary);
  transition: box-shadow .16s;
}
.faq-list .accordion-faq-list > div:hover {
  box-shadow: var(--shadow-heavy);
}
.faq-search {
  border: 1px solid var(--mono-border);
  border-radius: 10px;
  box-shadow: none;
  padding: 10px 16px;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 24px;
  margin-top: 8px;
  background: var(--mono-bg);
  transition: border .16s;
}
.faq-search:focus {
  outline: none;
  border-color: var(--brand-primary);
}

.faq-contact .cta-button.primary {
  margin-top: 12px;
}

/* --- CLIENT BRANDS (about.html)--- */
.client-brands {
  margin-top: 28px;
  border-top: 1px solid var(--mono-border);
  padding-top: 16px;
  color: #666;
  font-size: .98rem;
}
.client-brands ul {display: flex;flex-wrap: wrap;gap:18px;}

/* --- STEPS, OL --- */
.step-list {
  display: flex;flex-direction: column; gap: 14px;
  margin: 16px 0 20px 17px;
}
.step-list li { font-size: 1rem; color: var(--mono-fg); }

/* --- FOOTER --- */
footer {
  background: #16181A;
  color: #EFEFEF;
  margin-top: 60px;
  padding: 40px 0 16px 0;
  border-top: 1px solid #35383d;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
footer img { height: 40px; margin-bottom: 12px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 32px 0 18px;
}
.footer-nav a {
  color: #EEE;
  font-size: 1rem;
  opacity: .8;
  transition: color .15s, opacity .13s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--brand-accent); opacity: 1; }
.footer-contact {
  font-size: 0.98rem;
  color: #EEE;
  opacity: .86;
}
.footer-contact img { height: 15px; margin-right: 7px; vertical-align: middle; }
.footer-contact span { display: block; margin-top: 5px; font-size: 0.95em; color: #CCC;}

/* -------- RESPONSIVE -------- */
@media (max-width: 1020px) {
  .container { padding: 0 12px; }
  .feature-grid, .service-list, .card-container, .specializations-grid, .featured-posts,
  .service-cards { gap: 14px; }
}
@media (max-width: 770px) {
  header .container, footer .container { flex-direction: column; gap: 14px; align-items: flex-start; }
  .content-wrapper { gap: 20px; }
  .feature-grid,.service-list,.card-container,.specializations-grid,.featured-posts { flex-direction: column; }
  .footer-contact { margin-left: 0; }
  .footer-nav { margin: 0 0 8px 0; flex-direction: row; flex-wrap: wrap; gap: 13px; }
}
@media (max-width: 500px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.34rem; }
  .card, .feature-grid li, .service-list li, .detailed-service-card, .specializations-grid > div, .testimonial-card { padding:16px 9px 13px 14px; }
  .thank-you .content-wrapper { padding: 22px 7px; }
  .privacy-policy .content-wrapper, .gdpr-policy .content-wrapper, .cookie-policy .content-wrapper, .terms-service .content-wrapper { padding: 16px 0; }
}

/*--- HOVER/ACTIVE/FOCUS INTERACTIONS ---*/
a, button, .cta-button.primary { transition: color .19s, background .16s, box-shadow .13s; outline: none; }
input, textarea, select {
  font-family: inherit; font-size: 1rem; color: var(--mono-fg);
  border-radius: 8px; border: 1px solid var(--mono-border); padding: 9px 14px;
}
input:focus, textarea:focus, select:focus{ border-color: var(--brand-primary); }

/*--- MICRO-INTERACTIONS ---*/
.cta-button.primary:active {
  background: var(--brand-accent);
  color: #111;
  transform: scale(.98);
}

.feature-grid li:focus-within, .service-list li:focus-within, .detailed-service-card:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 0 0 3px var(--brand-accent);
}

/*-------------------- SLIDER FOR TESTIMONIALS ---------------------*/
.testimonial-slider {
  display: flex;  flex-wrap: wrap; gap: 24px; margin-bottom: 18px;
}
/* Hide scroll on slider on mobile for overflow aesthetics */
.testimonial-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonial-slider::-webkit-scrollbar { display: none; }

@media (max-width: 900px) {
  .testimonial-slider { gap: 13px; }
  .testimonial-card { min-width: 220px; max-width: 96vw; }
}

/*-------------------- COOKIE CONSENT BANNER -------------------*/
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3500;
  background: #fff;
  border-top: 2px solid var(--brand-primary);
  box-shadow: 0 -2px 34px rgba(0,0,0,0.10);
  padding: 24px 0 24px 0;
  display: flex; flex-direction: row; align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 1rem;
  transition: transform .40s cubic-bezier(.95,0,.52,1);
}
.cookie-banner.hidden {
  transform: translateY(170%);
}
.cookie-banner__text { max-width: 510px; color: #222; line-height: 1.6; }
.cookie-banner__actions {
  display: flex; flex-direction: row; gap: 16px;
}
.cookie-btn {
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 8px 20px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  transition: background .14s, box-shadow .15s, color .13s;
  box-shadow: var(--shadow-card);
  outline: none;
}
.cookie-btn.settings {
  background: var(--mono-bg-soft);
  color: var(--mono-fg);
  border: 1px solid var(--brand-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-accent);
  color: #1a1a1a;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover { background: #ececec; color: var(--brand-accent); }
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 9px 24px 14px;
    gap: 20px;
    font-size: .96rem;
  }
  .cookie-banner__text { max-width: 96vw; }
}

/*--- COOKIE MODAL ---*/
.cookie-modal {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 3600;
  background: rgba(34,34,44,.76);
  display: flex; align-items: center; justify-content: center;
  animation: fadeInCookie .2s;  /* subtle fade */
}
@keyframes fadeInCookie { from{ opacity: 0; } to{ opacity: 1; } }
.cookie-modal__window {
  background: #fff;
  color: var(--mono-fg);
  padding: 38px 26px 25px 30px;
  border-radius: var(--border-radius);
  width: 92vw; max-width: 430px;
  box-shadow: var(--shadow-heavy);
  display: flex; flex-direction: column; gap: 18px;
  animation: slideUpCookie .21s cubic-bezier(.8,.08,.28,1.03);
}
@keyframes slideUpCookie { from{ transform:translateY(80px); opacity:0;} to{ transform:translateY(0px); opacity:1;} }
.cookie-modal__header {
  display: flex; flex-direction: row; justify-content: space-between; align-items: center;
  gap: 8px;
}
.cookie-modal__title {
  font-family: 'Roboto Slab',serif;
  font-size: 1.4rem;
  color: var(--brand-primary);
}
.cookie-modal__close {
  border: none; background: none;
  font-size: 1.8rem; color: #666; cursor: pointer; padding:0;
  border-radius: 50%; transition: background .18s, color .16s;
}
.cookie-modal__close:hover { background: #F6F6F7; color: #000; }
.cookie-modal__body label {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 13px; font-size: 1rem; cursor: pointer;
}
.cookie-modal__body .category {
  font-weight: 600; color: var(--brand-primary);
}
.cookie-toggle {
  appearance: none; width: 32px; height: 16px; border-radius: 12px;
  background: #bbbce0;
  position: relative; outline: none; transition: background .19s;
  margin-right: 8px; cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--brand-accent);
}
.cookie-toggle::before {
  content: '';
  display: block; position: absolute; left: 2px; top: 2px;
  width: 12px; height: 12px; background: #fff;
  border-radius: 50%; box-shadow: 0 1px 2px rgba(32,32,80,0.08);
  transition: left .17s, background .11s;
}
.cookie-toggle:checked::before {
  left: 17px; background: #fff4e6;
}
.cookie-modal__actions { display: flex; gap: 13px; margin-top: 8px; }
.cookie-modal__desc { font-size: .98rem; color: #292929; }

/*----- ELEVATION SHADOWS AND RADIUS (monochrome sophisticated) -----*/
.card, .feature-grid li, .service-list li, .detailed-service-card, .specializations-grid > div, .testimonial-card, .privacy-policy, .gdpr-policy, .terms-service, .cookie-policy {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

/*--- MONOCHROME DRAMA EFFECTS ---*/
.hero, .section, .features, .services-preview, .testimonials {
  background: var(--mono-bg);
  color: var(--mono-fg);
}
@media (max-width: 600px) {
  .hero { padding: 40px 0 20px 0; }
}

/*--- VISUAL HIERARCHY ---*/
h1 { margin-bottom: 14px; }
h2 { margin-bottom: 12px; }
h3 { margin-bottom: 6px; }

/*--- UTILITY: visually hidden for accessibility ---*/
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/*--- A11Y: Focus visible for keyboard navigation ---*/
a:focus, button:focus, .cta-button.primary:focus,
.card:focus-within, .feature-grid li:focus-within {
  outline: 2px dashed var(--brand-accent); outline-offset: 2px;
}

/* ============= END OF MAIN CSS ============= */