/* 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, 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #f5fafc;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #24292f;
  font-size: 16px;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #00a7b4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #00476d;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}

/* Typography Scale */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #00476d;
  letter-spacing: -0.5px;
  line-height: 1.12;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #00a7b4;
  margin-bottom: 18px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00476d;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #354b5e;
}
strong {
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* General Layout Containers */
.container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Mandatory Spacing and Alignment Patterns */
.section,
section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(0,167,180,0.12);
  padding: 32px 28px;
  gap: 16px;
}
.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;
}

/* --- HEADER/NAVIGATION STYLING --- */
header {
  background: #00476d;
  box-shadow: 0 2px 20px 0 rgba(0,71,109,0.11);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  height: 72px;
  min-height: 72px;
}
header img {
  max-height: 50px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #f5fafc;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 8px 0;
  transition: color .18s;
}
.main-nav a:hover, .main-nav a.active {
  color: #00ffd2;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: #00a7b4;
  padding: 11px 32px;
  margin-left: 22px;
  border-radius: 25px;
  box-shadow: 0 2px 16px 0 rgba(0,167,180,0.14);
  transition: background .22s, box-shadow .22s, color .18s;
  border: none;
  text-shadow: 0 2px 8px rgba(0,71,109,0.12);
  letter-spacing: 0.04em;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #00476d;
  color: #00ffd2;
  box-shadow: 0 6px 24px 0 rgba(0,167,180,0.21);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #00a7b4;
  color: #fff;
  padding: 8px 18px;
  border-radius: 12px;
  font-size: 2rem;
  line-height: 1;
  margin-left: 18px;
  z-index: 1201;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(0,167,180,0.17);
  transition: background .22s, color .22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #00476d;
  color: #00ffd2;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #00a7b4;
  z-index: 1200;
  padding: 0 0 0 0;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.6,-0.1,.15,1.15), opacity 0.25s;
  opacity: 1;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 2px 40px 10px rgba(0,71,109,0.12);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #f5fafc;
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 36px 36px 0 0;
  cursor: pointer;
  transition: color .22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #00ffd2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 40px 0 40px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 11px 0;
  border-radius: 8px;
  transition: background .12s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00476d;
  color: #00ffd2;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(92deg, #00a7b4 0%, #00476d 120%);
  color: #fff;
  padding: 80px 20px 64px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 8px 34px 0 rgba(0,167,180,0.08);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 20px;
  max-width: 600px;
}
.hero h1, .hero p {
  color: #fff;
}

/* --- FEATURES --- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.features .feature-grid > div {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(0,167,180,0.1);
  padding: 32px 22px 24px 22px;
  border-radius: 17px;
  min-width: 220px;
  max-width: 265px;
  margin-bottom: 16px; /* for flex wrap fallback on very small screens */
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 1;
  border-left: 6px solid #00a7b4;
  transition: box-shadow .18s, transform .23s;
}
.features .feature-grid > div:hover {
  box-shadow: 0 6px 24px 0 rgba(0,71,109,0.18);
  transform: translateY(-4px) scale(1.022);
}
.features .feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.features h3 {
  margin-bottom: 8px;
}

/* --- SERVICES OVERVIEW (on home) --- */
.services-overview ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.services-overview li {
  background: #fff;
  border-radius: 11px;
  padding: 17px 21px;
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 2px 8px 0 rgba(0,167,180,0.08);
  line-height: 1.56;
}
.services-overview .cta-btn {
  margin-top: 20px;
  align-self: flex-start;
}

/* --- HOW IT WORKS --- */
.how-it-works ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.how-it-works li {
  background: #00a7b4;
  color: #fff;
  border-radius: 16px;
  padding: 13px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  box-shadow: 0 1px 6px 0 rgba(0,167,180,0.12);
  margin-bottom: 7px;
}

/* --- TESTIMONIALS --- */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #00476d;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(0,71,109,0.15);
  padding: 26px 24px 20px 24px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 0 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 12px;
  border-left: 5px solid #00a7b4;
  z-index: 2;
}
.testimonial-card p {
  color: #24292f;
  font-size: 1.02rem;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-author {
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #00a7b4;
  font-weight: 700;
}

/* --- CALL TO ACTION --- */
.call-to-action, .cta-services, .cta-pricing, .cta-advice, .cta-contact {
  background: #00a7b4;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(0,167,180,0.08);
  padding: 48px 20px 38px 20px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.call-to-action .cta-btn, .cta-services .cta-btn,
.cta-pricing .cta-btn, .cta-advice .cta-btn, .cta-contact .cta-btn {
  margin-top: 24px;
}
.call-to-action h2, .cta-services h2, .cta-pricing h2, .cta-advice h2, .cta-contact h2 {
  color: #fff;
}

/* --- ABOUT PAGE --- */
.about, .values, .milestones, .contact-short {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,71,109,0.08);
  margin-bottom: 32px;
}
.contact-short .contact-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
  font-size: 1.06rem;
}
.contact-short .contact-info img {
  margin-right: 10px;
  vertical-align: middle;
}

