/* ---------------------------------------------------
   RADIANT NIERUCHOMOŚCI SOFT PASTEL STYLE (FLEXBOX ONLY)
   --------------------------------------------------- */
/* --- 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #F5F7FA;
  color: #22346E;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #31B87B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22346E;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
button:focus, a:focus {
  outline: 2px solid #31B87B;
  outline-offset: 2px;
}
/* --- CUSTOM FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #22346E;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #227290;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #295688;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #386775;
}
strong, b {
  font-weight: 600;
  color: #1d385c;
}
p, li, dd {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2d3368;
  font-size: 1rem;
  margin-bottom: 12px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  box-shadow: 0 4px 20px 0 rgba(36, 74, 119, 0.07);
  min-width: 0;
  flex: 1 1 310px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(36, 74, 119, 0.15);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(to bottom right, #FDF6F0 80%, #E1F5FB 100%);
  border-radius: 0px 0px 24px 24px;
  padding-top: 58px;
  padding-bottom: 48px;
  margin-bottom: 56px;
  box-shadow: 0 2px 18px 0 rgba(49,184,123,.05);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: #22346E;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}
.hero p {
  font-size: 1.15rem;
  color: #3550a9;
  max-width: 540px;
}
/* --- MAIN NAVIGATION --- */
header {
  width: 100%;
  z-index: 30;
  background: #F5F7FA;
  box-shadow: 0 2px 8px 0 rgba(49,184,123,0.03);
  position: relative;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 16px 0 16px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.main-menu a {
  color: #295688;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.main-menu a.cta.primary {
  color: #fff;
  background: #31B87B;
  box-shadow: 0 4px 16px 0 rgba(49,184,123,.08);
  border-radius: 18px;
  font-weight: 600;
  margin-left: 12px;
  letter-spacing: 0.04em;
  transition: background 0.18s;
}
.main-menu a.cta.primary:hover, .main-menu a.cta.primary:focus {
  background: #227290;
  color: #fff;
}
.main-menu a:hover:not(.cta), .main-menu a:focus:not(.cta) {
  background: #E9F6EE;
  color: #31B87B;
}
.main-menu img {
  height: 40px;
  margin-right: 22px;
}
@media (max-width: 1050px) {
  .main-menu a {
    font-size: 0.95rem;
    padding: 8px 8px;
  }
}
@media (max-width: 900px) {
  .main-menu {
    gap: 10px;
  }
}
@media (max-width: 850px) {
  .main-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 22px;
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2.05rem;
  color: #31B87B;
  box-shadow: 0 1px 8px 0 rgba(49,184,123,.08);
  border: none;
  cursor: pointer;
  z-index: 102;
  transition: background 0.23s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E9F6EE;
}
@media (max-width: 850px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(245,247,250,0.95);
  box-shadow: 0 18px 48px 0 rgba(49,184,123,.18);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.85,.28,.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.7rem;
  color: #295688;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(49,184,123,0.10);
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 999;
  cursor: pointer;
  transition: background 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E9F6EE;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 86px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  background: #fff;
  padding: 16px 32px;
  border-radius: 16px;
  color: #295688;
  box-shadow: 0 2px 12px 0 rgba(49,184,123,0.07);
  text-align: center;
  margin-bottom: 4px;
  transition: background 0.14s, color 0.14s;
  min-width: 220px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #31B87B;
  color: #fff;
}
@media (max-width: 500px) {
  .mobile-nav a {
    font-size: 1.05rem;
    min-width: 60vw;
    padding: 12px 10vw;
  }
}
/* --- LAYOUT GAPS & FLEX SPACING --- */
.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; }
@media (max-width: 768px) {
  .section {
    padding: 18px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
/* --- FEATURE AND SERVICE GRID --- */
.feature-grid,
.service-list,
.process-timeline,
.short-benefits,
.key-benefits,
.company-values,
.tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid li,
.service-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(49,184,123,0.11);
  padding: 28px 22px 22px 22px;
  min-width: 240px;
  flex: 1 1 260px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  gap: 12px;
  border: 1.5px solid #EAF8F5;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(49,184,123,0.10);
  padding: 28px 22px 22px 22px;
  min-width: 240px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
  gap: 14px;
  border: 1.5px solid #EAF8F5;
}
.feature-grid li:hover,
.service-item:hover {
  box-shadow: 0 6px 32px 0 rgba(49,184,123,0.14);
  transform: translateY(-2px) scale(1.012);
}
.feature-grid img, .service-item img, .service-list img {
  width: 40px; height: 40px; margin-bottom: 6px;
}
.price {
  font-size: 1.06rem;
  color: #31B87B;
  font-weight: 700;
  letter-spacing: 0.015em;
  background: #E7FBF4;
  border-radius: 8px;
  padding: 4px 18px;
  margin-top: 7px;
}
/* --- TESTIMONIALS --- */
.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F6FCFF;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(49,184,123,0.13);
  padding: 28px 24px 20px 24px;
  min-width: 240px;
  flex: 1 1 340px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #24346e;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.5px solid #D8EEEA;
  position: relative;
  transition: box-shadow 0.22s;
}
.testimonial-card p {
  font-size: 1.11rem;
  color: #22346E;
}
.testimonial-card strong {
  color: #227290;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 9px;
  align-self: flex-end;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(49,184,123,0.17);
}
@media (max-width: 900px) {
  .testimonial-wrapper {
    flex-direction: column;
  }
}
/* --- CTA SECTIONS --- */
.cta-section {
  background: linear-gradient(to top right, #FFF7FF 80%, #F5FBF9 100%);
  border-radius: 16px;
  padding: 36px 20px 30px 24px;
  box-shadow: 0 2px 24px 0 rgba(49,184,123,.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 16px;
}
.cta-section h2 { color: #22346E; margin-bottom: 8px; }
.cta-section .cta.primary {
  margin-top: 16px;
}
/* --- BUTTONS --- */
.cta, .button, button, input[type="submit"], input[type="button"], input[type="reset"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  border: none;
  border-radius: 16px;
  background: #31B87B;
  color: #fff;
  padding: 12px 36px;
  cursor: pointer;
  box-shadow: 0 3px 15px 0 rgba(49,184,123,0.14);
  margin-right: 8px;
  margin-bottom: 10px;
  display: inline-block;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.cta.primary, .button.primary {
  background: #31B87B linear-gradient(to bottom, #31B87B 82%, #71e9bd 100%);
}
.cta.secondary, .button.secondary {
  background: #fff;
  color: #227290;
  border: 1.7px solid #A5DED1;
}
.cta:hover, .cta:focus, .button:hover, .button:focus {
  background: #227290;
  color: #fff;
  box-shadow: 0 8px 23px 0 rgba(34,114,144,0.11);
  transform: translateY(-1px) scale(1.035);
}
.button.secondary:hover, .button.secondary:focus {
  background: #E9F6EE;
  color: #295688;
  border-color: #31B87B;
}
/* --- FAQ / DL --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 10px;
  margin-bottom: 28px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #227290;
  margin-bottom: 4px;
  margin-top: 9px;
}
.faq-list dd {
  font-size: 1rem;
  color: #295688;
  margin-left: 10px;
}
/* --- SECTION ELEMENTS --- */
.short-benefits,
.key-benefits,
.company-values,
.tips-list {
  background: #F9FDFB;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(49,184,123,.07);
  padding: 16px 12px;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #227290;
}
.short-benefits li,
.key-benefits li,
.company-values li,
.tips-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 7px;
  line-height: 1.55;
}
.short-benefits li:before,
.key-benefits li:before,
.company-values li:before,
.tips-list li:before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  background: #B8E7D7;
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  left: 0; top: 5px;
}
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.process-timeline li {
  font-size: 1.06rem;
  color: #295688;
  background: #eaf8f5;
  padding: 17px 20px;
  border-radius: 12px;
  margin-bottom: 7px;
  border-left: 5px solid #31B87B;
  position: relative;
}
.process-timeline li strong {
  color: #227290;
}
.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.08rem;
  color: #295688;
  background: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 7px;
  box-shadow: 0 2px 10px 0 rgba(49,184,123,.03);
}
.step-list img {
  width: 35px;
  height: 35px;
  margin-top: 1px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F6FCFF;
  border-radius: 14px;
  padding: 14px 20px;
  margin-top: 14px;
  margin-bottom: 12px;
  color: #295688;
}
.map-placeholder img {
  width: 28px;
  height: 28px;
}
.contact-details {
  background: #F6FCFF;
  border-radius: 13px;
  padding: 14px 22px;
  color: #295688;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px 0 rgba(49,184,123,0.04);
  font-size: 1rem;
}
.contact-details strong {
  color: #22346E;
}
/* --- FOOTER --- */
footer {
  background: #F7FAFC;
  box-shadow: 0 -3px 22px 0 rgba(49,184,123,0.04);
  padding: 32px 0 18px 0;
  margin-top: 80px;
  font-size: 1rem;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 12px 0 18px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #295688;
}
.footer-menu a {
  color: #295688;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  background: #31B87B;
}
footer img {
  height: 32px;
  margin-bottom: 10px;
}
.brand-info {
  color: #386775;
  font-size: 0.97rem;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand-info strong {
  color: #31B87B;
}
/* --- RESPONSIVENESS --- */
@media (max-width: 1000px) {
  .container { max-width: 90vw; }
  .feature-grid, .service-grid { gap: 16px; }
}
@media (max-width: 650px) {
  .feature-grid, .service-grid, .testimonial-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .footer-menu { gap: 12px; }
  .feature-grid li, .service-item, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .container { padding: 0 6px; }
  .card, .testimonial-card { padding: 20px 11px; }
}
@media (max-width: 420px) {
  h1, .hero h1 {
    font-size: 1.48rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .section, section {
    padding: 10px 4px;
    margin-bottom: 18px;
  }
  .cta, .button { font-size: 0.94rem; padding: 7px 16px; }
}
/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe7;
  box-shadow: 0 -3px 18px 0 rgba(49,184,123,.10);
  border-top: 2px solid #B8E7D7;
  z-index: 3000;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  transition: transform 0.3s cubic-bezier(.67,.09,.19,.95), opacity 0.3s cubic-bezier(.7,.3,.2,.7);
  opacity: 1;
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 2px;
}
.cookie-banner .button, .cookie-banner button {
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 12px;
  margin: 0 3px;
}
.cookie-accept {
  background: #31B87B;
  color: #fff;
}
.cookie-accept:hover {
  background: #227290;
}
.cookie-reject {
  background: #E9F6EE;
  color: #295688;
  border: 1.2px solid #31B87B;
}
.cookie-reject:hover {
  background: #f1dad1;
  color: #9a3333;
}
.cookie-settings {
  background: #fff;
  color: #295688;
  border: 1.4px solid #A5DED1;
}
.cookie-settings:hover {
  background: #EAF8F5;
}
@media (max-width: 480px) {
  .cookie-banner {
    font-size: 0.95rem;
    padding: 10px 4px 4px 4px;
    gap: 7px;
 }
 .cookie-banner .cookie-actions {
   flex-direction: column;
   gap: 6px; }
}
/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,52,110,0.12);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(.68,.24,.32,.95);
}
.cookie-modal-overlay.show {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 370px;
  width: 95vw;
  padding: 30px 26px 24px 26px;
  box-shadow: 0 12px 30px 0 rgba(49,184,123,0.19);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalIn 0.36s cubic-bezier(.67,.09,.19,.95);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(16px); } 
  to { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: #22346E;
}
.cookie-modal .cookie-category {
  padding: 12px 0 6px 0;
  font-size: 1rem;
  color: #295688;
  display: flex;
  align-items: center;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #31B87B;
  width: 19px;
  height: 19px;
  margin-right: 9px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 13px;
}
.cookie-modal .close-cookie-modal {
  background: #fff;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  font-size: 1.28rem;
  color: #295688;
  border: none;
  box-shadow: 0 2px 14px 0 rgba(49,184,123,0.10);
  position: absolute;
  top: 11px;
  right: 12px;
  cursor: pointer;
  transition: background 0.11s;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  background: #E9F6EE;
}
/* Essential cookie always enabled, no toggle */
.cookie-category.essential {
  opacity: 0.66;
  font-style: italic;
}
.cookie-category.essential input[type="checkbox"] {
  display: none;
}
/* --- ANIMATIONS & MICRO INTERACTIONS --- */
.cta, .button, .cta.primary, .button.primary {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.card, .service-item, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.23s;
}
.card:hover, .service-item:hover {
  box-shadow: 0 8px 36px 0 rgba(49,184,123,0.16);
  transform: translateY(-3px) scale(1.019);
}
/* --- Z-INDEX LAYERING for overlays/menus/banners --- */
.mobile-menu { z-index: 200; }
.mobile-menu-close { z-index: 210; }
.cookie-banner { z-index: 3000; }
.cookie-modal-overlay { z-index: 3100; }
/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
  background: #E3EFE9;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #B8E7D7;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9dd3c0;
}
/* --- FORMS (contact etc.) --- */
input, textarea, select {
  background: #F9FDFB;
  border: 1.2px solid #B8E7D7;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 1rem;
  color: #22346E;
  margin-bottom: 10px;
}
input:focus, textarea:focus, select:focus {
  border-color: #31B87B;
  background: #fff;
}
/* --- SELECT STYLE --- */
select {
  appearance: none;
  background: #F9FDFB url('data:image/svg+xml,%3csvg fill="%2331B87B" viewBox="0 0 20 20" width="20" height="20" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/%3e%3c/svg%3e') right 12px center no-repeat;
}
/* --- ACCESSIBILITY --*/
.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  border: 0;
}
/* --- PAGE SPECIFIC MINORS --- */
.step-list strong {
  color: #31B87B;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
/******* END ******/
