/* --- CSS RESET & BASE TYPOGRAPHY --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222B40;
  background: #F7F6F1;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
  transition: background 0.3s;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #69B09F;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #222B40;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #222B40;
  line-height: 1.2;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
  text-transform: none;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
strong {
  font-weight: 700;
}
ul, ol {
  padding-left: 1.75em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.6em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER & MAIN NAVBAR --- */
header {
  background: #fff;
  border-bottom: 3px solid #69B09F;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #222B40;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: #69B09F;
  text-decoration: none;
}
header nav .cta {
  background: #69B09F;
  color: #fff;
  font-weight: 700;
  border-radius: 22px;
  padding: 8px 24px;
  letter-spacing: 0.02em;
  margin-left: 12px;
  box-shadow: 0 3px 8px rgba(33,43,64,0.07);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
}
header nav .cta:hover, header nav .cta:focus {
  background: #222B40;
  color: #fff;
  box-shadow: 0 5px 14px rgba(105,176,159,0.14);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #222B40;
  padding: 7px 15px;
  cursor: pointer;
  z-index: 110;
  display: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #69B09F;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 92vw;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 24px 0 rgba(34,43,64,0.16);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.68,-0.16,.33,1.31);
  z-index: 120;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px 28px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #222B40;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
  border-radius: 7px;
  margin-bottom: 10px;
  padding: 4px 10px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #69B09F;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #222B40;
  font-size: 1.15rem;
  padding: 10px 0;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #69B09F;
  color: #fff;
}

@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO SECTIONS --- */
.hero {
  background: #69B09F;
  color: #fff;
  border-radius: 0 0 52px 0/0 0 52px 0;
  margin-bottom: 40px;
  box-shadow: 0 6px 32px rgba(105,176,159,0.09);
  padding: 48px 0 64px 0;
  position: relative;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0 0 0 0;
  max-width: 700px;
}
.hero h1,
.hero h2,
.hero h3 {
  color: #fff;
}
.hero p {
  color: #E7EAE5;
  font-size: 1.17rem;
  max-width: 580px;
}
.hero .cta {
  background: #fff;
  color: #222B40;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  margin-top: 10px;
  box-shadow: 0 2px 12px 0 rgba(34,43,64,0.11);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
}
.hero .cta:hover, .hero .cta:focus {
  background: #222B40;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(34,43,64,0.22);
}

/* --- GENERAL SECTION AND CONTENT WRAPPER SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  font-size: 1.08rem;
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px 0 rgba(34,43,64,0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section h3 {
  margin-bottom: 0.4em;
  font-size: 1.16rem;
  letter-spacing: 0.01em;
  color: #69B09F;
}
.text-section ul {
  margin-bottom: 0.5em;
}
.text-section p a {
  text-decoration: underline;
}
.text-section nav a {
  color: #69B09F;
  padding: 0;
  border-radius: 0;
  background: none;
  font-size: 1rem;
}

/* --- FLEXBOX GRIDS ETC --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 5px 24px 0 rgba(105,176,159,0.08);
  flex: 1 1 270px;
  padding: 28px 24px;
  margin-bottom: 20px;
  min-width: 235px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2.5px solid #69B09F10;
  position: relative;
  transition: box-shadow 0.19s, border 0.2s, transform 0.16s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 13px 32px 0 rgba(34,43,64,0.21);
  border: 2.5px solid #69B09F;
  transform: translateY(-2px) scale(1.018);
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 7px;
  filter: drop-shadow(0 3px 8px #e5eeea);
}
.feature h3 {
  font-size: 1.19rem;
  color: #222B40;
  font-weight: 700;
}

/* --- TESTIMONIALS --- */
.testimonial-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(34,43,64,0.15);
  border-left: 7px solid #69B09F;
  padding: 24px 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 260px;
  max-width: 390px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border-left 0.2s;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #222B40;
  font-size: 1rem;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card p {
  color: #222B40;
  font-size: 1.03rem;
  max-width: 330px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 34px rgba(34,43,64,0.22);
  border-left: 7px solid #222B40;
}

