/* ========================================================
   CSS RESET & BASE 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;
}

body {
  line-height: 1.5;
  background: #F7F7F7;
  color: #283148;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

a {
  color: #1B365D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F1A208;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* --------------------
    PASTEL COLOR PALETTE
   ------------------- */
:root {
  --primary: #1B365D;
  --secondary: #F7F7F7;
  --accent: #F1A208;
  --pastel-blue: #DEEFFF;
  --pastel-pink: #FFE7F0;
  --pastel-lavender: #E3E9FF;
  --pastel-mint: #E4FFF7;
  --pastel-yellow: #FFFCE7;
  --pastel-violet: #F4EEFF;
  --card-bg: #FFFFFF;
  --shadow: 0 6px 32px 0 rgba(40, 49, 72, 0.10);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

/* ========================================================
   TYPOGRAPHY
   ======================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23314C;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1   { font-size: 2.5rem; margin-bottom: 24px; }
h2   { font-size: 2rem; margin-bottom: 20px; }
h3   { font-size: 1.35rem; margin-bottom: 16px; }
h4   { font-size: 1.1rem; margin-bottom: 12px; }
h5,h6 { font-size: 1rem;  margin-bottom: 10px; }
p, ul, ol, li, table, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #283148;
}

blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #283148;
  margin-bottom: 8px;
  margin-left: 0;
  padding-left: 0;
}
blockquote span {
  font-style: normal;
  display: block;
  margin-top: 12px;
  color: #607092;
  font-size: 0.97rem;
}

strong, b {
  font-weight: 700;
}

.section h2, .content-wrapper h2 {
  color: #476699;
  background: linear-gradient(90deg, #F7E4FF 30%, #E4FFF7 100%);
  padding: 4px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
  font-weight: 700;
}

/* ========================================================
   CONTAINER & LAYOUT
   ======================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  min-width: 0;
}
@media (max-width: 600px) {
  .section {
    padding: 28px 8px; /* mobile */
    margin-bottom: 40px;
  }
}

.text-section, .text-image-section {
  margin-bottom: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow 0.25s, transform 0.23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 32px 0 rgba(40,49,72,0.16);
  transform: translateY(-2px) scale(1.01);
}

.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;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, #E3E9FF 0%, #E4FFF7 100%);
  box-shadow: var(--shadow);
  color: #1B365D;
  min-width: 0;
  max-width: 660px;
}
.testimonial-card blockquote {
  color: #1B365D;
  margin: 0;
}

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

.feature-grid,
.service-list,
.service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid > div,
.service-list > div,
.service-detail-grid > div {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 16px;
  min-width: 210px;
  flex: 1 1 235px;
  transition: box-shadow 0.22s, transform 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid > div:hover,
.service-list > div:hover,
.service-detail-grid > div:hover {
  box-shadow: 0 10px 34px 0 rgba(40,49,72,0.13);
  transform: translateY(-1px) scale(1.015);
}

@media (max-width: 900px) {
  .card-container, .feature-grid, .service-list, .service-detail-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 10px 16px 13px;
  }
}

/* ========================================================
   HEADER & NAVIGATION
   ======================================================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #A6D8FA 0%, #E3E9FF 100%);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 103;
  padding-top: 0;
  padding-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: 36px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  color: #1B365D;
  opacity: 0.90;
  font-weight: 500;
  position: relative;
  padding: 5px 0 4px 0;
  border-radius: 6px;
  transition: color 0.22s, background 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #F1A208;
  background: #E3E9FF;
}
header img {
  max-height: 54px;
  height: 40px;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #FFEEB6 30%, #F7E3FF 100%);
  color: #1B365D;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 12px 30px;
  margin-left: 12px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow);
  outline: none;
  cursor: pointer;
  transition: background 0.22s, color 0.15s, box-shadow 0.16s, transform 0.18s;
  display: inline-block;
  letter-spacing: .03em;
}
.cta-btn:hover, .cta-btn:focus {
  color: #F1A208;
  background: linear-gradient(90deg, #E3E9FF 20%, #E4FFF7 100%);
  box-shadow: 0 6px 24px 0 rgba(241, 162, 8, 0.10), var(--shadow);
  transform: translateY(-1px) scale(1.03);
}

.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F1A208;
  font-weight: 600;
  font-size: 1.03rem;
  text-decoration: underline;
  border-radius: var(--radius-sm);
  transition: color 0.19s, background 0.16s;
  padding: 5px 10px;
  display: inline-block;
  margin-top: 4px;
}
.cta-link:hover, .cta-link:focus {
  color: #1B365D;
  background: #FFFCE7;
}

.badge {
  display: inline-block;
  background: #FFF4CD;
  color: #F1A208;
  font-size: 0.90em;
  margin-left: 6px;
  padding: 2px 10px;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .01em;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 14px 0;
}
.trust-badges img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 12px #c2c7e6);
}

/* HAMBURGER NAVIGATION (mobile) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 18px;
  z-index: 108;
  background: linear-gradient(87deg, #E3E9FF 80%, #E4FFF7 100%);
  border: none;
  font-size: 2.1rem;
  color: #1B365D;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.19s, transform 0.14s;
  cursor: pointer;
}
.mobile-menu-toggle:active {
  background: #e3e9ffe8;
  color: #F1A208;
  transform: scale(1.03);
}

.mobile-menu {
  display: flex; /* hidden by default, will be flex column with JS 'active' class */
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(120deg, #E3E9FF 80%, #FFFCE7 100%);
  z-index: 120;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.38s cubic-bezier(.4,0,.2,1);
  transform: translateX(-100%);
}
.mobile-menu.active {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.33s cubic-bezier(.4,0,.2,1), opacity 0.38s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #607092;
  margin: 23px 18px 0 0;
  align-self: flex-end;
  transition: color 0.18s, transform 0.13s;
  cursor: pointer;
}
.mobile-menu-close:active {
  color: #F1A208;
  transform: scale(1.07);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 24px 24px 34px;
  gap: 18px;
}
.mobile-nav a {
  color: #1B365D;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFFCE7;
  border-radius: var(--radius-sm);
  font-size: 1.18em;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 13px 12px 11px 12px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFE7F0;
  color: #F1A208;
}

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

