/* --- CSS RESET & BASE STYLES --- */
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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #1A2233;
  background: #F4F7FA;
  min-height: 100vh;
  line-height: 1.7;
}
img, picture {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
ul, ol { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; color: #1A2233; transition: color 0.2s; }
strong { font-weight: 700; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* --- BRAND COLORS FOR PLAYFUL DYNAMIC STYLE --- */
:root {
  --primary: #1A2233;
  --secondary: #5BC0EB;
  --accent: #F4F7FA;
  --fun-pink: #FC6471;
  --fun-lime: #62E47B;
  --fun-yellow: #FFD600;
  --text-dark: #121629;
  --card-bg: #fff;
  --shadow: 0 4px 20px rgba(30,60,136,0.10);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--fun-pink);
  text-shadow: 1px 2px 0 var(--fun-yellow),0px 1px 12px #5BC0EB33;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--secondary);
}
h3 {
  font-size: 1.3rem; color: var(--fun-lime); margin-bottom: 8px;
}
h4, h5, h6 { font-size: 1rem; }
p, li, ul, ol { font-size: 1rem; margin-bottom: 10px; }
.text-section p { font-size: 1.08rem; margin-bottom: 14px; }
a:hover, a:focus { color: var(--fun-pink); text-decoration: underline wavy var(--secondary); }

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--accent);
  padding: 0;
  position: relative;
  box-shadow: 0 2px 10px rgba(27,190,236,0.04);
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 16px 20px 16px;
}
header img {
  height: 50px;
  transition: transform 0.2s cubic-bezier(.68,-0.55,.27,1.55);
}
header img:hover {
  transform: rotate(-7deg) scale(1.08);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 18px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 7px #5BC0EB70;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--fun-pink);
  color: #fff;
  border: none;
  border-radius: 48px;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 3px 15px #FC647133,0 15px 36px -12px #5BC0EB23;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.15s, transform 0.2s, box-shadow 0.25s;
  margin-left: 18px;
  vertical-align: middle;
  outline: none;
  position: relative;
  z-index: 2;
  animation: popBtn 0.8s cubic-bezier(.19,1,.22,1) 0s 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--fun-yellow);
  color: var(--primary);
  transform: translateY(-3px) scale(1.06) rotate(-2deg);
  box-shadow: 0 6px 20px #FFD60044,0 20px 48px -18px #5BC0EB33;
}
@keyframes popBtn {
  0% {transform: scale(0.9);}
  60% {transform: scale(1.12);}
  100% {transform: scale(1);}
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 102;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 3px 14px #5BC0EB43;
  transition: background 0.15s, transform 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--fun-pink);
  transform: rotate(6deg) scale(1.08);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--accent);
  z-index: 210;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.51,.47,.32,1.04);
  box-shadow: -8px 0 30px #5BC0EB25;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--fun-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  margin: 24px 24px 0 0;
  font-size: 2.1rem;
  width: 48px; height: 48px;
  cursor: pointer;
  box-shadow: 0 3px 12px #FD647133;
  transition: background 0.13s, transform 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  transform: scale(1.08) rotate(-8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 0;
  margin-top: 42px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--primary);
  border-radius: 60px;
  padding: 13px 32px;
  font-weight: 600;
  width: 82%;
  text-align: center;
  background: #fff;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 3px 17px #5BC0EB16;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 22px #5BC0EB50;
}

/* --- SPACING & FLEX LAYOUTS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 26px 26px 22px 26px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px #FC647155;
}
.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;
  background: #FDFBFA;
  border-radius: 30px 80px 25px 22px;
  box-shadow: 0 4px 16px #5BC0EB14;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  border-left: 7px solid var(--secondary);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: .98rem;
  color: var(--fun-pink);
  margin-left: auto;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* --- FEATURE GRIDS / CARDS (FOR INDEX/ABOUT/PRODUCTS) --- */
.feature_grid, .values_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
  margin: 24px 0 0 0;
}
.feature_grid li,
.values_grid li {
  background: #fff;
  border-radius: 25px 46px 25px 28px;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 330px;
  padding: 22px 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .18s, transform .18s;
  position: relative;
}
.feature_grid li:hover,
.values_grid li:hover {
  box-shadow: 0 10px 36px #5BC0EB29;
  transform: translateY(-3px) scale(1.04) rotate(-2deg);
}
.feature_grid img, .values_grid img {
  width: 56px; height: 56px; align-self: flex-start;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 5px #62E47B44);
}
.feature_grid strong, .values_grid strong {
  color: var(--fun-lime);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
}
.feature_grid p, .values_grid p {
  font-size: .99rem;
  color: var(--primary);
}

