/* ==== 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;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.5;
  background: #F1FAEE;
  color: #1E293B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}


/* ==== BRAND TYPOGRAPHY AND COLORS ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1E293B;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, li, dl, dd {
  font-size: 1rem;
  line-height: 1.6;
  color: #1E293B;
}
strong {
  font-weight: 700;
}
.text-section {
  max-width: 700px;
}
.text-section p {
  margin-bottom: 16px;
}


/* ==== LAYOUT CONTAINER CLASSES (FLEX ONLY) ==== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(30,41,59,0.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 7px 32px 0 rgba(30,41,59,0.12);
  transform: translateY(-4px) scale(1.02);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(30,41,59,0.09);
  border-left: 8px solid #81B29A;
  transition: box-shadow .2s, border-color .2s;
}
.testimonial-card:hover {
  border-left-color: #1E293B;
  box-shadow: 0 8px 24px 0 rgba(30,41,59,0.17);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* ==== HEADER & MAIN NAV ==== */
header {
  background: #fff;
  border-bottom: 2px solid #E3E7EA;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 20px;
  position: relative;
}
.logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #1E293B;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #81B29A;
  color: #fff;
}
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  background: #1E293B;
  color: #fff;
  padding: 13px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(30,41,59,0.06);
  margin-left: 12px;
  transition: background 0.15s, box-shadow 0.2s, color 0.14s, transform 0.13s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #81B29A;
  color: #1E293B;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px 0 rgba(30,41,59,0.17);
}

/* ==== MOBILE BURGER MENU ==== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #1E293B;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #81B29A;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  height: 100%;
  width: 82vw;
  max-width: 400px;
  background: #fff;
  box-shadow: 6px 0 32px 0 rgba(30,41,59,0.19);
  transform: translateX(-110%);
  transition: transform 0.34s cubic-bezier(0.75,0,0.25,1);
  z-index: 1002;
  padding: 36px 24px 24px 24px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #1E293B;
  border: none;
  margin-bottom: 16px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #81B29A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: #1E293B;
  border-radius: 10px;
  padding: 11px 10px;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #81B29A;
  color: #fff;
}
.mobile-menu {
  /* Overlay for fade on small screens */
}
.mobile-menu::before {
  content: '';
  display: none;
}

/* Overlay fade for background when menu open */
body.mobile-menu-open::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,41,59, 0.16);
  z-index: 1001;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  .logo {
    margin-right: 14px;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 10px;
    padding: 14px 10px;
  }
  .main-nav {
    display: none !important;
  }
  .btn-primary {
    margin-left: 0;
    padding: 11px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background-color: #1E293B;
  background-image: url('../assets/bg_hero_geom.svg');
  background-repeat: no-repeat;
  background-position: right bottom;
  min-height: 320px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 50px 0 30px 0;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  box-shadow: 0 6px 27px 0 rgba(30,41,59,0.13);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1, .hero p {
  color: #fff;
}
.hero h1 {
  letter-spacing: 0.07em;
}
.hero p {
  font-size: 1.17rem;
  margin-bottom: 18px;
}
.hero .btn-primary {
  box-shadow: 0 3px 16px 0 rgba(255,255,255,0.08);
  background: #81B29A;
  color: #1E293B;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #fff;
  color: #1E293B;
}

/* ==== SECTIONS GENERAL ==== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  section {
    padding: 30px 0;
    margin-bottom: 32px;
  }
  .card, .testimonial-card, .service-card {
    padding: 18px 12px;
  }
}

/* ==== FEATURES BLOCK (ICON CARDS) ==== */
.features .feature-grid, .features .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(30,41,59,0.08);
  padding: 30px 22px 28px 22px;
  width: 300px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border: 2px solid #E3E7EA;
  transition: border-color 0.18s, box-shadow .18s, transform 0.14s;
}
.feature-card:hover, .feature-card:focus {
  border-color: #81B29A;
  box-shadow: 0 9px 28px 0 rgba(30,41,59,0.17);
  transform: scale(1.025);
}
.feature-card img {
  height: 48px;
  width: 48px;
  border-radius: 10px;
  background: #81B29A11;
  padding: 6px;
}

