/* =======================
   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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #151C24;
  color: #F3F6F8;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #7ee8fa;
  text-decoration: none;
  transition: color .25s;
}
a:hover, a:focus {
  color: #63b3ed;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
input[type="text"], textarea {
  background: #182839;
  color: #F3F6F8;
  border: 1px solid #4A768D;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  transition: border-color .2s;
}
input[type="text"]:focus, textarea:focus {
  border-color: #64ffe5;
}
::-webkit-input-placeholder { color: #a8b7c6; }
::-moz-placeholder { color: #a8b7c6; }
:-ms-input-placeholder { color: #a8b7c6; }
::placeholder { color: #a8b7c6; }
hr {
  border: none;
  height: 1px;
  background: #2b445a;
  margin: 32px 0;
}

/* =============================
   BRAND COLORS & TYPOGRAPHY
   ============================= */
:root {
  --primary: #18405B;
  --secondary: #4A768D;
  --accent: #F3F6F8;
  --surface: #151C24;
  --neon: #64ffe5;
  --white: #F3F6F8;
  --dark: #151C24;
  --brand-gradient: linear-gradient(90deg, #174c6e 0%, #18405B 55%, #4A768D 100%);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F3F6F8;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  line-height: 1.12;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.18;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, address {
  font-size: 1rem;
  line-height: 1.75;
  color: #d9e3ea;
  margin-bottom: 14px;
}
strong, b {
  color: #64ffe5;
  font-weight: 700;
}

/* =============================
   CONTAINER, SECTIONS, SPACING
   ============================= */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #182839;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(0,255,213,.1), 0 0px 1px 0 #153145;
  padding: 32px 24px;
  color: #F3F6F8;
  transition: box-shadow .25s, border .2s, transform .20s;
  border: 1px solid transparent;
}
.card:hover, .card:focus-within {
  border: 1px solid #64ffe5;
  box-shadow: 0 4px 28px 0 #64ffe570, 0 2px 18px 0 #174c6e50;
  transform: translateY(-2px) scale(1.015);
}
.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;
  background: #f3f6f823;
  color: #18405B;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px 0 #18405B0d;
  transition: box-shadow .2s, transform .18s;
  border: 1px solid #e2edff;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 38px 0 #64ffe510,0 2px 12px 0 #4A768D20;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card .star-rating {
  font-size: 1.1rem;
  color: #ffd700;
  letter-spacing: 2px;
  text-shadow: 0 0 6px #ffd70077;
  margin-bottom: 3px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.topics-grid > div {
  background: #203d54;
  border-radius: 14px;
  padding: 24px;
  flex: 1 1 270px;
  min-width: 220px;
  color: #F3F6F8;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 #13314230;
}
.quick-tips, .lesson-highlights {
  margin-top: 24px;
  background: #182839;
  padding: 20px;
  border-radius: 12px;
  color: #F3F6F8;
  box-shadow: 0 0 8px 0 #64ffe520;
}

/* List spacings */
ul, ol {
  margin-bottom: 12px;
  padding-left: 20px;
  color: #d9e3ea;
}
li {
  margin-bottom: 8px;
}

/* =====================
   HEADER & NAV
   ===================== */
