/* Lumora Path DeutschSprint — Creative Artistic Style (Flex-only) */
/* -------------------------------------------------------------- */
/* 1) Reset & Base */
/* -------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Roboto:wght@400;500;700&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1E2A5A; /* primary */
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1E2A5A; text-decoration: none; }
ul, ol { margin: 0; padding-left: 1.2rem; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }
:focus-visible { outline: 3px solid #FFB703; outline-offset: 2px; }

/* Theme variables (with fallbacks) */
:root {
  --primary: #1E2A5A;
  --secondary: #FFB703;
  --accent: #F5F7FF;
  --ink: #1E2A5A;
  --ink-2: #22336b;
  --muted: #6B7280;
  --white: #FFFFFF;
  --shadow-1: 0 6px 20px rgba(30,42,90,0.12);
  --shadow-2: 0 10px 30px rgba(30,42,90,0.18);
  --radius-1: 12px;
  --radius-2: 18px;
}

/* -------------------------------------------------------------- */
/* 2) Typography */
/* -------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: 'Montserrat', 'Roboto', Arial, sans-serif; margin: 0 0 12px; line-height: 1.2; color: #ffb703; }
h1 { font-size: 32px; letter-spacing: 0.2px; font-weight: 800; }
h2 { font-size: 28px; font-weight: 800; letter-spacing: 0.2px; position: relative; }
h3 { font-size: 20px; font-weight: 700; }
p { margin: 0 0 14px; color: var(--ink-2); }
small { font-size: 14px; color: var(--muted); }

/* Artistic heading accent */
h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 8px;
  background: var(--secondary);
  border-radius: 6px;
  transform: skewX(-18deg);
  margin-top: 8px;
}

/* -------------------------------------------------------------- */
/* 3) Layout helpers (Flex-only) */
/* -------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;              /* Flex for layout wrapper */
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section { padding: 40px 0; }

/* MANDATORY patterns */
.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; }

/* -------------------------------------------------------------- */
/* 4) Header & Navigation (Mobile-first) */
/* -------------------------------------------------------------- */
header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
}
.nav-wrapper > a img { height: 38px; }

