/* ========== CSS RESET & NORMALIZATION ========== */
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;
  font: inherit;
  font-size: 100%;
  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: #F7F9FA;
  color: #1B263B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
a {
  color: #415A77;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #1B263B;
  text-decoration: underline;
}
button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  background: none;
  border: none;
}

/* ========== BRAND COLORS & FONTS ========== */
:root {
  --primary: #1B263B;
  --secondary: #415A77;
  --accent: #E0E1DD;
  --background: #F7F9FA;
  --text-dark: #1B263B;
  --text-light: #ffffff;
  --shadow: 0 2px 8px rgba(65, 90, 119, .07), 0 1.5px 4px rgba(65,90,119,.07);
  --radius: 10px;
}

/* ========== TYPOGRAPHY ========== */
body, input, select, textarea, button {
  font-family: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.5px;
  margin-bottom: 18px;
  line-height: 1.18;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 { font-size: 1.1rem; }
p, li {
  color: #35405a;
  font-size: 1rem;
  margin-bottom: 10px;
    font-weight: 400;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}
blockquote {
  border-left: 3px solid var(--secondary);
  padding-left: 18px;
  color: var(--primary);
  font-style: italic;
  background: var(--accent);
  margin: 20px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
cite {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #415A77;
}

/* ========== CONTAINERS & UTILITY CLASSES ========== */
.container {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.text-section {
  margin-bottom: 32px;
}
.location-map, .featured-review {
  margin-bottom: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(65, 90, 119, 0.13);
  transform: translateY(-6px) 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;
  padding: 20px 28px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: #fff;
  color: #1B263B;
  box-shadow: var(--shadow);
  min-width: 240px;
  max-width: 460px;
  transition: box-shadow .18s, transform .15s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(65,90,119,0.13);
  transform: translateY(-5px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 1.5px 12px rgba(27, 38, 59, 0.08);
  z-index: 1100;
  position: sticky;
  top: 0;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  padding: 12px 0;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.header .container {
  flex-direction: row;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  transition: color .16s;
  padding: 7px 6px;
  border-radius: 5px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
  text-decoration: none;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 2px 8px rgba(65,90,119,.07);
  margin-left: 40px;
  transition: background .17s, color .18s, box-shadow .16s, transform .13s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--secondary);
  color: var(--accent);
  box-shadow: 0 5px 20px rgba(65,90,119,0.18);
  transform: translateY(-3px) scale(1.025);
}
.btn-secondary {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background .17s, color .18s, box-shadow .14s, border-color .19s;
  outline: none;
  margin-top: 7px;
  margin-bottom: 6px;
  box-shadow: 0 1.5px 5px rgba(65,90,119,.07);
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--secondary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(65,90,119,0.10);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 1301;
  transition: background .14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--accent);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 99vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 18px rgba(65,90,119,.11);
  z-index: 1500;
  flex-direction: column;
  padding: 38px 18px 20px 28px;
  transform: translateX(110%);
  transition: transform .27s cubic-bezier(.75,0,.3,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  padding: 2px 8px 8px 2px;
  border-radius: 6px;
  transition: background .14s, color .14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 5px;
  border-radius: 5px;
  transition: background .16s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(90deg, #E0E1DD 0%, #F7F9FA 100%);
  padding: 60px 0 46px 0;
  display: flex;
  align-items: center;
  min-height: 360px;
}
.hero .container {
  justify-content: center;
  align-items: center;
  min-height: inherit;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  color: #415A77;
  margin-bottom: 30px;
}

/* ========== FEATURES SECTION ========== */
.features {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  padding: 40px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 260px;
  list-style: none;
  background: #F7F9FA;
  border-radius: 9px;
  padding: 22px 14px;
  box-shadow: 0 1px 3px rgba(65,90,119,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow .17s, transform .14s;
}
.feature-grid li:hover {
  box-shadow: 0 7px 18px rgba(65,90,119,0.10);
  transform: translateY(-5px) scale(1.025);
}
.feature-grid img {
  height: 36px;
  width: 36px;
  margin-bottom: 7px;
}

/* ========== SERVICES SECTION ========== */
.services {
  background: #F7F9FA;
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 26px;
  justify-content: flex-start;
}
.service-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px 18px 20px;
  min-width: 220px;
  max-width: 310px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
  transition: box-shadow .14s, transform .14s;
}
.service-list li:hover {
  box-shadow: 0 7px 22px rgba(65,90,119,0.10);
  transform: translateY(-4px) scale(1.018);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: 'Roboto', Arial, sans-serif;
}
.services-table th, .services-table td {
  padding: 13px 17px;
  border-bottom: 1px solid #E0E1DD;
  font-size: 1rem;
}
.services-table th {
  background: #F7F9FA;
  color: var(--primary);
  font-weight: 700;
  text-align: left;
}
.services-table tr:last-child td {
  border-bottom: none;
}

.service-descriptions {
  margin-bottom: 24px;
}
.service-descriptions li {
  margin-bottom: 10px;
}

/* ========== TESTIMONIALS ========== */
.testimonials, .opinie {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  padding: 48px 0 32px 0;
}
.testimonials-slider, .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.featured-review {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(65,90,119,0.10);
  padding: 26px 24px;
  margin: 22px 0 26px 0;
}
.featured-review h2 {
  color: var(--secondary);
  margin-bottom: 12px;
}
.featured-review blockquote p {
  color: var(--primary);
  font-size: 1.18rem;
  font-style: italic;
}
.featured-review cite {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  color: var(--secondary);
}

.leave-review-cta {
  margin-top: 32px;
  padding: 22px 0 0 0;
  border-top: 1px solid #E0E1DD;
}
.leave-review-cta p {
  color: var(--primary);
  font-size: 1.04rem;
  margin-bottom: 10px;
}

/* ========== CTA SECTION ========== */
.home-cta, .cta-section, .contact-cta, .faq-contact-cta {
  background: linear-gradient(90deg, #E0E1DD 0%, #F7F9FA 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 0;
  margin-bottom: 38px;
}
.home-cta .btn-primary,
.cta-section .btn-primary,
.contact-cta .btn-primary {
  margin-top: 17px;
}

/* ========== FAQ & ACCORDION ========== */
.faq,
.faq-snippet {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px 0 36px 0;
  margin-bottom: 48px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #F7F9FA;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 7px rgba(65,90,119,0.07);
  padding: 22px 18px 17px 18px;
  transition: box-shadow .14s, transform .13s;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(65,90,119,0.12);
  transform: translateY(-2px) scale(1.014);
}
.faq-short li {
  background: #F7F9FA;
  margin-bottom: 13px;
  border-radius: 7px;
  padding: 13px 12px;
}

.faq-contact-cta {
  margin-top: 38px;
  padding: 18px 0 0 0;
  border-top: 1px solid #E0E1DD;
}
.faq-contact-cta p {
  font-size: 1.09rem;
  color: var(--primary);
  margin-bottom: 13px;
}

/* ========== PROCESS/STEPS SECTION ========== */
.process {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 44px;
  padding: 40px 0 34px 0;
}
.teaching-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 28px;
}
.teaching-steps li {
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 195px;
  background: #F7F9FA;
  border-radius: 7px;
  padding: 17px 14px;
  box-shadow: 0 1px 3px rgba(65,90,119,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 12px;
  transition: box-shadow .14s, transform .13s;
}
.teaching-steps li:hover {
  box-shadow: 0 4px 12px rgba(65,90,119,0.12);
  transform: translateY(-3px) scale(1.015);
}
.teaching-steps img {
  height: 32px;
  width: 32px;
}

/* ========== CONTACT SECTION ========== */
.contact-details li {
  margin-bottom: 8px;
  color: var(--primary);
}
.location-map {
  display: flex;
  align-items: center;
  gap: 18px;
}
.location-map img {
  min-width: 48px;
}
.location-map p {
  margin: 0;
}

/* ========== CONFIRMATION PAGE ========== */
.confirmation {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 50px 0 40px 0;
  padding: 44px 0 36px 0;
  text-align: center;
}

/* ========== FOOTER ========== */
footer {
  background: #1B263B;
  color: var(--accent);
  padding: 38px 0 26px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #E0E1DD;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #AFC4D6;
  text-decoration: underline;
}
.footer-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.94rem;
}
.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto 13px auto;
}
footer span {
  color: #A0B0CF;
  font-size: .93rem;
  display: block;
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #F7F9FA;
  box-shadow: 0 -1.5px 14px rgba(65,90,119,0.07);
  padding: 28px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 80px;
  font-size: 1rem;
  border-top: 1.5px solid #E0E1DD;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity .19s, transform .28s cubic-bezier(.75,0,.3,1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  margin-left: 16px;
}
.cookie-banner .btn-primary {
  padding: 10px 18px;
}
.cookie-banner .btn-secondary {
  padding: 9px 16px;
}

.cookie-settings-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(27,38,59,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s cubic-bezier(.75,0,.3,1);
}
.cookie-settings-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  padding: 36px 30px 30px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 38px rgba(65,90,119,0.12);
  min-width: 310px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  margin-top: 0;
  font-size: 1.39rem;
  color: var(--primary);
}
.cookie-modal-content .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  margin-bottom: 13px;
}
.cookie-modal-content input[type=checkbox] {
  width: 21px;
  height: 21px;
}
.cookie-modal-content label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 20px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 13px;
  right: 18px;
  font-size: 1.7rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: color .14s, background .13s;
  border-radius: 6px;
  padding: 3px 10px 7px 10px;
}
.cookie-modal-content .close-modal:hover, .cookie-modal-content .close-modal:focus {
  color: var(--secondary);
  background: var(--accent);
}

/* ========== TABLES ========== */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  background: #F7F9FA;
  color: var(--primary);
}
td {
  color: #415A77;
}
tr:nth-child(even) td {
  background: #F0F3F7;
}

