/* Zenith Poolpflege Modern Bold - style.css */

/* ==== CSS RESET & 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.5;
  background: #F4FAFF;
  color: #0A577B;
  font-family: 'Roboto', Arial, sans-serif;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* ==== CSS VARIABLES (with fallbacks) ==== */
:root {
  --color-primary: #0A577B;
  --color-secondary: #49A8DE;
  --color-accent: #F4FAFF;
  --color-bg: #F4FAFF;
  --color-text: #0A577B;
  --color-nav-bg: #fff;
  --color-black: #1a222a;
  --color-white: #fff;
  --color-shadow: rgba(10,87,123,0.07);
  --color-highlight: #12c1dd;
  --radius-md: 16px;
  --radius-lg: 30px;
  --shadow-strong: 0 6px 32px rgba(10,87,123,0.18);
  --shadow-medium: 0 2px 10px rgba(10,87,123,0.10);
  --shadow-card: 0 2px 12px rgba(10,87,123,0.10);
  --transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
}

/* ==== LAYOUT HELPERS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.7px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 8px;
  color: var(--color-black);
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

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

/* ==== HEADER & NAVIGATION ==== */
header {
  background: var(--color-white);
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 0;
  z-index: 20;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}
header a img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.cta-button.primary {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 10px 28px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: var(--transition);
  letter-spacing: 0.07em;
  cursor: pointer;
  margin-left: 28px;
  outline: none;
  display: inline-block;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px var(--color-shadow);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.15s;
  z-index: 31;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    padding: 0 6px;
  }
  .cta-button.primary {
    margin-left: 10px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--color-nav-bg);
  box-shadow: 0 8px 38px var(--color-shadow);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform .34s cubic-bezier(.7,.1,.5,1);
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  align-self: flex-end;
  margin: 30px 28px 18px 0;
  cursor: pointer;
  z-index: 201;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 10px 38px 0 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 10px 0;
  margin-right: 0;
  color: var(--color-primary);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