/* ========================================================
   MAIN AREA/CARDS/SECTIONS
   ======================================================== */
main {
  width: 100%;
  margin: 0 auto 40px auto;
  min-width: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  min-width: 0;
}
@media (max-width: 600px) {
  main { margin-bottom: 20px; }
  section { padding: 30px 0 28px 0; margin-bottom: 32px; }
}

/* TABLES (Preise) */
table {
  border-collapse: collapse;
  width: 100%;
  background: #FFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 22px;
  font-size: 17px;
}
thead {
  background: #E3E9FF;
  color: #23314C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
}
th, td {
  padding: 15px 12px;
  border-bottom: 1px solid #F1F4F9;
  text-align: left;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* SERVICE FEATURES */
.service-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 6px;
}
.service-features li {
  background: #FFFCE7;
  color: #8096b2;
  padding: 7px 19px;
  border-radius: var(--radius-sm);
  font-size: 0.98em;
  margin-right: 0;
}

/* ADDRESS & CONTACT */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 26px 0;
  font-size: 1.08em;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-details img {
  height: 22px;
  width: 22px;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: #E4FFF7;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 26px 0;
  margin: 22px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* STAR RATINGS IN TESTIMONIALS */
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 6px;
}
.star-rating img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 2px 6px #dae3fa78);
}

/* FAQ ACCORDION */
.faq-accordion h2 {
  background: #E3E9FF;
  padding: 9px 16px;
  border-radius: 9px;
  color: #23314C;
  margin: 12px 0 6px 0;
  font-size: 1.08em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.16s;
}
.faq-accordion h2:hover {
  background: #E4FFF7;
  color: #F1A208;
}
.faq-accordion p {
  padding-left: 12px;
}

/* ========================================================
   FOOTER
   ======================================================== */