/* --- SERVICES GRID (dienstleistungen / teaser) --- */
.services_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 22px 0;
}
.service_card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px 32px 22px 32px;
  flex: 1 1 220px;
  max-width: 290px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.13s, transform 0.13s;
  margin-bottom: 0;
}
.service_card:hover {
  box-shadow: 0 10px 36px #FD647122;
  transform: translateY(-4px) scale(1.035);
}
.service_card h2 {
  color: var(--secondary);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.service_card p {
  margin-bottom: 0;
}
.service_price {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--fun-pink);
  margin-top: 6px;
}

.services_teaser_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0 34px 0;
}
.services_teaser_list li {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px 21px;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.5;
  transition: box-shadow 0.16s, transform 0.16s;
  margin-bottom: 0;
}
.services_teaser_list strong {
  color: var(--secondary);
  font-size: 1.08rem;
}
.services_teaser_list span {
  color: var(--fun-pink);
  font-weight: 700;
  margin-left: 8px;
}

.service_pricing_overview {
  margin-top: 18px;
  padding: 22px 18px;
  background: #F4F7FFC7;
  border-radius: 16px;
  box-shadow: 0 3px 10px #5BC0EB10;
}
.service_pricing_overview h3 {
  font-size: 1.05rem;
  color: var(--fun-lime);
  margin-bottom: 9px;
}
.service_pricing_overview ul {
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- PRODUCT TEASER/FEATURES --- */
.product_categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px 0 23px 0;
}
.product_highlights {
  margin: 24px 0 0 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
}
.product_highlights h2 {
  color: var(--fun-lime);
  font-size: 1.2rem; margin-bottom: 12px;
}
.product_highlights ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 15px; margin-top: 7px;
}
.related_services_teaser {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.produktberatung_cta {
  margin-top: 20px;
}

/* --- QUICK FACTS & TIMELINES (about.html) --- */
.quick_facts, .company_timeline, .expertise_list, .followup_steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.quick_facts li {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--fun-lime);
}
.company_timeline li strong,
.expertise_list li strong {
  color: var(--fun-yellow);
}

/* --- HOWTOS / FAQ (ratgeber.html) --- */
.knowledge_articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.howto_guides {
  background: #fff;
  border-radius: 20px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
  margin: 20px 0 25px 0;
}
.howto_guides h2 { color: var(--secondary); font-size: 1.08rem; }
.howto_guides ol { margin: 12px 0 0 18px; }
.faq_preview {
  margin-top: 16px;
  padding: 16px 15px;
  background: #F4F7FF;
  border-radius: 14px;
}
.faq_preview h3 {
  color: var(--fun-yellow);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.faq_preview ul { margin-left: 14px; gap: 7px; }

/* --- TESTIMONIALS & REFERENCES --- */
.customer_success_stories {
  margin-top: 22px;
}
.reference_highlights {
  margin-top: 12px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
}
.partner_logos {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.partner_logos img {
  height: 44px;
}
.awards_mentions {
  margin-top: 10px;
  color: var(--secondary);
  font-weight: 500;
}

/* --- FORMS AND CONTACT --- */
.address_details, .opening_hours, .email_link {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.contact_description { margin-top: 9px; }

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 12px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 40px;
  filter: drop-shadow(0 2px 7px #FC647133);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-nav a {
  color: #fff;
  font-size: .97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .03rem;
  margin-bottom: 0;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--fun-yellow);
}
.footer-contact {
  font-size: .97rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-contact a { color: var(--fun-lime); text-decoration: underline; }
.footer-contact a:hover { color: var(--secondary); }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 18px #5BC0EB23;
  padding: 18px 24px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: center;
  width: 100%;
  animation: cookieFadeIn 0.55s cubic-bezier(.19,1,.22,1);
}
@keyframes cookieFadeIn {
  0%{ opacity: 0; transform: translateY(48px); }
  100%{ opacity: 1; transform: translateY(0); }
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 28px;
  padding: 9px 20px;
  margin-left: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.13s, color 0.13s, transform 0.15s;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: var(--fun-lime);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.07);
}
.cookie-banner .reject {
  background: var(--fun-pink);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.07);
}
.cookie-banner .settings {
  background: #E5EAF4;
  color: var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--fun-yellow);
  color: var(--primary);
  transform: scale(1.05);
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(26,34,51,0.6);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.4s cubic-bezier(.51,.47,.32,1.04);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-content {
  background: #fff;
  padding: 32px 28px 22px 28px;
  border-radius: 26px;
  box-shadow: 0 6px 36px #5BC0EB57;
  width: 98%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.24rem;
  color: var(--fun-pink);
}
.cookie-category {
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--fun-lime);
}
.cookie-modal-content .toggle {
  width: 36px; height: 20px;
  border-radius: 14px;
  appearance: none;
  background: #E4E8F1;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal-content .toggle:checked {
  background: var(--fun-lime);
}
.cookie-modal-content .toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left .16s;
  box-shadow: 0 1px 2px #5BC0EB22;
}
.cookie-modal-content .toggle:checked:after {
  left: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  font-size: 1.28rem;
  background: none;
  border: none;
  color: var(--fun-pink);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--secondary);
  transform: rotate(8deg) scale(1.09);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  width: 100%;
}
.cookie-modal-actions button {
  flex: 1;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  padding: 10px 6px;
  font-size: 1.06rem;
  font-weight: 600;
  outline: none;
  border: none;
  cursor: pointer;
}

