/* --------------------------------------------------------
   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;
  font-size: 16px;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #21314B;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #38A8A3;
  text-decoration: none;
}
strong, b {
  font-weight: 700;
}

/* ------------------------------------------------------------
     BRAND FONTS & COLORS – Monochrome Sophisticated
--------------------------------------------------------------*/
:root {
  --primary: #21314B;
  --secondary: #38A8A3;
  --accent: #FFFAE7;
  --black: #15191e;
  --white: #fff;
  --grey-900: #23262a;
  --grey-700: #2d3238;
  --grey-500: #555a64;
  --grey-300: #c6c9d0;
  --grey-100: #f6f6f7;

  --border-radius: 10px;
  --shadow: 0 2px 16px 0 rgba(33,49,75,0.10);
  --shadow-hover: 0 4px 24px 0 rgba(33,49,75,0.14);

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.6em;
  line-height: 1.16;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
h5, h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

p, blockquote, ul, ol, li, cite, label {
  font-family: var(--font-body);
  color: var(--grey-900);
  font-weight: 400;
  margin-bottom: 1em;
  font-size: 1rem;
}
blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  font-style: italic;
  background: var(--grey-100);
  color: var(--grey-700);
  margin: 10px 0 10px 0;
}
cite {
  display: block;
  font-size: 0.98rem;
  color: var(--grey-500);
  margin-top: 5px;
  font-style: normal;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.4em;
}

hr {
  border: none;
  border-top: 1px solid var(--grey-300);
  margin: 32px 0;
}

/* ------------------------------------------------------
    CONTAINER & LAYOUT STRUCTURE – Flexbox only
--------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}

/* ------------------------------------------------------
      HEADER & NAVIGATION
--------------------------------------------------------*/
header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 8px -2px rgba(33,49,75,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 32px;
}
header img {
  height: 46px;
  max-width: 160px;
  transition: filter 0.2s;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  color: var(--grey-700);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  text-decoration: none;
  background: transparent;
  transition: color 0.18s, border-bottom 0.18s;
  position: relative;
  padding: 0.25em 0;
}
header nav a:hover, header nav a:focus {
  color: var(--primary);
}
.cta-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 10px 30px 10px 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  margin-left: 20px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow-hover);
  outline: none;
}

/* Hide hamburger by default on desktop */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  padding: 12px 0 8px 0;
  z-index: 1510;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.18s;
  box-shadow: none;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ----------------------------------------------------
     MOBILE NAVIGATION: Overlay, Nav, Buttons
------------------------------------------------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  background: var(--grey-900);
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100vw;
  z-index: 1550;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1.02), opacity 0.22s, visibility 0.23s;
  padding: 0;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--white);
  border: none;
  font-size: 2.1rem;
  font-weight: 300;
  align-self: flex-end;
  margin: 25px 28px 0 0;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  outline: none;
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 0 40px 0 36px;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-700);
  width: 100%;
  transition: color 0.15s;
  touch-action: manipulation;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: var(--grey-500);
  outline: none;
}

/* Responsive nav/hamburger show/hide */
@media (max-width: 995px) {
  header nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 996px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ------------------------------------------------------
      HERO SECTION
--------------------------------------------------------*/
.hero {
  background: linear-gradient(110deg, var(--white) 70%, var(--grey-100) 100%);
  min-height: 350px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  box-shadow: var(--shadow);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 44px 20px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    border-radius: 0;
  }
  .hero .container {
    min-height: 130px;
    padding: 28px 8px;
  }
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  line-height: 1.11;
}
.hero .subheadline {
  color: var(--grey-500);
  font-size: 1.25rem;
  font-family: var(--font-body);
  margin-bottom: 25px;
}
.hero .cta-btn {
  margin-top: 12px;
}

