/* ============================
   CSS RESET & BASE SETUP
============================= */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #183153;
  background-color: #FCFCFA;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #183153;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #A1C84A;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #183153;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 24px;
}
h2 {
  font-size: 1.625rem; /* 26px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 14px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #2F3A4C;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
ul, ol {
  margin-left: 30px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #2F3A4C;
}
strong {
  font-weight: 700;
  color: #183153;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
/* ================================
   HEADER & NAVIGATION
================================= */
header {
  background: #FCFCFA;
  box-shadow: 0 2px 8px rgba(24,49,83,0.08);
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 18px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #183153;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #A1C84A22;
  color: #A1C84A;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FCFCFA;
  background: #183153;
  border: none;
  padding: 12px 30px;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(24,49,83,0.1);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s, color 0.15s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #A1C84A;
  color: #183153;
  box-shadow: 0 6px 18px rgba(161,200,74,0.12);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #183153;
  margin-left: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #EAEDE8;
  color: #A1C84A;
}
/* ================================
      MOBILE NAVIGATION
================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #FCFCFA;
  box-shadow: 0 0 28px rgba(24,49,83,0.17);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.77,.2,.15,1.05), opacity 0.27s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #183153;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #EAEDE8;
  color: #A1C84A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 42px;
  gap: 0.5rem;
  padding-left: 40px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: #183153;
  padding: 12px 0;
  width: 90vw;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A1C84A18;
  color: #A1C84A;
}
/* Hides nav & toggles on mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .btn-primary {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}
/* ================================
      SECTION AND LAYOUT STYLES
================================= */
.section, .about, .about-short, .founder-story, .approach, .policy, .thank-you, .contact, .hero, .features, .services, .benefits, .process-steps, .testimonials, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FCFCFA;
}
.section:last-child, footer {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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;
  }
}
.card-container, .card-grid, .feature-grid, .service-list, .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature, .service, .benefit {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(24,49,83,0.06);
  padding: 30px 24px 28px 24px;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 280px;
  position: relative;
  transition: box-shadow 0.20s, transform 0.22s;
}
.card:hover, .feature:hover, .service:hover, .benefit:hover {
  box-shadow: 0 8px 32px rgba(24,49,83,0.13);
  transform: translateY(-4px) scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature img, .service img, .benefit img {
  height: 50px;
  width: 50px;
  margin-bottom: 14px;
}
.feature-grid, .service-list, .benefits-grid {
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .benefits-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
ul, ol {
  padding-left: 22px;
}
/* ================================
         CTA SECTION
================================= */
.cta {
  background: #A1C84A11;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(161,200,74,0.04), 0 1.5px 6px rgba(24,49,83,0.03);
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .cta .btn-primary {
    width: 100%;
  }
}
/* ================================
     TESTIMONIALS/REVIEW CARDS
================================= */
.testimonials .content-wrapper {
  flex-direction: column;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24,49,83,0.08);
  padding: 26px 30px;
  margin-bottom: 20px;
  color: #183153;
  font-size: 1.05rem;
  border-left: 6px solid #A1C84A;
  min-width: 220px;
  max-width: 600px;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #2F3A4C;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #768399;
  font-style: italic;
  margin-top: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 44px rgba(24,49,83,0.14);
  border-left: 6px solid #183153;
}
/* ================================
       FOOTER STYLES
================================= */
footer {
  background: #F2F2F2;
  padding: 48px 0 20px 0;
  border-top: 2px solid #E9ECE0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
footer .footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #768399;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.17s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #A1C84A11;
  color: #183153;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  text-align: center;
  color: #2F3A4C;
  font-size: 1rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
}
/* ================================
      SECTION VARIANTS
================================= */
.hero {
  background: #F7F9F5;
  border-radius: 22px;
  margin-bottom: 54px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 18px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .container, .about .container, .policy .container {
    padding: 0 18px;
  }
}
.features {
  padding-bottom: 32px;
  background: #FCFCFA;
}
.about-short {
  background: #E9ECE0;
  border-radius: 18px;
}
@media (max-width: 900px) {
  .about-short {
    padding: 30px 14px;
  }
}
.policy h1, .policy h2, .policy h3 {
  margin-bottom: 12px;
}
.policy {
  background: #FCFCFA;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(24,49,83,0.05);
}
/* ================================
     CONTACT DETAILS (Kontakt)
================================= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.contact-details img {
  width: 21px;
  height: 21px;
  margin-right: 4px;
}
.contact-details a {
  color: #183153;
  text-decoration: underline;
}
.contact-details a:hover {
  color: #A1C84A;
}
/* ================================
     PROCESS STEPS/OL/LIST
================================= */
.process-steps ol {
  list-style-type: decimal;
  margin-left: 26px;
  margin-bottom: 20px;
}
.process-steps ol li {
  margin-bottom: 12px;
  font-size: 1rem;
}
.process-steps p {
  margin-top: 10px;
  color: #2F3A4C;
}
/* ================================
     FEATURE-ITEM SUPPORT CLASS
================================= */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
/* ================================
      SPACING/GAP UTILS
================================= */
.card-container, .card-grid, .feature-grid, .service-list, .benefits-grid, .footer-nav, .content-grid {
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* ================================
   COOKIES BANNER & PREFERENCES
================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  color: #183153;
  box-shadow: 0 -2px 24px rgba(34,54,57,0.13);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 34px;
  transition: transform 0.36s, opacity 0.18s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner-content {
  max-width: 540px;
  font-size: 1rem;
  color: #2F3A4C;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  background: #F2F2F2;
  color: #183153;
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.18s, color 0.13s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background-color: #A1C84A;
  color: #183153;
}
.cookie-btn.reject {
  background-color: #E9ECE0;
  color: #183153;
}
.cookie-btn.settings {
  background-color: #F2F2F2;
  color: #183153;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #A1C84A;
  color: #183153;
  box-shadow: 0 2px 10px rgba(161,200,74,0.14);
}
.cookie-preferences-modal {
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(24,49,83,0.22);
  z-index: 100000;
  justify-content: center;
  align-items: center;
}
.cookie-preferences-modal.open {
  display: flex;
  animation: fadeIn 0.2s 1;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 38px 30px 26px 30px;
  box-shadow: 0 12px 48px rgba(24,49,83,0.20);
  max-width: 420px;
  width: 92vw;
}
.cookie-modal-content h3 {
  margin-bottom: 12px;
}
.cookie-modal-category {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-toggle {
  min-width: 38px;
  height: 22px;
  border-radius: 50px;
  background: #E9ECE0;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  border: none;
  outline: none;
}
.cookie-toggle.active {
  background: #A1C84A;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s;
}
.cookie-toggle.active:before {
  transform: translateX(16px);
}
.cookie-pref-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}
/* ================================
      RESPONSIVE & TYPOGRAPHY
================================= */
@media (max-width: 900px) {
  html { font-size: 97%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.325rem; }
}
@media (max-width: 600px) {
  html { font-size: 90%; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .section, .about, .about-short, .founder-story, .approach, .policy, .thank-you, .contact, .hero, .features, .services, .benefits, .process-steps, .testimonials, .cta {
    padding: 24px 7px;
  }
}
@media (max-width: 530px) {
  .hero .container,
  .about .container, .services .container, .policy .container, .footer .container {
    padding: 0 2vw;
  }
  .cta {
    border-radius: 8px;
    padding: 15px 2vw;
  }
}
/* ================================
    MICRO-INTERACTIONS/ANIMATIONS
================================= */
.btn-primary, .cookie-btn, .main-nav a, .footer-nav a, .mobile-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: all 0.17s cubic-bezier(.77,.2,.15,1.05);
}
.card, .feature, .benefit, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:active, .feature:active, .benefit:active, .testimonial-card:active {
  transform: scale(0.98);
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 16px 10px;
    font-size: 1rem;
  }
}
/* ================================
        SCROLLBAR DESIGN
================================= */
body::-webkit-scrollbar {
  width: 10px;
  background: #F2F2F2;
}
body::-webkit-scrollbar-thumb {
  background: #E9ECE0;
  border-radius: 10px;
}
/* ================================
         PRINT DESIGN
================================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-preferences-modal {
    display: none !important;
  }
  .section, .container {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
/* ================================
         UTILITIES
================================= */
.hidden { display: none!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-0 { margin-top: 0!important; }
.gap-20 { gap: 20px!important; }
.gap-24 { gap: 24px!important; }
.w-100 { width: 100%!important; }
.text-center { text-align: center!important; }
.flex-column { flex-direction: column!important; }
.flex-row { flex-direction: row!important; }
.align-center { align-items: center!important; }
.align-start { align-items: flex-start!important; }
/* ================================
   FONTS (Google font fallback)
================================= */
@font-face {
  font-family: 'Montserrat';
  font-weight: 400 700;
  src: local('Montserrat'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm45xW4.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  font-weight: 400 700;
  src: local('Open Sans'), url('https://fonts.gstatic.com/s/opensans/v28/mem8YaGs126MiZpBA-UFVZ0e.ttf') format('truetype');
  font-display: swap;
}
