/* ===================================================
   KryptoVertrauen CSS RESET & BASELINE NORMALIZE
   =================================================== */
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A365D;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.39,.58,.57,1);
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* FONT FACE (LOAD Fallbacks for brand style) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* ===============================
   LAYOUT HELPERS & SPACING
   =============================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  /* Only for geometric decoration, never for content */
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============================
   GEOMETRIC STRUCTURED THEME
   =============================== */
:root {
  --brand-primary: #1A365D;
  --brand-secondary: #38B2AC;
  --brand-accent: #E2E8F0;
  --brand-white: #fff;
  --brand-black: #162135;
  --card-bg: #f9fbfc;
  --button-bg: #1A365D;
  --button-hover: #38B2AC;
  --shadow: 0 2px 12px 0 rgba(26,54,93,0.08);
  --radius: 18px;
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
   HEADER & NAVIGATION
   XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
header {
  background: var(--brand-white);
  box-shadow: 0 4px 18px rgba(26,54,93,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 76px;
}
header a img {
  display: block;
  height: 48px;
  margin-right: 18px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 16px;
}
nav a {
  color: var(--brand-primary);
  padding: 9px 18px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
nav a:hover,
nav a:focus {
  color: var(--brand-secondary);
  background: var(--brand-accent);
}
.btn-primary {
  background: var(--button-bg);
  color: var(--brand-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 11px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, transform 0.13s;
  margin-left: 16px;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--button-hover);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--brand-secondary);
  color: var(--brand-white);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
  display: inline-block;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
}

/* MOBILE NAVIGATION --------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2.4rem;
  color: var(--brand-primary);
  border: none;
  cursor: pointer;
  margin-left: 16px;
  z-index: 40;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--brand-secondary);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,54,93, 0.96);
  z-index: 101;
  transition: transform 0.4s cubic-bezier(.39,.58,.57,1);
  transform: translateX(-100%);
  will-change: transform;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--brand-accent);
  font-size: 2.1rem;
  border: none;
  position: absolute;
  top: 24px;
  right: 22px;
  cursor: pointer;
  z-index: 111;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: var(--brand-accent);
  font-size: 1.36rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 32px;
  width: 96vw;
  display: block;
  border-radius: 12px;
  text-align: center;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-white);
}

@media (max-width: 1024px) {
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* Ensure mobile menu overlay is above everything */
@media (max-width: 1024px) {
  .mobile-menu { display: flex; }
  .mobile-menu:not(.open) {
    transform: translateX(-100%);
    pointer-events: none;
    opacity: 0;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ===============================
   TYPOGRAPHY
   =============================== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 900;
  letter-spacing: .01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.18;
  margin-bottom: 10px;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.22rem;
  line-height: 1.25;
  margin-bottom: 6px;
  font-weight: 700;
}
h4 {
  font-size: 1.09rem;
  font-weight: 700;
}
p, li, input, textarea, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--brand-primary);
}
.subheadline {
  font-size: 1.23rem;
  color: var(--brand-secondary);
  margin-bottom: 10px;
  letter-spacing: .006em;
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.27rem; }
  h3 { font-size: 1.06rem; }
  .subheadline { font-size: 1rem; }
}

/* ===============================
   HERO / SECTIONS
   =============================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  background: var(--brand-white);
  position: relative;
}
section .container {
  flex-direction: column;
}
section:not(:first-child) {
  border-radius: var(--radius);
  box-shadow: 0 1px 12px rgba(26, 54, 93, 0.04);
}

/* ===============================
   FEATURE GRID & CARDS (GEOMETRIC)
   =============================== */
.feature-grid, .article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-card {
  background: var(--card-bg);
  border: 2.5px solid var(--brand-accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 260px;
  flex: 1 1 280px;
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.19s, box-shadow 0.18s;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  /* geometric styling: make somewhat 'angular' */
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 8% 100%, 0 92%);
}
.feature-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.feature-card:hover, .feature-card:focus {
  box-shadow: 0 4px 24px 0 rgba(56,178,172,0.12);
  transform: translateY(-6px) scale(1.02);
  border-color: var(--brand-secondary);
  z-index: 2;
}

@media (max-width: 889px) {
  .feature-grid, .article-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-card, .article-grid .feature-card {
    min-width: 0;
    flex: 1 1 100%;
  }
}