/* --- MEMBERSHIP PRICING --- */
.membership-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.tarif {
  background: #fff;
  border-radius: 18px 0 18px 0 / 18px 0 18px 0;
  border: 2px solid #69B09F10;
  box-shadow: 0 3px 16px rgba(105,176,159,0.08);
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 340px;
  padding: 36px 24px 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border 0.2s, box-shadow 0.21s, transform 0.16s;
  position: relative;
}
.tarif:hover, .tarif:focus-within {
  border: 2.5px solid #222B40;
  box-shadow: 0 10px 32px 0 rgba(34,43,64,0.20);
  transform: translateY(-3px) scale(1.03);
}
.tarif h3 {
  color: #222B40;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
}
.tarif ul {
  margin-top: 8px;
  font-size: 1.02rem;
  color: #222B40;
}

/* --- CONTACT PREVIEW --- */
.contact-preview {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,43,64,0.07);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.contact-preview p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 0;
}
.contact-preview a {
  color: #69B09F;
  text-decoration: underline;
  font-weight: 500;
}
.contact-preview img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* --- UNIQUE CONTACT SECTION (kontakt) --- */
.contact-data {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px 0 rgba(34,43,64,0.08);
  margin-bottom: 20px;
}
.contact-data a {
  color: #69B09F;
  text-decoration: underline;
}
.contact-data img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

/* --- BUTTONS --- */
.cta,
button, .button {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 11px 28px;
  background: #69B09F;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.16s;
  box-shadow: 0 2px 12px 0 rgba(34,43,64,0.06);
  letter-spacing: 0.015em;
}
.cta:hover, .cta:focus,
button:hover, button:focus, .button:hover, .button:focus {
  background: #222B40;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(34,43,64,0.14);
}