.cookie-modal-actions .accept {
  background: var(--fun-lime);
  color: #fff;
}
.cookie-modal-actions .reject {
  background: var(--fun-pink);
  color: #fff;
}
.cookie-modal-actions .accept:hover,
.cookie-modal-actions .accept:focus {
  background: var(--secondary);
  color: #fff; 
}
.cookie-modal-actions .reject:hover,
.cookie-modal-actions .reject:focus {
  background: var(--secondary);
  color: #fff;
}

/* --- ANIMATIONS --- */
.card, .testimonial-card, .service_card, .feature_grid li, .values_grid li {
  transition: transform .16s cubic-bezier(.6,-0.28,.74,.05), box-shadow .18s cubic-bezier(.6,-0.28,.74,.05);
}
.card:hover, .service_card:hover, .feature_grid li:hover, .values_grid li:hover {
  transform: translateY(-5px) scale(1.028) rotate(-2deg);
  box-shadow: 0 9px 32px #5BC0EB38;
}

.cta-btn {
  animation: ctaPop .85s cubic-bezier(.19,1,.22,1) 0s 1;
}
@keyframes ctaPop {
  0% {transform: scale(0.93);}
  65% {transform: scale(1.10);}
  100% {transform: scale(1);}
}

/* --- MEDIA QUERIES: RESPONSIVE DESIGN --- */
@media (max-width: 1160px) {
  header .container { flex-wrap: wrap; }
  .main-nav { gap: 10px; }
}
@media (max-width: 900px) {
  .services_list, .feature_grid, .values_grid, .card-container, .content-grid, .footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .main-nav { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  /* Show Burger, Hide Desktop Nav */
  .main-nav, header .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }

  .container, header .container, footer .container {
    padding-left: 10px; padding-right: 10px;
  }
  section { padding: 32px 8px; margin-bottom: 44px; }
  .content-wrapper, .text-section { gap: 13px; }
  .feature_grid, .values_grid, .services_list {
    flex-direction: column;
    gap: 20px;
  }
  .feature_grid li, .values_grid li, .service_card {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding: 18px 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
  }
  .footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav { flex-direction: row; gap: 15px; }
}
@media (max-width: 575px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.19rem; }
  .footer .container { padding-left: 3px; padding-right: 3px; }
  section { padding: 20px 2px; }
}
@media (max-width: 420px) {
  .mobile-menu .mobile-nav a {
    padding: 11px 2px;
    font-size: 1rem;
    width: 92%;
  }
  .testimonial-card, .card, .service_card { padding: 10px 7px; }
}

/* --- ADDITIONAL SPACING & VISUAL EFFECTS --- */
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- Z-INDEX Guaranty --- */
header, .mobile-menu { z-index: 200; }
.mobile-menu-toggle { z-index: 300; }
.cookie-banner { z-index: 3500; }
.cookie-modal { z-index: 4000; }

/* --- ACCESSIBILITY FOCUS STATES --- */
a:focus-visible, .cta-btn:focus-visible, button:focus-visible {
  outline: 2px solid var(--fun-yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #FFD60033;
}

/* --- PRINT --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  section { margin-bottom: 30px !important; padding: 0 !important; }
}