/* ===============================
   SERVICE CARDS
   =============================== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.service-card {
  background: var(--brand-accent);
  border-left: 4.5px solid var(--brand-secondary);
  border-radius: 12px;
  flex: 1 1 290px;
  padding: 30px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-shadow: 0 1px 8px rgba(26, 54, 93, 0.06);
  transition: box-shadow 0.14s, transform 0.17s;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 3px 22px 0 rgba(56,178,172,0.15);
  transform: translateY(-4px) scale(1.017);
}
.more-info-link {
  margin-top: 12px;
}
.more-info-link a {
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.16s;
}
.more-info-link a:hover, .more-info-link a:focus {
  color: var(--brand-primary);
}

@media (max-width: 889px) {
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .service-card {
    min-width: 0;
    flex: 1 1 100%;
  }
}

/* ===============================
   TESTIMONIALS
   =============================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: var(--brand-accent);
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(26,54,93,0.07);
  min-width: 260px;
  flex: 1 1 320px;
  color: #1A365D;
  /* CRITICAL: ensure high contrast */
}
.testimonial-card p {
  color: #1A365D;
  font-size: 1.06rem;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-secondary);
  font-size: 0.98rem;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

@media (max-width: 889px) {
  .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    min-width: 0;
    flex: 1 1 100%;
  }
}

/* ===============================
   FAQ ACCORDION
   =============================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.faq-item {
  background: var(--brand-accent);
  border-radius: 13px;
  padding: 18px 22px;
  box-shadow: 0 1px 8px rgba(26, 54, 93, 0.04);
  transition: box-shadow 0.14s, transform 0.13s;
}
.faq-item:hover, .faq-item:focus {
  box-shadow: 0 2px 14px rgba(26, 54, 93, 0.07);
  transform: translateY(-2px) scale(1.01);
}
.faq-item h3 {
  margin-bottom: 7px;
  font-weight: 700;
}

/* ===============================
   GEOMETRIC & STRUCTURED FORMS / SEARCH
   =============================== */
input[type="search"] {
  appearance: none;
  border-radius: 10px;
  border: 2px solid var(--brand-accent);
  padding: 11px 16px;
  font-size: 1rem;
  width: 100%;
  background: var(--card-bg);
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(26, 54, 93, 0.11);
  transition: border-color 0.14s, box-shadow 0.14s;
}
input[type="search"]:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 2px 8px rgba(56,178,172,0.12);
}

/* ===============================
   LISTS, UL/OL STRUCTURE
   =============================== */
.content-wrapper ul {
  list-style: disc inside;
  padding-left: 14px;
  margin-bottom: 10px;
}
.content-wrapper li {
  margin-bottom: 7px;
  padding-left: 6px;
  font-size: 1rem;
  color: var(--brand-black);
}
.security-checklist h3,
.tips-overview h3 {
  color: var(--brand-secondary);
  font-size: 1.13rem;
  margin-bottom: 7px;
  font-weight: 700;
}
.security-checklist ul, .tips-overview ul {
  list-style: square inside;
}

/* ===============================
   PROGRESS TRACKER (Lernpfade)
   =============================== */
.progress-tracker {
  background: var(--brand-accent);
  border-radius: 14px;
  padding: 18px 20px 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0;
  box-shadow: 0 1px 8px rgba(26,54,93,0.04);
}
.progress-tracker ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.progress-tracker ul li {
  padding: 7px 20px;
  background: var(--brand-white);
  border-radius: 8px;
  border: 2px solid var(--brand-secondary);
  margin-bottom: 0;
  color: var(--brand-primary);
  letter-spacing: .01em;
}
@media (max-width:600px) {
  .progress-tracker ul {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===============================
   UTILITY SECTIONS
   =============================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.contact-info,
.contact-details {
  margin-top: 15px;
  margin-bottom: 12px;
}
.contact-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-primary);
  font-size: 1rem;
}
.contact-details img {
  width: 20px;
  height: 20px;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: var(--brand-accent);
  padding: 38px 0 0 0;
  border-top: 2.5px solid var(--brand-secondary);
  margin-top: 90px;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-logo-social {
  flex-basis: 120px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .007em;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--brand-primary);
  font-size: .99rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 29px;
  padding: 12px 10px;
  color: #466393;
  font-size: 0.91rem;
  background: #e5f1f0;
  border-radius: 0 0 var(--radius) var(--radius);
}
@media (max-width: 815px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-bottom {
    margin-top: 17px;
  }
}