.main-nav { display: none; align-items: center; gap: 14px; flex-wrap: wrap; }
.main-nav a {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 500;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.main-nav a:hover { background: var(--accent); transform: translateY(-1px); }

.cta-buttons { display: none; gap: 10px; align-items: center; }

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: none; border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.mobile-menu-toggle:hover { background: #E8ECFF; transform: translateY(-1px); }

/* Mobile menu overlay/panel */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 86%; max-width: 360px;
  background: var(--white);
  box-shadow: var(--shadow-2);
  transform: translateX(100%);
  transition: transform .35s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 10px;
}
/* Accept multiple possible toggles from JS */
.mobile-menu.open,
.mobile-menu.active,
.mobile-menu.is-open,
body.menu-open .mobile-menu { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end;
  border: none; background: transparent; color: var(--ink);
  font-size: 22px; cursor: pointer;
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.mobile-menu-close:hover { background: var(--accent); }

.mobile-nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a {
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--ink);
  background: var(--accent);
  transition: background .2s ease, transform .2s ease;
}
.mobile-nav a:hover { background: #E8ECFF; transform: translateX(3px); }

/* -------------------------------------------------------------- */
/* 5) Buttons */
/* -------------------------------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow-1); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }

.btn-secondary { background: var(--secondary); color: var(--primary); box-shadow: var(--shadow-1); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }

/* Link-like CTA */
.help-links a { color: var(--primary); font-weight: 700; border-bottom: 2px solid var(--secondary); }
.help-links a:hover { color: #14204a; }

/* -------------------------------------------------------------- */
/* 6) Hero */
/* -------------------------------------------------------------- */
.hero { position: relative; background: var(--accent); overflow: hidden; }
.hero .container { position: relative; }
.hero .content-wrapper { padding: 20px 0; gap: 14px; }
.hero h1 { font-size: 28px; }
.hero p { font-size: 16px; max-width: 720px; }

/* Decorative solid shapes (artistic, but solid colors) */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 0; opacity: 0.12;
}
.hero::before {
  width: 220px; height: 220px; background: var(--secondary);
  top: -60px; right: -70px; border-radius: 36px; transform: rotate(18deg);
}
.hero::after {
  width: 160px; height: 160px; background: var(--primary);
  bottom: -50px; left: -50px; border-radius: 28px; transform: rotate(-12deg);
}
.hero .content-wrapper > * { position: relative; z-index: 1; }

.cta-group { display: flex; flex-wrap: wrap; gap: 12px; }

.trust-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.trust-badges span { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 8px 10px; font-weight: 600; color: var(--ink); }
.trust-badges img { width: 18px; height: 18px; }

.highlight-points { display: flex; gap: 10px; flex-wrap: wrap; padding-left: 0; list-style: none; }
.highlight-points li { background: #fff; border: 2px solid var(--secondary); border-radius: 999px; padding: 8px 14px; font-weight: 700; color: var(--ink); }

/* -------------------------------------------------------------- */
/* 7) Features & Services & About Sections */
/* -------------------------------------------------------------- */
.features, .services, .about { background: #FFFFFF; }
.features .content-wrapper, .services .content-wrapper, .about .content-wrapper { gap: 18px; }

/* Feature grid */
.feature-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.feature-grid .feature {
  display: flex; flex-direction: column; gap: 10px;
  flex: 1 1 100%;
  background: var(--accent);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-2);
  padding: 18px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-grid .feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.feature-grid .feature img { width: 36px; height: 36px; }

/* Services cards */
.service-cards { display: flex; flex-wrap: wrap; gap: 18px; }
.service-card {
  flex: 1 1 100%;
  background: #fff;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-2);
  padding: 18px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

/* Lists styled as tags/pills for creative look */
.service-list, .pillars-list, .audiences, .levels-map, .benefit-list, .support-offers, .communication-channels, .service-includes, .pricing-tiers, .what-included, .discounts, .payment-options, .rules-list {
  display: flex; flex-wrap: wrap; gap: 10px; padding-left: 0; list-style: none;
}
.service-list li, .pillars-list li, .audiences li, .levels-map li, .benefit-list li, .support-offers li, .communication-channels li, .service-includes li, .pricing-tiers li, .what-included li, .discounts li, .payment-options li, .rules-list li {
  background: var(--accent);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 10px 12px;
}

/* Timelines / steps */
.timeline, .steps, .class-flow, .materials-tools, .assessment, .faq-list, .metrics { display: flex; flex-direction: column; gap: 8px; }

/* -------------------------------------------------------------- */
/* 8) Testimonials (high-contrast, readable) */
/* -------------------------------------------------------------- */
.testimonials { background: var(--accent); }
.testimonials .content-wrapper { gap: 16px; }
.rating-summary { font-weight: 700; color: var(--ink); background: #fff; border: 1px solid #E5E7EB; border-radius: 10px; padding: 10px 12px; display: inline-flex; width: fit-content; }

.testimonial-list { display: flex; flex-wrap: wrap; gap: 16px; }
.testimonial-card {
  background: #FFFFFF; color: #111827; /* dark text on light bg per requirement */
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-2);
  padding: 18px;
  box-shadow: var(--shadow-1);
  flex: 1 1 100%;
  flex-direction: column; align-items: flex-start;
}
.testimonial-card blockquote { margin: 0 0 8px; font-style: italic; color: #0F172A; }
.testimonial-card cite { font-weight: 700; color: #1F2937; }

.logos-or-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.logos-or-tags span { padding: 6px 10px; background: #fff; border: 1px dashed var(--primary); border-radius: 999px; font-weight: 700; color: var(--ink); }

.nps-score { font-weight: 800; background: #fff; border: 2px solid var(--secondary); border-radius: 12px; padding: 8px 12px; display: inline-flex; }

/* -------------------------------------------------------------- */
/* 9) Contact blocks */
/* -------------------------------------------------------------- */
.contact .content-wrapper { gap: 14px; }
.contact-info, .contact-info-block { display: flex; flex-direction: column; gap: 10px; }
.contact-options { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.contact-info p, .contact-info-block p { display: flex; align-items: center; gap: 8px; margin: 0; color: #9198a6;}
.contact-info img, .contact-info-block img { width: 18px; height: 18px; }

/* -------------------------------------------------------------- */
/* 10) Footer */
/* -------------------------------------------------------------- */
footer { background: #0F1A44; color: #E5E7EB; }
footer a { color: #E5E7EB; }
footer .container { padding-top: 24px; padding-bottom: 24px; }
footer .content-wrapper {
  display: flex; flex-direction: column; gap: 20px; flex-wrap: wrap;
}
footer ul { list-style: none; padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand address { font-style: normal; display: flex; flex-direction: column; gap: 6px; }
.footer-links, .footer-legal, .footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-social ul { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social img { width: 22px; height: 22px; filter: brightness(1.4); }

.newsletter-signup { display: flex; flex-wrap: wrap; gap: 8px; }
.newsletter-signup label { font-weight: 700; }
.newsletter-signup input[type="email"] {
  flex: 1 1 220px; min-width: 0;
  padding: 10px 12px; border-radius: 10px; border: 1px solid #CBD5E1;
}
.newsletter-signup button { padding: 10px 14px; border: none; border-radius: 10px; background: var(--secondary); color: var(--primary); font-weight: 800; cursor: pointer; }
.newsletter-signup button:hover { filter: brightness(0.96); }

/* -------------------------------------------------------------- */
/* 11) Tables (Harmonogram) */
/* -------------------------------------------------------------- */
.features table { width: 100%; border-collapse: collapse; border-spacing: 0; }
.features thead th { text-align: left; background: var(--primary); color: #fff; padding: 12px; font-weight: 700; }
.features tbody td { padding: 12px; border-bottom: 1px solid #E5E7EB; }
.features tbody tr:nth-child(even) td { background: #FAFAFF; }
.features tbody tr:hover td { background: #F1F5FF; }

/* -------------------------------------------------------------- */
/* 12) Utility cards & designs */
/* -------------------------------------------------------------- */
.details-block { display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 14px; }
.privacy-note { background: var(--accent); border: 1px solid #E5E7EB; border-radius: 12px; padding: 14px; }
.map-embed { background: #fff; border: 2px dashed var(--secondary); border-radius: 12px; padding: 14px; color: var(--ink); }

/* -------------------------------------------------------------- */
/* 13) Mobile Navigation visibility rules */
/* -------------------------------------------------------------- */
@media (min-width: 992px) {
  .main-nav { display: flex; }
  .cta-buttons { display: flex; }
  .mobile-menu-toggle { display: none; }
}

/* -------------------------------------------------------------- */
/* 14) Responsive components & layouts */
/* -------------------------------------------------------------- */
@media (min-width: 600px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }

  .feature-grid .feature { flex: 1 1 calc(50% - 9px); }
  .service-card { flex: 1 1 calc(50% - 9px); }
  .testimonial-card { flex: 1 1 calc(50% - 8px); }
}

@media (min-width: 1024px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }

  .hero .content-wrapper { padding: 30px 0; gap: 18px; }
  .feature-grid .feature { flex: 1 1 calc(25% - 14px); }
  .service-card { flex: 1 1 calc(25% - 14px); }
  .testimonial-card { flex: 1 1 calc(33.33% - 11px); }

  /* Footer in rows */
  footer .content-wrapper { flex-direction: row; justify-content: space-between; }
}

/* Ensure text-image sections stack on mobile and align center */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
}

/* -------------------------------------------------------------- */
/* 15) Micro-interactions & Animations */
/* -------------------------------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.hero h1, .hero p, .hero .cta-group { animation: fadeUp .5s ease both; }
.hero p { animation-delay: .08s; }
.hero .cta-group { animation-delay: .16s; }

/* -------------------------------------------------------------- */
/* 16) Forms & links enhancements */
/* -------------------------------------------------------------- */
input, textarea, select { border: 1px solid #CBD5E1; border-radius: 10px; padding: 10px 12px; }
input:focus, textarea:focus, select:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(255,183,3,0.2); }

/* -------------------------------------------------------------- */
/* 17) Cookie Consent Banner & Modal */
/* -------------------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-radius: 14px; box-shadow: var(--shadow-2);
  z-index: 3000;
  transform: translateY(120%);
  transition: transform .35s ease;
}
.cookie-banner p { margin: 0; color: #fff; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-btn { border: 2px solid transparent; border-radius: 10px; padding: 10px 12px; font-weight: 800; cursor: pointer; }
.cookie-accept { background: var(--secondary); color: var(--primary); }
.cookie-reject { background: transparent; color: #fff; border-color: #fff; }
.cookie-settings { background: #fff; color: var(--primary); }
.cookie-accept:hover, .cookie-reject:hover, .cookie-settings:hover { filter: brightness(0.96); }

/* Show states (support multiple class names) */
.cookie-banner.show,
.cookie-banner.open,
.cookie-banner.active,
body.cookies-open .cookie-banner { transform: translateY(0); }

/* Cookie modal */
.cookie-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 3500; opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.cookie-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.96);
  background: #fff; color: var(--ink); width: 92%; max-width: 720px;
  border-radius: 16px; box-shadow: var(--shadow-2);
  z-index: 3600; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
  display: flex; flex-direction: column; gap: 12px; padding: 18px;
}
.cookie-modal header { display: flex; align-items: center; justify-content: space-between; }
.cookie-modal .cookie-body { display: flex; flex-direction: column; gap: 10px; }
.cookie-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--accent); border: 1px solid #E5E7EB; border-radius: 12px; padding: 10px 12px; }
.cookie-row .label { font-weight: 700; }
.cookie-row .desc { color: var(--muted); font-size: 14px; }

/* Toggle switch */
.switch { position: relative; width: 44px; height: 26px; background: #CBD5E1; border-radius: 999px; transition: background .2s ease; display: inline-flex; align-items: center; padding: 3px; }
.switch .knob { width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .2s ease; }
.switch.on { background: var(--secondary); }
.switch.on .knob { transform: translateX(18px); }

/* Modal open states */
.cookie-overlay.show, .cookie-overlay.active, body.cookie-modal-open .cookie-overlay { opacity: 1; pointer-events: auto; }
.cookie-modal.show, .cookie-modal.active, body.cookie-modal-open .cookie-modal { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }

/* -------------------------------------------------------------- */
/* 18) Page-specific small tweaks */
/* -------------------------------------------------------------- */
.rating-summary, .guarantee-note { font-weight: 700; }
.guarantee-note { color: var(--ink); background: #fff; border: 2px dashed var(--secondary); border-radius: 12px; padding: 10px 12px; display: inline-flex; }

.faq-links { display: flex; gap: 10px; flex-wrap: wrap; }
.faq-links a { color: var(--primary); border-bottom: 2px solid var(--secondary); font-weight: 700; }

/* Artistic list markers for About/Features text lists */
.about ul li, .features ul li { position: relative; padding-left: 10px; }
.about ul li::marker, .features ul li::marker { color: var(--secondary); }

/* Logo sizes inside footer brand */
.footer-brand img { width: 44px; height: 44px; }

/* -------------------------------------------------------------- */
/* 19) Spacing integrity & gaps (no overlap) */
/* -------------------------------------------------------------- */
section + section { margin-top: 10px; }
.feature-grid, .service-cards, .testimonial-list, .contact-options, .logos-or-tags { gap: 20px; }
.card, .service-card, .feature-grid .feature, .testimonial-card { margin-bottom: 20px; }

/* -------------------------------------------------------------- */
/* 20) Accessibility & contrast checks */
/* -------------------------------------------------------------- */
.testimonials, .testimonials .testimonial-card, .testimonial-card blockquote, .testimonial-card cite { color: #111827; }
.testimonials a { color: #0F172A; text-decoration: underline; }

/* -------------------------------------------------------------- */
/* 21) Desktop navigation density adjustments */
/* -------------------------------------------------------------- */
@media (min-width: 1200px) {
  .main-nav a { padding: 8px 12px; }
  .cta-buttons .btn-primary, .cta-buttons .btn-secondary { padding: 10px 16px; }
}

/* -------------------------------------------------------------- */
/* 22) Ensuring only Flexbox is used for layouts */
/* -------------------------------------------------------------- */
/* All layout containers defined above explicitly use display:flex and flex properties. No CSS Grid or columns are used anywhere in this stylesheet. */