header {
  background: #1a2c38;
  box-shadow: 0 4px 24px -8px #18405B14;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
  margin-right: 28px;
  margin-bottom: 0;
}
.logo img {
  max-height: 44px;
  width: auto;
  filter: drop-shadow(0px 2px 8px #18405B80);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #F3F6F8;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background .18s, color .18s, box-shadow .18s;
  font-weight: 500;
  font-size: 1rem;
}
.main-nav a:hover, .main-nav a:focus {
  background: #203d54;
  color: #64ffe5;
  box-shadow: 0 0 4px #64ffe580;
}
.main-nav .cta.primary {
  background: #64ffe5;
  color: #151C24;
  font-weight: 700;
  box-shadow: 0 0 8px #64ffe5c0;
  border: none;
  padding: 9px 24px;
  margin-left: 16px;
  letter-spacing: .3px;
  border-radius: 24px;
  transition: box-shadow .18s, background .2s, color .18s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #4A768D;
  color: #F3F6F8;
  box-shadow: 0 0 20px #64ffe550;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #64ffe5;
  font-size: 2rem;
  cursor: pointer;
  z-index: 100;
  padding: 0 12px;
  border-radius: 6px;
  transition: background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #174c6e30;
  outline: 2px solid #64ffe5;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 86vw;
  max-width: 340px;
  background: #1a2c38;
  box-shadow: -4px 0 28px #18405B1a;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.5,1.7,.6,.85);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 24px 20px 48px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #64ffe5;
  font-size: 2.25rem;
  cursor: pointer;
  margin-bottom: 20px;
  border-radius: 6px;
  transition: background .2s;
  padding: 2px 12px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #64ffe520;
  outline: 2px solid #64ffe5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #F3F6F8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 12px 8px;
  border-radius: 8px;
  background: none;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #174c6e;
  color: #64ffe5;
}

/* Overlay when mobile menu is open */
body.menu-open::after {
  content: '';
  z-index: 2980;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #151C2490;
  pointer-events: auto;
  transition: background .23s;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
    font-size: .98rem;
  }
  header .container {
    height: 56px;
    gap: 14px;
  }
  .logo img {
    max-height: 38px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =====================
   HERO SECTIONS
   ===================== */
.hero, .faq-hero, .kontakt-hero, .thank-you-hero {
  background: var(--brand-gradient);
  border-bottom: 2px solid #64ffe57d;
  box-shadow: 0 4px 44px -18px #64ffe534;
  border-radius: 0 0 50px 50px / 0 0 24px 24px;
  position: relative;
  margin-bottom: 60px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero .content-wrapper, .faq-hero .content-wrapper,
.kontakt-hero .content-wrapper, .thank-you-hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  max-width: 650px;
  z-index: 2;
}
.hero h1, .faq-hero h1, .kontakt-hero h1, .thank-you-hero h1 {
  color: #64ffe5;
  text-shadow: 0 0 2px #18405B, 0 4px 22px #18405B33;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
.hero p, .faq-hero p, .kontakt-hero p, .thank-you-hero p {
  color: #F3F6F8;
  font-size: 1.12rem;
}

/* =====================
   CTA BUTTONS
   ===================== */
.cta, .main-nav .cta.primary, .mobile-nav .cta.primary {
  background: #64ffe5;
  color: #151C24;
  border: none;
  padding: 13px 36px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .3px;
  box-shadow: 0 0 12px #64ffe5c0;
  cursor: pointer;
  transition: background .18s, color .15s, box-shadow .18s, transform .12s;
  margin-top: 10px;
  margin-bottom: 0;
  display: inline-block;
  min-width: 170px;
}
.cta.primary:hover, .cta.primary:focus {  
  background: #174C6E;
  color: #F3F6F8;
  box-shadow: 0 0 28px #64ffe550;
  transform: translateY(-1px) scale(1.02);
}
.cta.secondary {
  background: #203d54;
  color: #64ffe5;
  border: 1.5px solid #64ffe5;
  font-weight: 600;
  transition: background .16s, color .16s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #64ffe5;
  color: #151C24;
  box-shadow: 0 0 16px #64ffe540;
}
button.cta, a.cta {
  text-decoration: none;
}

/* =============================
   FEATURE & TEAM CARDS, GRIDS
   ============================= */
.features .feature-grid, .about-vision ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin: 30px 0 10px 0;
  padding: 0;
}
.features .feature-grid li, .about-vision ul li {
  background: #203d54;
  color: #F3F6F8;
  border-radius: 14px;
  box-shadow: 0 2px 16px #13314222;
  padding: 32px 24px 22px 24px;
  min-width: 220px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border: 1.5px solid #174c6e40;
  transition: box-shadow .17s, border .17s;
}
.features .feature-grid li:hover {
  border: 1.5px solid #64ffe5;
  box-shadow: 0 0 18px #64ffe558;
}
.features .feature-grid img {
  height: 38px;
  margin-bottom: 10px;
}
.about-vision ul li {
  font-size: 1.07rem;
  line-height: 1.7;
  background: transparent;
  box-shadow: none;
  border: none;
  padding-left: 0;
}
.team-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.team-profile {
  background: #203d54;
  border-radius: 14px;
  box-shadow: 0 2px 16px #13314212;
  padding: 28px 20px 18px 20px;
  flex: 1 1 260px;
  min-width: 170px;
  color: #F3F6F8;
  margin-bottom: 20px;
  border: 1.5px solid #174c6e40;
  transition: box-shadow .15s, border .17s;
}
.team-profile:hover {
  border: 1.5px solid #64ffe5;
  box-shadow: 0 0 16px #64ffe558;
}

/* Lesson Highlights, Before/After, etc. */
.before-after-stats {
  background: #182839;
  color: #F3F6F8;
  border-radius: 12px;
  box-shadow: 0 2px 14px #174C6E18;
  padding: 18px 18px 12px 24px;
  margin-top: 26px;
}
.before-after-stats h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #64ffe5;
}

/* =========================
   FAQ STYLES
   ========================= */
.faq-section {
  background: #182839;
  border-radius: 18px;
  box-shadow: 0 2px 38px -8px #64ffe52a;
  margin-bottom: 60px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.faq-accordion > div {
  background: #203d54;
  color: #F3F6F8;
  border-radius: 10px;
  padding: 20px 22px;
  border: 1.2px solid #4A768D40;
  box-shadow: 0 1px 10px #18405B11;
  transition: box-shadow .16s, border .16s;
}
.faq-accordion > div:hover {
  border: 1.2px solid #64ffe5;
  box-shadow: 0 0 10px #64ffe544;
}
.faq-accordion h3 {
  color: #64ffe5;
  margin-bottom: 7px;
  font-size: 1.11rem;
}
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.search-bar label {
  color: #64ffe5;
  font-weight: 600;
  font-size: 1.02rem;
}
.search-bar input {
  max-width: 240px;
}

.contact-short .content-wrapper {
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
.contact-short img {
  height: 46px;
  margin-bottom: 10px;
}

/* =========================
   CONTACT INFO & FORMS
   ========================= */
.kontakt-info, .kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.kontakt-details p,
.kontakt-info p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.kontakt-details img, .kontakt-info img {
  height: 19px;
}
.signup-steps ol {
  margin-left: 25px;
  margin-bottom: 12px;
}
.signup-steps li {
  margin-bottom: 8px;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #1a2c38;
  color: #A7C6D8;
  font-size: 15px;
  padding-top: 36px;
  padding-bottom: 36px;
  margin: 0;
  border-top: 2px solid #174C6E22;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #64ffe5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .15px;
  transition: color .14s;
  padding: 6px 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F3F6F8;
}
.footer-contact address {
  font-style: normal;
  color: #F3F6F8;
  line-height: 1.6;
}
.footer-contact a {
  color: #64ffe5;
}

/* LEGAL STATIC PAGES */
.footer-legal, .footer-gdpr, .footer-terms, .cookie-policy {
  background: #182839;
  border-radius: 20px;
  color: #F3F6F8;
  margin-bottom: 60px;
  box-shadow: 0 4px 28px -10px #18405B22;
  padding: 40px 24px;
}
.footer-legal h1, .footer-gdpr h1, .footer-terms h1, .cookie-policy h1 {
  color: #64ffe5;
  font-size: 2rem;
  margin-bottom: 16px;
}

/* =========================
   COOKIE BANNER & MODAL
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a2c38;
  color: #F3F6F8;
  z-index: 5000;
  padding: 20px 18px 18px 18px;
  border-top: 2px solid #64ffe57a;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 -2px 30px #18405B22;
  opacity: 1;
  transform: translateY(0);
  transition: transform .22s, opacity .22s;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 560px;
  color: #F3F6F8;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cookie-banner button {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background .14s, color .14s, box-shadow .14s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #64ffe5;
  color: #151C24;
  box-shadow: 0 0 10px #64ffe540;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #4A768D;
  color: #F3F6F8;
}
.cookie-banner .settings {
  background: none;
  color: #64ffe5;
  border: 1.5px solid #64ffe5;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #203d54;
}
.cookie-banner .reject {
  background: #203d54;
  color: #64ffe5;
  border: 1.5px solid #64ffe5;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #64ffe5;
  color: #151C24;
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  z-index: 6000;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151C2460;
  opacity: 1;
  transition: opacity .25s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #1a2c38;
  color: #F3F6F8;
  border-radius: 20px;
  padding: 36px 28px 32px 32px;
  max-width: 420px;
  width: 96vw;
  box-shadow: 0 12px 78px #64ffe522, 0 2px 12px #4A768D38;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-dialog h2 {
  color: #64ffe5;
  font-size: 1.3rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #F3F6F8;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 25px;
  background: #203d54;
  border-radius: 18px;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-right: 5px;
  border: 1px solid #4A768D99;
  transition: background .16s;
}
.cookie-switch:checked {
  background: #64ffe5;
  border-color: #64ffe5;
}
.cookie-switch::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left .19s;
}
.cookie-switch:checked::after {
  left: 21px;
  background: #151C24;
}
.modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 18px;
}
.modal-actions button {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .12s, color .12s, box-shadow .12s;
}
.modal-actions .accept {
  background: #64ffe5;
  color: #151C24;
  box-shadow: 0 0 10px #64ffe540;
}
.modal-actions .accept:hover {
  background: #4A768D;
  color: #F3F6F8;
}
.modal-actions .close {
  background: #203d54;
  color: #64ffe5;
  border: 1.5px solid #64ffe5;
}
.modal-actions .close:hover {
  background: #64ffe5;
  color: #151C24;
}


/* ===========================
   ANIMATIONS & MICRO-ACTIONS
   =========================== */
.card, .testimonial-card, .team-profile, .features .feature-grid li {
  transition: box-shadow .21s, transform .18s;
}
a:not(.cta), .footer-nav a {
  transition: color .14s, background .17s;
}
button, input, .cta {
  transition: background .14s, color .12s, box-shadow .16s;
}

/* NEON LINES/ACCENTS */
.hero::before, .cta::before {
  content: '';
  display: block;
  width: 100vw;
  height: 5px;
  position: absolute;
  left: -30vw;
  top: -5px;
  background: linear-gradient(90deg, #64ffe580 0%, #18405B00 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 4px;
}
.cta::before {
  height: 2px;
  left: 0; top: -10px;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 1024px) {
  .container {
    max-width: 90vw;
    padding-left: 13px;
    padding-right: 13px;
  }
  .hero, .faq-hero, .kontakt-hero, .thank-you-hero {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
@media (max-width: 800px) {
  section, .section {
    padding: 28px 6px;
  }
  .team-section .content-wrapper, .features .feature-grid, .about-vision ul, .content-grid, .topics-grid {
    gap: 16px;
  }
}
@media (max-width: 660px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .footer-nav {
    gap: 12px;
    font-size: .97rem;
  }
}
@media (max-width: 600px) {
  .hero, .faq-hero, .kontakt-hero, .thank-you-hero {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    padding-top: 32px;
    padding-bottom: 30px;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.1rem;
  }
}
@media (max-width: 728px) {
  .content-wrapper, .team-section .content-wrapper, .features .feature-grid, .about-vision ul {
    flex-direction: column;
  }
  .topics-grid, .card-container, .content-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 400px) {
  .cookie-modal-dialog {
    padding: 19px 7px 10px 10px;
  }
}

/* Hide visually, but keep for accessibility */
.sr-only {position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}

/* =============================
   NEON EFFECTS & DECOR ESSENCE
   ============================= */
.hero, .cta, .faq-hero, .kontakt-hero, .thank-you-hero {
  box-shadow: 0 0 70px 0 #64ffe52c;
}

/* =============================
   UTILITY CLASSES
   ============================= */
.m-t-32 { margin-top: 32px !important; }
.m-b-32 { margin-bottom:32px !important; }
.no-bottom { margin-bottom: 0 !important; }

/* =============================
   Z-INDEX ENSURES MENU STACKS
   ============================= */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 10010 !important;
}

/* END OF STYLE.CSS */