/* ========== MEDIA QUERIES: RESPONSIVE DESIGN ========== */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    margin-left: 14px;
  }
  .btn-primary {
    margin-left: 16px;
  }
  .feature-grid {
    gap: 16px;
  }
  .service-list {
    gap: 10px;
  }
  .testimonials-slider, .testimonials-grid {
    gap: 12px;
  }
  .teaching-steps {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .service-list, .testimonials-slider, .testimonials-grid, .teaching-steps {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid li, .service-list li, .teaching-steps li, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-info {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 578px) {
  h1 { font-size: 1.46rem; margin-bottom: 18px; }
  h2 { font-size: 1.18rem; margin-bottom: 12px; }
  .home-cta, .cta-section, .contact-cta, .faq-contact-cta, .features, .services, .testimonials, .opinie, .process, .confirmation, .faq {
    padding-left: 7px;
    padding-right: 7px;
  }
  .footer-nav {
    gap: 8px;
  }
}

/* ========== ACCESSIBILITY HIGHLIGHTS ========== */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}
::-webkit-input-placeholder {
  color: #A0B0CF;
}
:-ms-input-placeholder {
  color: #A0B0CF;
}
::placeholder {
  color: #A0B0CF;
}

/* ========== MICRO INTERACTIONS & TRANSITIONS ========== */
.btn-primary, .btn-secondary, a, .feature-grid li, .service-list li, .card, .testimonial-card, .faq-item, .teaching-steps li, .mobile-nav a {
  transition: box-shadow .14s, background .15s, color .14s, transform .14s;
}

/* ========== CUSTOM SCROLLBAR ========== */
body {
  scrollbar-width: thin;
  scrollbar-color: #415A77 #E0E1DD;
}
body::-webkit-scrollbar {
  width: 9px;
  background: #E0E1DD;
}
body::-webkit-scrollbar-thumb {
  background: #415A77;
  border-radius: 10px;
}

/* ========== Z-INDEX LAYERING CLARITY ========== */
header { z-index: 1099; position: relative; }
.mobile-menu { z-index: 1500; }
.cookie-banner { z-index: 2000; }
.cookie-settings-modal { z-index: 3000; }

/* ========== NO GRID, ONLY FLEXBOX: ENFORCED ========== */
/* Absolutely no display:grid or grid-* or columns properties used anywhere */