/* ==== SERVICE CARDS AND PRICING ==== */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(30,41,59,0.09);
  border: 1.5px solid #E3E7EA;
  min-width: 250px;
  width: 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px 28px 20px;
  position: relative;
  transition: box-shadow .22s, border-color .16s, transform 0.13s;
}
.service-card .price {
  color: #81B29A;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-top: 13px;
  background: #E4EFEA;
  padding: 5px 11px;
  border-radius: 7px;
}
.service-card:hover {
  box-shadow: 0 10px 27px 0 rgba(30,41,59,0.17);
  border-color: #81B29A;
  transform: translateY(-2px) scale(1.02);
}
.pricing-table {
  margin-top: 14px;
  overflow-x: auto;
}
.pricing-table table {
  width: 100%;
  border: 1.5px solid #E3E7EA;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(30,41,59,0.05);
}
.pricing-table th {
  background: #E4EFEA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1E293B;
}
.pricing-table td {
  background: #fff;
  font-size: 1rem;
  color: #1E293B;
  border-top: 1px solid #E3E7EA;
}

/* ==== INFO & PROCESS STEPS ==== */
.info-steps ol,
.process-steps ol {
  margin-left: 22px;
  margin-bottom: 0;
  font-size: 1.11rem;
  color: #1E293B;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: item;
}
.info-steps ol li,
.process-steps ol li {
  margin-bottom: 0;
  position: relative;
  padding-left: 38px;
  min-height: 35px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-left: 3.5px solid #81B29A;
}
.info-steps ol li::before,
.process-steps ol li::before {
  content: counter(item);
  counter-increment: item;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #81B29A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: absolute;
  left: -15px;
  top: 3px;
}
.info-steps ol li strong,
.process-steps ol li strong {
  margin-right: 8px;
  color: #1E293B;
}


/* ==== FAQ & DL ==== */
.faq dl dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 18px;
  color: #1E293B;
}
.faq dl dd {
  margin-bottom: 8px;
  margin-left: 0.8em;
  font-size: 1rem;
  color: #1E293B;
}

/* ==== INFO BLOCKS & TIMELINE ==== */
.info-blocks .timeline-chart p {
  padding: 8px 0 8px 18px;
  border-left: 4px solid #81B29A;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #1E293B;
  background: #E4EFEA;
  border-radius: 0 10px 10px 0;
}

/* ==== REGIONS/BEZIRKE MAP BLOCKS ==== */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 150px;
  background: #E4EFEA;
  border-radius: 12px;
  margin: 8px 0 18px 0;
}

/* ==== CTA BUTTON BLOCK ==== */
.cta .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.cta .btn-primary {
  font-size: 1.22rem;
  background: #81B29A;
  color: #1E293B;
  padding: 19px 48px;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(129,178,154,0.12);
  letter-spacing: 0.05em;
  margin-left: 0;
  margin-right: 0;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #1E293B;
  color: #fff;
}

/* ==== ABOUT/FACTS ==== */
.facts-figures {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.facts-figures p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1E293B;
  border-left: 5px solid #81B29A;
  padding-left: 12px;
  background: #E4EFEA;
  border-radius: 0 12px 12px 0;
}
.trust-badges {
  display: flex;
  gap: 24px;
  margin-top: 14px;
}
.trust-badges img {
  width: 38px;
  height: 38px;
  background: #E4EFEA;
  border-radius: 7px;
  padding: 3px 3px;
}


/* ==== FOOTER NAVIGATION ==== */
footer {
  background: #1E293B;
  color: #fff;
  padding: 24px 0 20px 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: 30px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 6px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border-radius: 6px;
  padding: 6px 13px;
  transition: background 0.16s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #81B29A;
  color: #1E293B;
}
.copyright {
  font-size: 0.96rem;
  color: #ECF1F7;
  margin-top: 10px;
}

/* ==== SUCCESS & INFO MESSAGE ==== */
.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 80px;
}
.success-message .btn-primary {
  margin-top: 32px;
}

/* ==== LEGAL TEXT SECTION ==== */
.legal .text-section {
  max-width: 900px;
}
.legal h2 {
  margin-top: 25px;
  font-size: 1.19rem;
  color: #1E293B;
}
.legal ul li {
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #1E293B;
}
.legal ul li::before {
  content: '\25AA';
  position: absolute;
  left: 0;
  color: #81B29A;
  font-size: 1rem;
}