footer {
  background: linear-gradient(90deg,#e3e9ff 60%, #f7f7f7 100%);
  box-shadow: 0 -3px 28px rgba(50,49,100,0.08);
  padding: 36px 0 12px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 1.01em;
}
footer nav a {
  color: #607092;
  opacity: 0.88;
  padding: 3px 6px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  font-size: 0.98em;
  gap: 3px;
  color: #758dad;
  align-items: center;
}
.footer-contact a {
  color: #1B365D;
}
.footer-copyright {
  font-size: 0.94em;
  color: #a3aac7;
  margin-top: 4px;
  text-align: center;
}

@media (max-width: 600px) {
  footer .container {
    gap: 11px;
    padding-left: 5px; padding-right: 5px;
  }
}

/* ========================================================
   BUTTONS & INTERACTIONS
   ======================================================== */
button, .cta-btn {
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, color 0.16s, box-shadow 0.14s;
  outline: none;
}

/* For Cookie and mobile nav buttons, see respective sections */

/* ========================================================
   RESPONSIVE FLEXBOX ADJUSTMENTS
   ======================================================== */
@media (max-width: 800px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  header nav {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 19px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========================================================
   SPACING & LAYOUT UTILITY CLASSES
   ======================================================== */
.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) {
  .section { margin-bottom: 36px; padding: 28px 8px; }
  .content-grid { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .card-container, .feature-grid, .service-list, .service-detail-grid { flex-direction: column; gap: 16px; }
}

/* ========================================================
   COOKIE CONSENT BANNER
   ======================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(90deg,#E3E9FF 60%, #FFFCE7 100%);
  box-shadow: 0 -3px 30px 0 rgba(40,49,72,.15);
  padding: 19px 18px 19px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
  animation: cookieFadeIn 0.55s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(60px);} to { opacity: 1; transform: translateY(0);}
}

.cookie-banner p {
  flex: 1 1 200px;
  color: #22314c;
  font-size: 1.08em;
  margin-right: 15px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  background: #FFFCE7;
  color: #1B365D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  border-radius: 9px;
  border: 1px solid #eee2a2;
  padding: 7px 17px;
  transition: background 0.18s, color 0.17s, border 0.13s;
  font-weight: 600;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFE7F0;
  color: #F1A208;
  border: 1px solid #FFD1B3;
}

.cookie-btn.settings {
  background: #E4FFF7;
  color: #475C7C;
  border: 1px solid #A6D8FA;
}
.cookie-btn.settings:hover {
  background: #FFFCE7;
  color: #1B365D;
  border: 1px solid #F1A208;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0 0 0 0;
  z-index: 10001;
  background: rgba(40,49,72,0.14);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalBgIn 0.28s cubic-bezier(.4,0,.2,1);
}
@keyframes modalBgIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: linear-gradient(120deg,#E3E9FF 80%, #F4EEFF 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 7px 40px 0 rgba(70,70,106,0.17), var(--shadow);
  max-width: 385px;
  padding: 34px 30px 26px 30px;
  color: #23314C;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: modalIn 0.33s cubic-bezier(.4,0,.2,1);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(90px);} to { opacity: 1; transform: translateY(0);}
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 13px;
  text-align: left;
}
.cookie-modal ul {
  margin-bottom: 16px;
  margin-left: 0;
}
.cookie-modal ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
  font-size: 0.99em;
}
.cookie-modal input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: #F1A208;
}
.cookie-modal .modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 13px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6em;
  color: #607092;
  cursor: pointer;
  transition: color 0.18s, transform 0.15s;
}
.cookie-modal-close:hover {
  color: #F1A208;
  transform: scale(1.10);
}

.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EEE;
  border-radius: 22px;
  transition: 0.23s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  left: 3px; bottom: 3px;
  width: 15px; height: 15px;
  background: #C4E8FF;
  border-radius: 50%;
  transition: 0.21s;
}
.cookie-modal .switch input:checked + .slider {
  background: #F1A208;
}
.cookie-modal .switch input:checked + .slider:before {
  background: #FFD972;
  transform: translateX(17px);
}

.cookie-modal .essential {
  opacity: 0.54;
}
.cookie-modal .essential .switch {
  pointer-events: none;
  filter: grayscale(80%);
}

@media (max-width: 510px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 11px 7px;
    font-size: 0.99em;
  }
  .cookie-btn { padding: 8px 13px; }
  .cookie-modal { padding: 17px 8px 15px 14px; max-width: 96vw; }
}

/* ========================================================
   SOFT PASTEL ATMOSPHERE UTILITY CLASSES
   ======================================================== */
.bg-pastel-blue    { background: #DEEFFF; }
.bg-pastel-pink    { background: #FFE7F0; }
.bg-pastel-mint    { background: #E4FFF7; }
.bg-pastel-yellow  { background: #FFFCE7; }
.bg-pastel-lavender{ background: #E3E9FF; }
.bg-pastel-violet  { background: #F4EEFF; }
.bg-card           { background: #FFF; }

.txt-pastel        { color: #A6D8FA; }
.txt-accent        { color: #F1A208; }
.txt-primary       { color: #1B365D; }

.radius-lg { border-radius: var(--radius-lg); }
.radius-md { border-radius: var(--radius-md); }
.radius-sm { border-radius: var(--radius-sm); }

/* ========================================================
   MICROINTERACTIONS & MOTION
   ======================================================== */
.card, .service-list > div, .feature-grid > div, .service-detail-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover, .service-list > div:hover, .feature-grid > div:hover, .service-detail-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 8px 35px 0 rgba(30,50,80,0.14);
  transform: translateY(-2px) scale(1.01);
}
.cta-btn, .cta-link, .cookie-btn {
  transition: background 0.2s, color 0.17s, box-shadow 0.15s, transform 0.15s;
}

/* ========================================================
   PRINT
   ======================================================== */
@media print {
  * { color: #111 !important; background: transparent !important; box-shadow: none !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