/* --- USLUGI (SERVICES CARD GRID) --- */
.services .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.services .service-grid > div {
  background: #f5fafc;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(0,167,180,0.10);
  padding: 28px 22px 20px 22px;
  min-width: 200px;
  max-width: 280px;
  flex: 1 0 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: box-shadow .19s, transform .22s;
  position: relative;
  margin-bottom: 10px;
}
.services .service-grid > div:hover {
  box-shadow: 0 7px 28px 0 rgba(0,71,109,0.11);
  transform: translateY(-3px) scale(1.014);
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: #00a7b4;
  color: #fff;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  margin-top: 6px;
}

/* --- USP LIST STYLING --- */
.usp ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.usp li {
  background: #fff;
  border-left: 4px solid #00a7b4;
  border-radius: 10px;
  padding: 13px 19px;
  box-shadow: 0 1px 5px 0 rgba(0,167,180,0.10);
  font-size: 1rem;
}

/* --- PORADY (ADVICE/KBASE) --- */
.knowledge-base input[type="search"] {
  width: 100%;
  max-width: 340px;
  padding: 13px 18px;
  font-size: 1rem;
  border: 1px solid #00a7b4;
  border-radius: 12px;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(0,167,180,0.08);
  transition: border .19s;
}
.knowledge-base input[type="search"]:focus {
  border: 1.6px solid #00476d;
}
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.category-filter button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #00a7b4;
  color: #fff;
  padding: 7px 20px;
  border-radius: 21px;
  font-size: 0.98rem;
  font-weight: 700;
  border: none;
  transition: background .17s, color .18s;
}
.category-filter button:hover, .category-filter button:focus {
  background: #00476d;
  color: #00ffd2;
}
.knowledge-base ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.knowledge-base li {
  background: #fff;
  border-radius: 10px;
  padding: 16px 19px;
  box-shadow: 0 1px 5px 0 rgba(0,167,180,0.08);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.faq-accordion > div {
  background: #f5fafc;
  border-left: 5px solid #00a7b4;
  border-radius: 10px;
  padding: 16px 19px;
  box-shadow: 0 1px 5px 0 rgba(0,167,180,0.10);
  transition: box-shadow .15s;
}
.faq-accordion > div:hover {
  box-shadow: 0 2px 14px 0 rgba(0,71,109,0.11);
}
.faq-accordion h3 {
  margin-bottom: 6px;
}
.faq-accordion p {
  font-size: .99rem;
}

/* --- CENNIK (PRICING TABLE) --- */
.pricing table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(0,167,180,0.09);
  margin-bottom: 22px;
  overflow: hidden;
  font-size: 1.06rem;
}
.pricing th, .pricing td {
  padding: 15px 18px;
  border-bottom: 1px solid #e3f2f8;
  text-align: left;
  color: #00476d;
}
.pricing th {
  background: #00a7b4;
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing tr:last-child td {
  border-bottom: none;
}
.pricing ul {
  margin-top: 10px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- KONTAKT --- */
.contact-form-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 1.08rem;
}
.contact-form-section .contact-info img {
  margin-right: 9px;
  vertical-align: middle;
}
.location-map {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.location-map img {
  width: 56px;
  height: 56px;
}
.hours ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hours li {
  background: #fff;
  border-radius: 9px;
  padding: 11px 17px;
  font-size: 1.04rem;
  box-shadow: 0 1px 4px 0 rgba(0,167,180,0.06);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* --- PRIVACY, RODO, COOKIES, TERMS --- */
.privacy-policy, .rodo, .cookies-policy, .terms-of-use {
  background: #fff;
  border-radius: 12px;
  padding: 38px 22px;
  box-shadow: 0 2px 10px 0 rgba(0,71,109,0.08);
  margin-bottom: 38px;
}
.privacy-policy ul, .rodo ul, .cookies-policy ul, .terms-of-use ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 18px 0 0 0;
}

/* --- CONFIRMATION (THANK YOU) --- */
.confirmation ul {
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.confirmation .cta-btn {
  margin-top: 18px;
}

/* --- FOOTER --- */
footer {
  background: #00476d;
  color: #f5fafc;
  padding: 42px 20px 32px 20px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #f5fafc;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #00ffd2;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #b5dae7;
  font-size: .98rem;
}
.contact-footer img {
  margin-right: 8px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer-social a img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(0.85) drop-shadow(0 2px 6px #00476d50);
  transition: filter .2s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: brightness(1.2) drop-shadow(0 4px 14px #00a7b4AA);
}
.footer-legal {
  color: #53c8e7;
  text-align: center;
  font-size: 0.98rem;
  margin-top: 10px;
  opacity: 0.84;
}

/*--- Cookie Consent Banner and Modal ---*/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #00476d;
  color: #fff;
  z-index: 1500;
  box-shadow: 0 -4px 28px 0 rgba(0,71,109,0.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 26px 18px;
  font-size: 1.05rem;
  animation: cookie-slide-in 0.5s ease;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-left: 20px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #00a7b4;
  color: #fff;
  border-radius: 22px;
  border: none;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 1px 4px 0 rgba(0,167,180,0.07);
  transition: background .19s, color .17s;
}
.cookie-btn.secondary {
  background: #fff;
  color: #00476d;
  border: 1.5px solid #00a7b4;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #00ffd2;
  color: #00476d;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 1600;
  background: #fff;
  color: #00476d;
  border-radius: 13px;
  box-shadow: 0 8px 40px 0 rgba(0,71,109,0.18);
  padding: 48px 25px 32px 25px;
  min-width: 320px;
  min-height: 160px;
  max-width: 96vw;
  max-height: 96vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 1;
  animation: cookie-modal-pop 0.34s cubic-bezier(.71,-0.16,.36,1.38);
}
@keyframes cookie-modal-pop {
  from { transform: translate(-50%,-45%) scale(0.92); opacity: 0.2; }
  to { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  font-size: 1.9rem;
  color: #00a7b4;
  background: none;
  border: none;
  position: absolute;
  right: 38px;
  top: 27px;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #00476d;
}
.cookie-modal h2 {
  color: #00476d;
  font-size: 1.45rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #00a7b4;
}
.cookie-category label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #00476d;
  cursor: pointer;
}
.cookie-category .always-on-label {
  font-style: italic;
  color: #00a7b4;
}

/* --- SHADOWS, BORDERS, ENERGETIC EFFECTS --- */
section, .card, .features .feature-grid > div, .testimonial-card, .services .service-grid > div {
  box-shadow: 0 2px 14px 0 rgba(0,167,180,0.08);
}

/* Button interactive micro-animations */
button, .cta-btn, .cookie-btn, .category-filter button {
  transition: background .21s, color .14s, box-shadow .18s, transform .14s;
}
button:active, .cta-btn:active, .cookie-btn:active, .category-filter button:active {
  transform: scale(0.97) translateY(1.5px);
}

/* Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* --- RESPONSIVE (MOBILE-FIRST) --- */
@media (max-width:1100px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width:900px) {
  .features .feature-grid, .services .service-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
  .container {
    padding: 0 12px;
  }
  header .container {
    height: 60px;
    min-height: 60px;
    padding: 0 10px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    padding: 9px 18px;
    margin-left: 10px;
    font-size: .97rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .features .feature-grid, .services .service-grid, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container {
    gap: 24px;
  }
  .footer-nav, .footer-social {
    gap: 12px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 20px 7px;
    font-size: 0.97rem;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 10px;
    margin-left: 0;
  }
  .call-to-action, .cta-services, .cta-pricing, .cta-advice, .cta-contact {
    padding: 32px 8px 20px 8px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.39rem; }
  h2 { font-size: 1.03rem; }
  .card, .testimonial-card, .features .feature-grid > div, .services .service-grid > div, .about, .values, .milestones, .contact-short, .privacy-policy, .rodo, .cookies-policy, .terms-of-use {
    padding: 16px 8px 18px 8px;
  }
}

/* --- Hide mobile menu when not open --- */
.mobile-menu {
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

/* --- Z-Index Layers for Navigation/Banners --- */
header { position: relative; z-index: 900; }
.mobile-menu { z-index: 1200; }
.cookie-consent-banner { z-index: 1500; }
.cookie-modal { z-index: 1600; }

/* --- Accessibility --- */
:focus {
  outline: 2px dashed #00a7b4;
  outline-offset: 2px;
}

/* --- Remove number input arrows (for possible cookie category toggles) --- */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