/* ------------------------------------------------------
      FEATURES & CARDS
--------------------------------------------------------*/
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features .content-wrapper {
  width: 100%;
}
.feature-grid {
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 16px;
}
.feature {
  background: var(--grey-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 270px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, background 0.18s;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature h3 {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.13rem;
}
.feature p {
  margin-bottom: 0;
  color: var(--grey-700);
}
.feature:hover, .feature:focus-within {
  box-shadow: var(--shadow-hover);
  background: var(--white);
}

/* General Card Container Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.21s, background 0.2s;
  min-width: 240px;
}
.card:hover, .card:focus-within {
  background: var(--grey-100);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}

/* ------------------------------------------------------
      GENERAL FLEX CONTENT GRID
--------------------------------------------------------*/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 955px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------
      SERVICE CARDS (for dienstleistungen)
--------------------------------------------------------*/
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.service {
  background: var(--grey-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 260px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: background 0.18s, box-shadow 0.17s;
}
.service img {
  width: 36px;
  height: 36px;
}
.service h3 {
  font-size: 1.11rem;
  color: var(--primary);
}
.service p {
  margin-bottom: 0;
  color: var(--grey-700);
}
.service:hover, .service:focus-within {
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

/* ------------------------------------------------------
      TESTIMONIALS
--------------------------------------------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 20px 28px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  color: var(--black);
}
.testimonial-card .star-rating {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-right: 12px;
}
.testimonial-card blockquote {
  border: none;
  padding: 0;
  background: transparent;
  color: var(--grey-900);
  font-size: 1.01rem;
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--grey-500);
  margin-top: 5px;
}

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

/* ------------------------------------------------------
      FOOTER
--------------------------------------------------------*/
footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0 16px 0;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
footer nav a {
  color: var(--grey-300);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  outline: none;
}
.footer-contact p, .footer-contact img {
  color: var(--grey-300);
  font-size: 0.99rem;
  vertical-align: middle;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------
      CTA HIGHLIGHT SECTIONS
--------------------------------------------------------*/
.cta-highlight {
  background: linear-gradient(105deg, var(--grey-100) 65%, var(--white) 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-highlight h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.cta-highlight .cta-btn {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .cta-highlight {
    border-radius: 0;
  }
}

/* --------------------------------------------------
     CARD & FLEX SPACING AND ALIGNMENT (MANDATORY)
----------------------------------------------------*/
.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.section { margin-bottom: 60px; padding: 40px 20px; }

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 16px; }
}

/* --------------------------------------------
     ABOUT/EXPERT PROFILES/PROJECTS CARDS
----------------------------------------------*/
.expert-profile, .project-summary {
  background: var(--grey-100);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, background 0.15s;
}
.expert-profile h3, .project-summary h3 {
  color: var(--primary);
  margin-bottom: 0.5em;
}
.expert-profile p, .project-summary p {
  color: var(--grey-700);
}
.expert-profile:hover, .project-summary:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

/* ----------------------------------------
     TEXT SECTIONS, FORMS, BUTTONS
------------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
}
.text-section a, .text-section a:visited {
  color: var(--primary);
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: underline;
  transition: color 0.18s;
}
.text-section a:hover {
  color: var(--secondary);
  text-decoration: none;
}

/* --------------------------------------------
      BUTTONS & FORM ELEMENTS
---------------------------------------------*/
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 30px;
  padding: 10px 28px;
  border: none;
  outline: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
}
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow-hover);
}
input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid var(--grey-300);
  padding: 10px 12px;
  margin-bottom: 14px;
  width: 100%;
  background: var(--white);
  color: var(--grey-900);
  transition: border-color 0.17s;
}
input:focus, textarea:focus {
  border-color: var(--primary);
  outline: none;
}

/* ------------------------------------------
      COOKIE CONSENT BANNER & MODAL
-------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--grey-900);
  color: var(--white);
  box-shadow: 0 -4px 20px -2px rgba(33,49,75,0.14);
  z-index: 2500;
  padding: 22px 16px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.30s, transform 0.34s, visibility 0.3s;
}
.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-banner .cookie-info {
  flex: 1 1 260px;
  font-size: 1.01rem;
  color: var(--white);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cta-btn {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 8px 22px;
  border-radius: 20px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.98rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--secondary);
  color: var(--white);
  outline: none;
}
.cookie-banner .cookie-settings {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .cookie-settings:hover {
  background: var(--primary);
}

@media (max-width: 655px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 3vw;
  }
}

.cookie-modal {
  position: fixed;
  z-index: 2600;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,49,75,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.23s, visibility 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal .cookie-modal-content {
  background: var(--white);
  color: var(--black);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  min-width: 340px;
  max-width: 440px;
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.38s cubic-bezier(.22, .61, .36, 1) both;
}
@keyframes cookieModalIn {
  from { transform: scale(0.93) translateY(40px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .close-modal {
  background: transparent;
  color: var(--grey-700);
  border: none;
  font-size: 1.8rem;
  align-self: flex-end;
  margin-bottom: -28px;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-modal:hover { color: var(--secondary); }
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.cookie-modal .cookie-cat input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--secondary);
}
.cookie-modal .cookie-cat label {
  font-family: var(--font-body);
  color: var(--black);
  font-size: 1.07rem;
}
.cookie-modal .desc {
  color: var(--grey-900);
  font-size: 0.97rem;
  margin-bottom: 8px;
}
.cookie-modal .buttons {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-modal .buttons button {
  background: var(--primary);
  color: var(--white);
} 
.cookie-modal .buttons button.secondary {
  background: var(--secondary);
  color: var(--white);
}
.cookie-modal .buttons button:hover,
.cookie-modal .buttons button.secondary:hover {
  background: var(--grey-900);
  color: var(--secondary);
}

/* ---------------------------------------------
   MICRO-ANIMATIONS, TRANSITIONS, FOCUS STATES
-----------------------------------------------*/
.card, .feature, .service, .testimonial-card, .expert-profile, .project-summary {
  transition: box-shadow 0.18s cubic-bezier(.67,.15,.39,1.32), background 0.17s;
}
.cta-btn, button, input[type="submit"] {
  transition: background 0.17s, color 0.18s, box-shadow 0.19s;
}
nav a, .mobile-nav a {
  transition: color 0.17s, background 0.13s;
}
*:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--secondary) inset;
}

/* Hide outline for mouse users, show strong focus for keyboard users */
:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover, .feature:hover, .service:hover, .testimonial-card:hover,
  .expert-profile:hover, .project-summary:hover {
    box-shadow: var(--shadow-hover);
    z-index: 2;
  }
}

/* ------------------------------------------
    RESPONSIVE LAYOUT & UTILITIES
--------------------------------------------*/
@media (max-width: 1100px) {
  .feature-grid, .service-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 735px) {
  .feature-grid, .service-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .feature, .service {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 22px 10px;
  }
}
@media (max-width: 520px) {
  header .container, footer .container, .container {
    padding: 0 5px;
  }
  .section {
    padding: 18px 2vw;
    margin-bottom: 25px;
  }
}

/* Utility classes for spacing */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-40 { margin-top: 40px; }
.mb-60 { margin-bottom: 60px; }
gap-20 { gap: 20px; }

/* Hide visually but keep visible to screen readers (for accessibility) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  white-space: nowrap;
  border: 0;
  padding: 0; margin: 0;
}

/* ----------------------------------------------
   PRINT
------------------------------------------------*/
@media print {
  * { color: #111 !important; background: #fff !important; box-shadow: none !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .section, .card, .feature, .testimonial-card, .cta-highlight { box-shadow: none !important; border: 1px solid #ccc !important; }
}
