/* ========== 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, main, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FAFAFA;
  color: #284B63;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #284B63;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #ffd400;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 2em;
}
b, strong {
  font-weight: 700;
}
button, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  cursor: pointer;
  outline: none;
}

/* ========== BRAND/STYLE: VIBRANT ENERGETIC ========== */
:root {
  --primary: #284B63;
  --secondary: #86A8C5;
  --accent: #F6E9DA;
  --vibrant-pink: #FF2975;
  --vibrant-yellow: #FFD400;
  --vibrant-blue: #0FA3EF;
  --vibrant-green: #1ED760;
  --dark: #172132;
  --white: #ffffff;
  --gray-bg: #FAFAFA;
}

/* ======= LAYOUT Containers ======= */
.container {
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(40,75,99,0.13);
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
/* ====== FLEX LAYOUTS for .feature, .testimonial-card, etc. ====== */
/* All handled by above patterns for consistency */

/* ========== TYPOGRAPHY ========= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: none;
  color: #284B63;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--vibrant-pink);
}
h2 {
  font-size: 2rem;
  color: var(--vibrant-blue);
}
h3 {
  font-size: 1.28rem;
  color: var(--primary);
}
h4 {
  font-size: 1.12rem;
}
p, li, dd {
  font-size: 1rem;
  color: #284B63;
  line-height: 1.7;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #172132;
  background: #F6E9DA;
  padding: 18px 20px;
  border-left: 5px solid var(--vibrant-yellow);
  margin: 0 0 8px 0;
  border-radius: 6px;
}
.testimonial-author {
  font-weight: bold;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.star-rating {
  font-size: 1.25rem;
  color: var(--vibrant-yellow);
  letter-spacing: 2px;
}

ul:not(.footer-menu), ol {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
dt {
  font-weight: bold;
  margin-top: 16px;
}
dd {
  margin-left: 0;
  font-size: 1rem;
  color: #284B63;
  margin-bottom: 8px;
}

/* ========== HEADER ========= */
header {
  background: var(--primary);
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 50px;
}
.main-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  padding: 6px 2px 8px 2px;
  transition: color 0.2s, background 0.2s;
}
.main-menu a:hover, .main-menu a:focus {
  color: var(--vibrant-yellow);
}

.cta-primary {
  background: var(--vibrant-pink);
  color: #fff !important;
  padding: 13px 34px;
  border-radius: 50px;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: 0 3px 15px 0 rgba(255,41,117,0.13);
  margin-left: 16px;
  transition: background 0.2s, box-shadow .17s, transform .13s;
  display: inline-block;
  letter-spacing: 1.2px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--vibrant-yellow);
  color: #284B63 !important;
  transform: scale(1.05);
  box-shadow: 0 7px 20px 0 rgba(255,41,117,0.25);
}
.cta-secondary {
  background: var(--vibrant-blue);
  color: #fff !important;
  padding: 11px 28px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(15,163,239,0.13);
  margin-top: 14px;
  transition: background 0.2s, color 0.2s, box-shadow .16s;
  display: inline-block;
  letter-spacing: .9px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--vibrant-yellow);
  color: #284B63 !important;
  box-shadow: 0 6px 18px 0 rgba(15,163,239,0.17);
}

/* ========== MOBILE MENU ========= */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  transition: background 0.18s;
  z-index: 202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--vibrant-yellow);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 32px 24px 32px;
  transition: transform 0.37s cubic-bezier(.77,0,.175,1);
  transform: translateX(-100vw);
  z-index: 301;
  box-shadow: 2px 0 20px 0 rgba(40,75,99,.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 32px;
  cursor: pointer;
  z-index: 303;
  padding: 4px 10px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--vibrant-yellow);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 58px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 0 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  transition: color 0.18s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vibrant-yellow);
  background: none;
}