/* --- CONTENT GRID & LAYOUT RULES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 3px 14px rgba(105,176,159,0.10);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 26px 20px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px 0 rgba(34,43,64,0.21);
  transform: translateY(-4px) scale(1.025);
}
.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;
}

/* --- FOOTER --- */
footer {
  background: #222B40;
  color: #fff;
  padding: 44px 0 0 0;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
footer nav a {
  color: #69B09F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.19s;
}
footer nav a:hover,footer nav a:focus {
  color: #fff;
}
.footer-contact {
  font-size: 1.02rem;
  color: #ecedee;
}
footer img {
  height: 38px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1020px) {
  .features-grid,
  .membership-pricing,
  .testimonial-preview {
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact {
    font-size: 0.95rem;
  }
}
@media (max-width: 920px) {
  .hero {
    padding: 32px 0 40px 0;
    border-radius: 0 0 36px 0/0 0 36px 0;
  }
  .content-wrapper,.section {
    padding: 0 2vw;
  }
  .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  .features-grid,
  .membership-pricing,
  .testimonial-preview {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  body {
    font-size: 0.99rem;
  }
  .section,
  section {
    padding: 28px 0;
    margin-bottom: 32px;
  }
  .hero {
    border-radius: 0 0 26px 0/0 0 26px 0;
    padding: 28px 0 24px 0;
  }
  .hero .content-wrapper {
    gap: 15px;
  }
  .features-grid,
  .membership-pricing,
  .testimonial-preview {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .tarif, .feature, .testimonial-card {
    max-width: 100%;
  }
  .content-wrapper {
    gap: 20px;
  }
  .text-section {
    padding: 16px 9px;
  }
  .contact-preview, .contact-data {
    padding: 16px 9px;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 520px) {
  .hero h1, h1 {
    font-size: 1.45rem;
  }
  .hero p, p {
    font-size: 0.97rem;
  }
  .section, section {
    padding: 13px 0;
    margin-bottom: 18px;
  }
  .container {
    padding-left: 3.5vw;
    padding-right: 3.5vw;
  }
  header .container {
    gap: 7px;
  }
  .cta, button, .button {
    font-size: 0.93rem;
    padding: 9px 17px;
  }
  .tarif, .feature {
    padding: 14px 7px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222B40;
  color: #fff;
  box-shadow: 0 -8px 24px rgba(34,43,64,0.09);
  z-index: 1500;
  padding: 22px 7vw 22px 7vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(.68,-0.16,.33,1.31);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner p {
  color: #fff;
  font-size: 1.02rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 5px;
}
.cookie-banner button, .cookie-banner .button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  padding: 10px 24px;
  transition: background 0.16s, color 0.14s;
  font-weight: 600;
  margin-right: 4px;
}
.cookie-banner .cookie-btn-accept {
  background: #69B09F;
  color: #fff;
}
.cookie-banner .cookie-btn-accept:hover, .cookie-banner .cookie-btn-accept:focus {
  background: #45a086;
  color: #fff;
}
.cookie-banner .cookie-btn-reject {
  background: #fff;
  color: #222B40;
  border: 1.5px solid #69B09F;
}
.cookie-banner .cookie-btn-reject:hover, .cookie-banner .cookie-btn-reject:focus {
  background: #222B40;
  color: #fff;
}
.cookie-banner .cookie-btn-settings {
  background: #69B09F22;
  color: #69B09F;
  border: 2px solid #69B09F;
}
.cookie-banner .cookie-btn-settings:hover, .cookie-banner .cookie-btn-settings:focus {
  background: #fff;
  color: #222B40;
  border: 2px solid #222B40;
}

@media (max-width: 520px) {
  .cookie-banner {
    padding: 12px 4vw 12px 4vw;
    gap: 9px;
  }
  .cookie-banner p {
    font-size: 0.96rem;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(34,43,64,0.75);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.18s;
  opacity: 0;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #222B40;
  border-radius: 16px;
  box-shadow: 0 10px 46px rgba(34,43,64,0.24);
  padding: 36px 28px 26px 28px;
  min-width: 294px;
  max-width: 95vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-fadein 0.35s cubic-bezier(.26,.77,.44,1) forwards;
}
@keyframes cookie-modal-fadein {
  0% {transform: translateY(32px) scale(0.98); opacity: 0;}
  100% {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #222B40;
  margin-bottom: 0.6em;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #69B09F;
  width: 21px;
  height: 21px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .cookie-category {
  padding: 13px 0 13px 0;
  border-bottom: 1.5px solid #69B09F22;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-essential {
  color: #69B09F;
  font-weight: 600;
}
.cookie-modal .cookie-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #222B40;
  cursor: pointer;
  margin-bottom: -10px;
  transition: color 0.14s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: #69B09F;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 13px 5vw 13px 5vw;
    min-width: 0;
    width: 98vw;
  }
  .cookie-modal .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- MISCELLANEOUS UTILITY CLASSES --- */
.mt-2 {margin-top: 1rem;}
.mb-2 {margin-bottom: 1rem;}
.rounded {border-radius: 16px !important;}
.shadow {
  box-shadow: 0 4px 20px 0 rgba(34,43,64,0.10);
}
.bg-accent {
  background: #F7F6F1;
}
.bg-primary {
  background: #222B40;
  color: #fff;
}
.text-primary {color: #222B40;}
.text-secondary {color: #69B09F;}

/* --- GEOMETRIC/STRUCTURED DECORATIVE ELEMENTS --- */
.feature, .tarif, .card, .testimonial-card {
  /* Structured/geometric shape variation for cards */
  border-radius: 18px 0 18px 0/18px 0 18px 0;
  border-style: solid;
}

hr {
  border: none;
  border-top: 2px solid #69B09F33;
  margin: 32px 0;
}

::-webkit-scrollbar {
  background: #F7F6F1;
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #69B09F44;
  border-radius: 7px;
}

/* --- FOCUS STATES --- */
a:focus,
button:focus,
.cta:focus,
input:focus,
.cookie-modal .cookie-close:focus {
  outline: 2.5px solid #69B09F;
  outline-offset: 2px;
}

/* --- PRINT FRIENDLY --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .container {
    max-width: 98vw;
    padding-left: 0;
    padding-right: 0;
  }
  body {background: #fff !important; color: #000 !important;}
}

/* --- END --- */