/* ===============================
   COOKIE CONSENT BANNER
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--brand-primary);
  color: var(--brand-white);
  z-index: 1002;
  box-shadow: 0 -2px 22px rgba(26,54,93,0.13);
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  animation: cookieFadeIn .7s cubic-bezier(.39,.58,.57,1);
}
@keyframes cookieFadeIn {
  from { opacity:0; transform: translateY(44px); } to { opacity:1; transform: none; }
}
.cookie-banner .cookie-banner-text {
  font-size: 1rem;
  color: var(--brand-white);
  max-width: 540px;
  line-height: 1.55;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  border-radius: 25px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 30px;
  font-size:1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
  background: var(--brand-secondary);
  color: var(--brand-white);
  box-shadow: 0 1px 8px rgba(56,178,172,0.08);
}
.cookie-btn.cookie-accept {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn.cookie-accept:hover,
.cookie-btn.cookie-accept:focus {
  background: #19a2b7;
  color: #fff;
}
.cookie-btn.cookie-reject {
  background: #e2e8f0;
  color: #1a365d;
}
.cookie-btn.cookie-reject:hover,
.cookie-btn.cookie-reject:focus {
  background: #cbd5e1;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #fff;
  border: 2px solid var(--brand-secondary);
  box-shadow: none;
}
.cookie-btn.cookie-settings:hover,
.cookie-btn.cookie-settings:focus {
  background: var(--brand-secondary);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 10px;
  }
  .cookie-banner .cookie-banner-text {
    max-width: 90vw;
  }
  .cookie-banner .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* COOKIES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left:0;right:0;top:0;bottom:0;
  background:rgba(26,54,93,0.65);
  z-index: 1201;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: showModal .28s cubic-bezier(.39,.58,.57,1);
}
@keyframes showModal {
  from {opacity:0; transform:scale(.90);} to {opacity:1; transform:none;}
}
.cookie-modal {
  background: var(--brand-white);
  border-radius: 19px;
  box-shadow: 0 4px 40px rgba(26,54,93,0.19);
  max-width: 96vw;
  min-width: 320px;
  max-width: 520px;
  padding: 36px 28px 26px 28px;
  color:var(--brand-primary);
  position: relative;
}
.cookie-modal h2, .cookie-modal h3 { font-family: 'Montserrat', Arial, sans-serif; color: var(--brand-primary); }
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: none;
  color: #555;
  background: none;
  font-size: 2.1rem;
  cursor:pointer;
  transition: color .14s;
}
.cookie-modal .cookie-modal-close:hover { color: var(--brand-secondary); }
.cookie-categories {
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
}
/* Switch for toggles */
.cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 14px;
  background: #e2e8f0;
  position: relative;
  margin-right: 6px;
  transition: background .16s;
  cursor: pointer;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  height: 20px;
  width: 20px;
  background: #ccd6e3;
  border-radius: 50%;
  transition: left .16s, background .16s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 20px;
  background: var(--brand-secondary);
}
.cookie-category .cookie-essential {
  color: var(--brand-secondary);
  font-size: .97rem;
  font-weight: 600;
  margin-left: 4px;
}

.cookie-modal .cookie-modal-actions {
  margin-top: 33px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 22px 8px 18px 8px;
    min-width: 0;
  }
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
   =============================== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  section, .section {
    padding: 22px 8px;
    margin-bottom: 35px;
  }
  .content-wrapper {
    gap: 19px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-grid, .article-grid, .testimonial-list, .service-cards {
    flex-direction: column;
    gap: 19px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    gap: 9px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo-social {
    margin-bottom: 0;
  }
}

/* ===============================
   MICRO-INTERACTIONS & TRANSITIONS
   =============================== */
h1, h2, h3 {
  transition: color .18s;
}
button, a, .btn-primary, .btn-secondary, .cookie-btn {
  transition: box-shadow .14s, background .16s, color .14s, border .14s, outline .14s, transform .12s;
}
.card,.feature-card,.service-card,
.testimonial-card,.faq-item {
  transition: box-shadow .16s, background .16s, border .15s, transform .16s;
}

/* ===============================
   DARKMODE (planned: not active, only for possible future)
   =============================== */
/*
@media (prefers-color-scheme: dark) {
  :root {
    --brand-white: #182435;
    --brand-accent: #223354;
    --card-bg: #1a2c4a;
    --button-bg: #38B2AC;
    --button-hover: #2c8e85;
    --brand-primary: #E2E8F0;
    --brand-secondary: #38B2AC;
    --brand-black: #E2E8F0;
  }
  body { background: #162135; color: #E2E8F0; }
  header, footer { background: #182435; }
}
*/

/* ===============================
   VISUAL GEOMETRY DECOR (optional)
   =============================== */
/* Use simple pseudo-elements for geometric accent if needed */
.feature-card::before {
  content: '';
  display: block;
  position: absolute;
  top: -8px; right: -8px;
  width: 30px; height: 30px;
  background: var(--brand-secondary);
  opacity: 0.08;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-radius: 0 8px 0 32px;
  z-index: 0;
}
.feature-card::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -13px; left: -13px;
  width: 28px; height: 28px;
  background: var(--brand-secondary);
  opacity: 0.09;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-radius: 0 0 8px 24px;
  z-index: 0;
}

/* ===============================
   FOCUS STYLES
   =============================== */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2.5px solid var(--brand-secondary);
  outline-offset: 1.5px;
}

/* ===============================
   SPECIAL: THANK YOU PAGE BUTTON
   =============================== */
.text-section .btn-primary {
  margin-top: 2rem;
}

/* ===============================
   PREVENT CONTENT OVERLAP
   =============================== */
section, .card, .feature-card, .service-card, .testimonial-card {
  margin-bottom: 20px;
}

/* ===============================
   PRINT (for legal pages)
   =============================== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  body, section, .container { background: #fff !important; color: #1A365D !important; }
}