/* Hide desktop nav on mobile */
@media (max-width: 991px) {
  .main-menu, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========== HERO SECTION ========= */
.hero {
  padding: 0 0 48px 0;
  background: var(--accent);
  border-bottom: 6px solid var(--vibrant-blue);
}
.hero .container {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
@media (min-width: 600px) {
  .hero .container {
    min-height: 320px;
  }
}
.hero .content-wrapper h1 {
  color: var(--vibrant-pink);
  margin-bottom: 8px;
}
.hero .content-wrapper p {
  color: var(--primary);
  font-size: 1.24rem;
  margin-bottom: 18px;
}

/* ========== CARDS & FEATURES ========= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(40,75,99,0.11);
  padding: 28px 20px 22px 20px;
  flex-basis: 272px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}
.feature h3 {
  font-size: 1.16rem;
  color: var(--vibrant-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin: 7px 0 7px 0;
}
.feature p {
  font-size: 0.98rem;
  color: var(--primary);
  margin-bottom: 7px;
}
.feature .price,
.price {
  color: var(--vibrant-pink);
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 8px 32px rgba(40,75,99,0.18);
  transform: translateY(-6px) scale(1.03);
  z-index: 5;
}

/* ========== TESTIMONIALS/REVIEWS ========= */
.testimonial-card {
  background: #fff;
  border-left: 7px solid var(--vibrant-pink);
  border-radius: 17px;
  box-shadow: 0 2px 16px 0 rgba(40,75,99,0.12);
  margin-bottom: 20px;
  margin-right: 24px;
  max-width: 500px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(255,41,117,0.08);
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card blockquote {
  background: none;
  padding: 0;
  border-left: none;
  color: var(--dark);
}
.testimonial-card .testimonial-author {
  color: var(--vibrant-blue);
}
/* Guarantee contrast and readable testimonials */
.testimonial-card, .testimonial-card blockquote, .testimonial-card .testimonial-author {
  color: #142531;
}

/* ========== GENERAL STYLES ========= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 8px;
}
.text-section ul, .text-section ol {
  gap: 8px;
}
.text-section a {
  color: var(--vibrant-pink);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.17s;
}
.text-section a:hover, .text-section a:focus {
  color: var(--vibrant-blue);
}

/* Highlight checked Icons/Kategorie lists */
ul li:before {
  content: '';
}
ul li {
  position: relative;
}
ul li:has(> b), ul li:has(> strong), ul li:has(> .icon) {
  color: var(--vibrant-green);
}
ul li:has(> .icon) .icon {
  color: var(--vibrant-green);
}

/* ========== FOOTER ========= */
footer {
  background: var(--primary);
  color: #fff;
  padding: 26px 0 10px 0;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding: 3px 0;
  transition: color 0.15s, border-color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--vibrant-yellow);
  border-color: var(--vibrant-yellow);
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.footer-branding img {
  height: 32px;
}
.footer-branding span {
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
}

/* ========== COOKIE CONSENT BANNER & MODAL ========= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe8;
  color: #284B63;
  box-shadow: 0 -4px 32px 0 rgba(40,75,99,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 26px 20px 18px 20px;
  z-index: 9999;
  transition: transform 0.28s cubic-bezier(.77,0,.175,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner span {
  font-size: 1rem;
  color: #284B63;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.cookie-banner button,
.cookie-settings-modal button.cookie-cat {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  padding: 9px 20px;
  margin-bottom: 0;
  background: var(--vibrant-pink);
  color: #fff;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  cursor: pointer;
  outline: none;
}
.cookie-banner button.cookie-reject {
  background: var(--vibrant-blue);
}
.cookie-banner button.cookie-settings {
  background: var(--vibrant-yellow);
  color: #284B63;
}
.cookie-banner button:active,
.cookie-banner button:focus {
  transform: scale(0.98);
  box-shadow: none;
}
.cookie-banner button:hover {
  opacity: 0.92;
}

.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95vw;
  max-width: 420px;
  min-width: 240px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 34px 0 rgba(40,75,99,0.18);
  transform: translate(-50%, -50%);
  z-index: 12000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px 16px 28px;
  animation: fadeInPopup 0.38s cubic-bezier(.77,0,.175,1);
}
@keyframes fadeInPopup {
  0% { opacity: 0; transform: translate(-50%, -58%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}
.cookie-settings-modal h2 {
  color: var(--vibrant-blue);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 900;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-cat-row label {
  font-size: 0.99rem;
  color: #284B63;
  font-weight: 600;
}
.cookie-cat-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--vibrant-pink);
  outline: 2px solid #ccc;
  border-radius: 6px;
}
.cookie-settings-modal .cookie-buttons {
  justify-content: flex-end;
  gap: 14px;
}
.cookie-settings-modal .btn-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--vibrant-pink);
  cursor: pointer;
  line-height: 1;
}
.cookie-settings-modal .btn-close:hover {
  color: var(--vibrant-blue);
}
.cookie-cat-row input[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

/* ========== SPACING & RESPONSIVE ========== */
@media (max-width: 1100px) {
  .container { max-width: 95vw; }
}
@media (max-width: 991px) {
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 900px) {
  .feature-grid { gap: 14px; }
  .feature { min-width: 190px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.35rem; }
  .content-wrapper {
    gap: 14px;
  }
  .hero {
    padding-bottom: 21px;
  }
  .section {
    margin-bottom: 38px;
    padding: 18px 5px 22px 5px;
  }
  .feature-grid, .content-grid, .card-container { gap: 12px; }
  .text-image-section, .content-grid {
    flex-direction: column !important;
    gap: 16px;
    align-items: flex-start !important;
  }
  .feature {
    padding: 18px 10px 13px 10px;
    border-radius: 12px;
    min-width: 0;
    flex-basis: 98vw;
  }
  .testimonial-card { max-width: 98vw; margin-right: 0; }
}
@media (max-width: 540px) {
  .footer-menu { gap: 8px; }
  .section { padding: 12px 2px; }
  .footer-branding { gap: 7px; flex-direction: column; align-items: flex-start; }
}

/* ========== UTILITY CLASSES & MICRO INTERACTIONS ========== */
.fade-in-up {
  animation: fadeInUp .85s both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}

.shadow-pop {
  transition: box-shadow 0.18s, transform 0.16s;
}
.shadow-pop:hover {
  box-shadow: 0 6px 24px rgba(17,136,255,0.11);
  transform: translateY(-2px) scale(1.017);
}

.rounded {
  border-radius: 18px;
  overflow: hidden;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

/* Hide elements visually */
.hide { display: none !important; }

/* ========== Focus visible accessibility ========== */
:focus-visible { outline: 2.5px solid #FFD400; outline-offset: 2px; }

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