@media (max-width: 600px) {
  .mobile-nav {
    padding: 10px 18px 0 18px;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(94deg, var(--color-accent), #e2eefa 85%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 350px;
}
.hero .content-wrapper {
  align-items: center;
  gap: 20px;
  text-align: center;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  letter-spacing: -2px;
  font-weight: 900;
}
.hero p {
  color: var(--color-secondary);
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.hero .cta-button {
  margin-top: 10px;
  font-size: 1.2rem;
}
@media(max-width: 700px) {
  .hero {
    padding: 24px 0 36px 0;
  }
  .hero h1 {
    font-size: 2.05rem;
  }
  .hero .container {
    min-height: 190px;
  }
}

/* ==== SECTIONS ==== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius-md);
  box-shadow: none;
}
.features,
.testimonials,
.benefits,
.faq,
.stats,
.pricing,
.confirmation,
.blog-intro,
.articles,
.contact,
.values,
.handeln {
  background: var(--color-white);
  box-shadow: 0 4px 16px var(--color-card, #C7E9FB44);
}

/* ==== FLEXBOX PATTERN CLASSES ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}

/* ==== FEATURE GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.feature {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 330px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-height: 275px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.feature img {
  width: 48px;
  height: 48px;
}
.feature h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.feature p {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 32px var(--color-shadow);
  transform: translateY(-3px) scale(1.02);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .feature {
    min-width: 220px;
    padding: 22px 12px 15px 12px;
  }
}
@media (max-width: 620px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ==== TESTIMONIALS / SLIDER / LIST ==== */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  flex: 1 1 340px;
  max-width: 380px;
  min-width: 230px;
  background: #fff;
  color: #1a222a;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 22px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 160px;
  font-size: 1.07rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: box-shadow 0.18s, transform 0.17s;
  position: relative;
}
.testimonial-card p {
  color: #1a222a;
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 0.97rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px var(--color-shadow);
  background: var(--color-accent);
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 800px) {
  .testimonial-slider, .testimonial-list {
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* ==== SECTION: HANDLEN / CALL TO ACTION ==== */
.handeln .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* ==== FAQ, STATS, VALUES LIST ==== */
.faq ul, .stats ul, .benefit-grid, .values ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 4px;
}
.benefit-grid {
  padding-left: 6px;
}
.values ul li, .faq ul li, .benefit-grid li, .stats ul li {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-black);
  font-weight: 500;
}
.stats ul li strong {
  font-size: 1.18em;
  margin-right: 6px;
  color: var(--color-primary);
}

/* ==== BLOG POSTS === */
.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post {
  flex: 1 1 240px;
  max-width: 340px;
  min-width: 220px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.17s;
  position: relative;
}
.post h3 {
  font-family: var(--font-display);
  font-size: 1.17rem;
  color: var(--color-primary);
  font-weight: 800;
}
.post p {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
}
.post a {
  margin-top: 8px;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-bottom: 2px solid var(--color-secondary);
  transition: color 0.17s, border-color 0.17s;
  width: fit-content;
}
.post a:hover, .post a:focus {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}
.post:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px) scale(1.03);
}
@media (max-width: 800px) {
  .post-grid {
    gap: 12px;
  }
  .post {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 16px 12px 10px 12px;
  }
}
@media (max-width:600px) {
  .post-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* ==== TABLES (Pricing) ==== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--color-shadow);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 10px;
  font-family: var(--font-display);
  color: var(--color-primary);
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 700;
}
.pricing-table th {
  background: var(--color-white);
  font-size: 1.08rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media(max-width:600px) {
  .pricing-table, .pricing-table th, .pricing-table td {
    font-size: 0.98rem;
    padding: 10px 6px;
  }
}

/* ==== CONTACT PAGE LAYOUT ==== */
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.address-map {
  margin: 22px 0 12px 0;
  background: #e2eefa;
  border-radius: 8px;
  padding: 16px 12px;
  font-family: var(--font-body);
}

/* ==== BUTTONS / INTERACTIVE ==== */
button, .btn, input[type="submit"] {
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  padding: 9px 21px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
button:focus, .cta-button:focus {
  outline: 2px solid var(--color-highlight);
  outline-offset: 2px;
}
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 28px 0;
  width: 100%;
  position: relative;
  z-index: 10;
}
footer .container {
  flex-direction: column;
  gap: 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-links a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, opacity 0.15s;
}
.footer-links a:hover, .footer-links a:focus {
  opacity: 1;
  border-bottom: 2px solid var(--color-secondary);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 16px;
  justify-content: center;
  align-items: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
}
.footer-contact img {
  width: 24px;
  height: 24px;
}

/* ==== RESPONSIVE FLEX LAYOUT ADJUSTMENTS ==== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  section {
    padding: 30px 8px;
    margin-bottom: 44px;
  }
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .container {
    padding: 0 5px;
  }
  section {
    padding: 20px 2px 26px 2px;
  }

  .footer-links {
    gap: 14px;
  }
}

/* ==== MINIMUM GAP BETWEEN CARDS AND SECTIONS ==== */
section, .card, .post, .feature, .testimonial-card {
  margin-bottom: 20px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(110%);
  transition: transform 0.33s cubic-bezier(0.5,0,0.2,1);
  z-index: 3000;
  background: #fff;
  box-shadow: 0 0 38px var(--color-shadow), 0 -1px 12px #C7E9FB44;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 540px;
  padding: 30px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-black);
  opacity: 1;
}
.cookie-banner.active {
  transform: translateX(-50%) translateY(0);
}
.cookie-banner strong {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-banner button, .cookie-banner .btn {
  padding: 7px 18px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-banner .accept {
  background: var(--color-primary);
  color: #fff;
  margin-right: 0;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-secondary);
}
.cookie-banner .settings {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #e2eefa;
  color: var(--color-secondary);
}
.cookie-banner .reject {
  background: none;
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e2eefa;
  color: var(--color-secondary);
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(10, 87, 123, 0.38);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.7,.1,.5,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 54px var(--color-shadow);
  padding: 36px 32px 24px 32px;
  max-width: 480px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
}
.cookie-modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 14px 12px;
}
.cookie-category-name {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.04rem;
}
.cookie-category-toggle {
  margin-left: 8px;
}
/* Toggle switches basic style */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #badaf9;
  border-radius: 16px;
  transition: .2s;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 14px; width: 14px;
  left: 3px; bottom: 3px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: .2s;
}
.switch input:checked + .switch-slider {
  background: var(--color-secondary);
}
.switch input:checked + .switch-slider:before {
  transform: translateX(16px);
}
/* Essential cookies locked */
.cookie-category[data-essential] .switch {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal-btns button {
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-md);
  font-size: 1rem;
}
.cookie-modal-btns .save {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal-btns .save:hover {
  background: var(--color-secondary);
}
.cookie-modal-btns .cancel {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-modal-btns .cancel:hover {
  background: #e2eefa;
  color: var(--color-secondary);
}

@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 16px 7vw;
  }
  .cookie-banner {
    max-width: 99vw;
    border-radius: 0;
    padding: 16px 4px 10px 4px;
  }
}

/* ==== UTILITY ==== */
.hide-on-mobile {
  display: block;
}
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.text-center {
  text-align: center !important;
}
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }

/* ==== ACCESSIBILITY & FOCUS ==== */
a:focus, button:focus, .cta-button:focus {
  outline: 2.5px solid var(--color-highlight);
  outline-offset: 2px;
}

/* ==== ANIMATIONS ==== */
.testimonial-card, .feature, .post, .cookie-banner, .cookie-modal-content {
  will-change: transform, box-shadow;
}

/* ==== PRINT OPTIMIZATION ==== */
@media print {
  header, footer, .mobile-menu, .cookie-banner { display: none; }
  section, .container { background: #fff; box-shadow: none; color: #000; }
  body { background: #fff; color: #000; }
}