/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -3px 20px 0 rgba(30,41,59,0.14);
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 34px;
  border-top: 3px solid #81B29A;
  animation: slideUpBanner 0.25s cubic-bezier(.68,-0.55,.27,1.55) 1;
}
@keyframes slideUpBanner {
  from { transform: translateY(80%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: #1E293B;
  flex: 1 1 270px;
  max-width: 600px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex: 0 0 auto;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9px;
  padding: 8px 22px;
  cursor: pointer;
  border: none;
  margin: 0 2px;
  transition: background 0.15s, color 0.13s, transform 0.11s;
  box-shadow: 0 2px 7px 0 rgba(30,41,59,0.09);
}
.cookie-btn.accept {
  background: #81B29A;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #1E293B;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #1E293B;
  border: 2px solid #81B29A;
}
.cookie-btn.reject:hover {
  background: #F1FAEE;
}
.cookie-btn.settings {
  background: #1E293B;
  color: #fff;
  border: none;
}
.cookie-btn.settings:hover {
  background: #fff;
  color: #1E293B;
  border: 2px solid #1E293B;
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1400;
  background: rgba(30,41,59,0.2);
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s cubic-bezier(.49,-0.23,.64,1.53) 1;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 38px 0 rgba(30,41,59,0.16);
  max-width: 410px;
  width: 93vw;
  padding: 36px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: slideInModal .27s cubic-bezier(.75,0,.23,1) 1;
}
@keyframes slideInModal {
  from { transform: translateY(60px) scale(0.91); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal .modal-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}
.cookie-toggle-row label {
  flex: 1 1 auto;
  font-size: 1rem;
}
.cookie-toggle-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #81B29A;
  border-radius: 6px;
  border: 1.5px solid #E3E7EA;
}
.cookie-toggle-row input[disabled], .cookie-toggle-row label[aria-disabled] {
  opacity: 0.6;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #1E293B;
  cursor: pointer;
  padding: 2px 10px;
  border-radius: 7px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F1FAEE;
  color: #81B29A;
}


/* ==== GENERAL SPACING & VISUAL HIERARCHY ==== */
.section:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper > * {
  margin-bottom: 0px;
}

/* ==== RESPONSIVE FLEXBOX ADJUSTMENTS ==== */
@media (max-width: 1000px) {
  .feature-grid, .services .service-cards {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
  .header, .footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .features .feature-grid, .card-container, .services .service-cards {
    flex-direction: column !important;
    align-items: stretch;
    gap: 18px;
  }
  .feature-grid, .services .service-cards {
    justify-content: flex-start;
  }
  .feature-card, .service-card {
    width: 100%;
    min-width: unset;
    padding: 19px 8px;
  }
  .facts-figures {
    flex-direction: column;
    gap: 12px;
  }
  .hero {
    padding: 34px 0 23px 0;
    min-height: 180px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .testimonials .content-wrapper {
    gap: 14px;
  }
  .cta .content-wrapper {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 99vw;
    padding: 0 5px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .testimonials .content-wrapper {
    gap: 12px;
  }
  .section, section {
    padding: 20px 0 10px 0;
  }
  .cta .btn-primary {
    font-size: 1rem;
    padding: 13px 18px;
    border-radius: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 13px 8px 8px 8px;
  }
}

/* ==== MICRO-INTERACTIONS & FOCUS STATES ==== */
*:focus-visible {
  outline: 2.5px solid #81B29A;
  outline-offset: 1.5px;
  transition: outline 0.1s;
}
input:focus, textarea:focus, select:focus {
  border-color: #81B29A;
}

/* ==== SCROLLBAR (subtle, geometric look) ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #E3E7EA;
}
::-webkit-scrollbar-thumb {
  background: #81B29A99;
  border-radius: 7px;
}

/* ===== SPECIAL BLOCKS ===== */
.info-hint {
  padding: 19px 16px;
  background: #E4EFEA;
  border-radius: 10px;
  color: #1E293B;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 14px;
  border-left: 4px solid #81B29A;
}

/* ===== CARDS & SECTIONS MARGIN/GAP ENFORCEMENT ===== */
.card, .service-card {
  margin-bottom: 20px;
}
.card-container, .service-cards, .feature-grid, .content-grid, .features .feature-grid, .testimonials .content-wrapper {
  gap: 24px;
}
.feature-item {
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== GEOMETRIC ANGULAR FONTS ===== */
h1,h2,h3,nav a, .btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ===== ACCESSIBILITY & COLOR CONTRAST ===== */
.testimonial-card, .testimonials .testimonial-card p, .testimonials .testimonial-card span {
  color: #1E293B !important;
  background: #fff;
}

/* ==== END CSS ==== */
