/* == CSS RESET & BASE STYLES == */
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, menu, 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-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #f8f9fa;
  color: #111;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #212529;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #19324C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #57A2A6;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}

/* == TYPOGRAPHY == */
h1, h2, h3, h4, h5, h6 {
  color: #111;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.125rem; }
p, .body-text {
  font-size: 1rem;
  color: #222;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong, b { font-weight: 700; color: #111; }
.text-section h2,
.text-section h3 {
  margin-top: 20px;
}

/* == CONTAINERS & SPACING PATTERNS == */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 32px 0 rgba(25,50,76,0.07);
  position: relative;
}

/* == FLEXBOX LAYOUT HELPERS == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fafbfc;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(25,50,76,.08);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:last-child { margin-bottom: 0; }

.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 28px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(25,50,76,0.10);
  border-left: 5px solid #19324C;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card strong {
  color: #19324C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin-left: 16px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(25,50,76,.16);
  border-left: 5px solid #57A2A6;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* == HEADER & MAIN NAV == */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(25,50,76,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 18px;
  position: relative;
}
.logo, .logo-footer {
  display: flex;
  align-items: center;
  height: 48px;
}
.logo img, .logo-footer img {
  max-height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #19324C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.92;
  padding: 8px 12px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.16s, opacity 0.16s;
}
.main-nav a:hover, .main-nav a.active {
  background: #f3f4f7;
  color: #57A2A6;
  opacity: 1;
}
.cta-btn {
  padding: 12px 32px;
  background: #19324C;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px 0 rgba(25,50,76,0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, filter 0.2s;
  outline: none;
  display: inline-block;
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #57A2A6;
  color: #19324C !important;
  box-shadow: 0 6px 24px 0 rgba(25,50,76,0.18);
  filter: brightness(1.06);
}

/* == BURGER MENU (MOBILE) == */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.15rem;
  color: #19324C;
  padding: 10px;
  cursor: pointer;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #57A2A6;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 130;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27, 31, 34, 0.93);
  transition: transform 0.4s cubic-bezier(.67,0,.31,1), opacity 0.24s;
  transform: translateX(-100%);
  opacity: 0;
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  position: absolute;
  top: 36px;
  right: 34px;
  font-size: 2.15rem;
  color: #fff;
  cursor: pointer;
  z-index: 140;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #57A2A6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 32px 32px 48px;
  gap: 24px;
}
.mobile-nav a {
  color: #fafbfc;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  padding: 12px 0;
  border: none;
  background: none;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  transition: color 0.2s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #57A2A6;
  background: rgba(255,255,255,0.08);
}

/* == HERO SECTION (Homepage) == */
.hero {
  background: linear-gradient(90deg, #fff 60%, #f4f6fa 100%);
  padding: 56px 0 48px 0;
}
.hero .content-wrapper {
  max-width: 640px;
  gap: 24px;
}
.hero h1 {
  font-size: 2.8rem;
  color: #19324C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-shadow: 0 2px 12px #fafbfc;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.17rem;
  color: #222;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero .cta-btn {
  margin-top: 18px;
  font-size: 1.25rem;
  padding: 16px 38px;
}

/* == FEATURES GRID == */
.feature-grid, .features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(25,50,76,0.09);
  flex: 1 1 270px;
  min-width: 220px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, border 0.2s;
  border-left: 4px solid #19324C;
  margin-bottom: 0;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: grayscale(100%) contrast(1.1);
}
.feature h3 {
  color: #19324C;
  font-size: 1.110rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.feature:hover {
  box-shadow: 0 6px 28px 0 rgba(25,50,76,0.19);
  border-left: 4px solid #57A2A6;
}

.features ul.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  list-style: none;
}
.features ul.feature-list li, .steps-list li, .service-list li, .blog-preview-list li {
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(25,50,76,0.05);
  padding: 22px 18px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 180px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.2s, border-color 0.2s;
  border-left: 4px solid #e8e8e8;
}
.features ul.feature-list li:hover {
  box-shadow: 0 2px 20px rgba(25,50,76,0.13);
  border-left: 4px solid #57A2A6;
}

.badge-row {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.badge-row img {
  width: 46px;
  height: auto;
  opacity: 0.82;
}

/* == SERVICE LIST (Oferta, Home, Cennik) == */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.service-list li {
  min-width: 240px;
  flex: 1 1 270px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(25,50,76,.08);
  margin-bottom: 20px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 5px solid #19324C;
  position: relative;
  transition: box-shadow 0.19s, border-color 0.17s;
}
.service-list li img {
  width: 36px;
  height: 36px;
  filter: grayscale(100%) contrast(1.1);
}
.service-list li:hover {
  box-shadow: 0 8px 26px 0 rgba(25,50,76,0.12);
  border-left: 5px solid #57A2A6;
}
.service-list strong {
  color: #222;
  font-weight: 700;
}
.service-list h3 {
  color: #19324C;
  margin-bottom: 0px;
  font-size: 1.08rem;
  font-weight: 700;
}

/* == STEPS / JAK TO DZIAŁA == */
.steps-list, .steps .steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.steps-list .step, .steps-list li {
  background: #fafbfc;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(25,50,76,0.13);
  padding: 24px 18px;
  min-width: 190px;
  flex: 1 1 210px;
  border-left: 4px solid #57A2A6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.steps-list img {
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  filter: grayscale(100%) contrast(1.1);
}
.steps-list h3 {
  color: #19324C;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}

/* == FAQ (accordion) == */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(25,50,76,.08);
  padding: 22px 18px;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.18s;
  border-left: 5px solid #19324C;
}
.faq-item:hover, .faq-item.active {
  box-shadow: 0 8px 28px 0 rgba(25,50,76,0.13);
  border-left: 5px solid #57A2A6;
}
.faq-item h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
  color: #19324C;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p { margin-bottom: 0; }

/* == PRICING (CENNIK) == */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  margin-top: 8px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 1.03rem;
  color: #232a2f;
  font-family: 'Roboto', Arial, sans-serif;
}
.pricing-table th {
  background: #fafbfc;
  color: #19324C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-desc {
  font-size: 1rem;
  margin-bottom: 28px;
  color: #212529;
  line-height: 1.5;
}

/* == BLOG == */
.blog-list .search-bar {
  display: flex;
  margin-bottom: 18px;
  gap: 8px;
}
.search-bar input[type=text] {
  padding: 10px 14px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8fafc;
  color: #222;
  width: 100%;
  transition: border 0.18s;
}
.search-bar input:focus {
  border: 1.5px solid #57A2A6;
  outline: none;
}
.search-bar button {
  padding: 10px 22px;
  background: #19324C;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.19s;
}
.search-bar button:hover, .search-bar button:focus {
  background: #57A2A6;
  color: #19324C;
}
.categories-filter {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.categories-filter span {
  color: #19324C;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.categories-filter a {
  color: #222;
  background: #f3f4f7;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
  font-weight: 500;
}
.categories-filter a.active, .categories-filter a:hover {
  background: #19324C;
  color: #fff;
}
.blog-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.blog-preview-list li {
  min-width: 220px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s;
  cursor: pointer;
  border-left: 5px solid #e8e8e8;
}
.blog-preview-list li:hover {
  border-left: 5px solid #57A2A6;
  box-shadow: 0 8px 18px rgba(25,50,76,0.12);
}

/* == CTA SECTIONS == */
.cta {
  background: #19324C;
  color: #fff;
  border-radius: 24px;
  padding: 48px 20px;
  box-shadow: 0 2px 18px 0 rgba(25,50,76,.18);
  margin-bottom: 60px;
}
.cta h2 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}
.cta .cta-btn {
  background: #57A2A6;
  color: #19324C !important;
  margin-top: 22px;
  font-size: 1.18rem;
  transition: background 0.19s, color 0.18s;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #fff;
  color: #19324C !important;
}

/* == THANK YOU PAGE == */
.thank-you .cta-btn {
  margin-top: 22px;
}

/* == CONTACT SECTION == */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-bottom: 28px;
}
.contact-details > div {
  flex: 1 1 190px;
  font-family: 'Roboto', Arial, sans-serif;
}
.address-block, .email-block, .hours-block {
  margin-bottom: 8px;
}
.address-block strong,
.email-block strong,
.hours-block strong {
  color: #19324C;
  font-family: 'Montserrat', Arial, sans-serif;
}
.map-embed {
  background: #f3f4f7;
  border-radius: 20px;
  padding: 22px;
  min-width: 300px;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* == LEGAL TEXT == */
.legal .text-section {
  background: #fafbfc;
  border-radius: 16px;
  padding: 32px 22px;
  box-shadow: 0 2px 14px 0 rgba(25,50,76,.06);
  margin-top: 8px;
}

/* == FOOTER == */
footer {
  background: #19324C;
  color: #fff;
  padding: 50px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.logo-footer {
  margin-right: 38px;
  max-width: 180px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #f1f5f9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  opacity: 0.93;
  transition: text-decoration 0.1s, color 0.18s;
}
.footer-nav a:hover {
  color: #57A2A6;
  text-decoration: underline;
}
.footer-contact p, .footer-contact a {
  color: #e6ebef;
  font-size: 0.98rem;
  text-decoration: none;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 -2px 22px 0 rgba(25,50,76,0.18);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 16px;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(.7,0,.2,1), opacity 0.22s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__desc {
  max-width: 500px;
  font-size: 1rem;
  color: #20242c;
  margin-right: 22px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  padding: 10px 26px;
  background: #19324C;
  color: #fff;
  cursor: pointer;
  transition: background 0.19s, color 0.18s;
}
.cookie-btn.settings {
  background: #eaeef2;
  color: #19324C;
  border: 1.5px solid #b2c4d9;
}
.cookie-btn.accept {
  background: #57A2A6;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #19324C;
  border: 1.5px solid #19324C;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #19324C;
  color: #fff;
}
/* == COOKIE MODAL == */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2050;
  background: rgba(17,23,37,0.73);
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
  opacity: 0;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
}
.cookie-modal__window {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 36px 0 rgba(30,40,60,0.18);
  max-width: 420px;
  min-width: 300px;
  padding: 38px 36px;
  position: relative;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #19324C;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: #57A2A6;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #57A2A6;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category.essential label {
  font-weight: 700;
  color: #19324C;
}
.cookie-category.essential input[type=checkbox] {
  pointer-events: none;
  opacity: 0.4;
}
.cookie-modal__buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}

/* == UTILITY CLASSES == */
.hide { display: none !important; }
.center { text-align: center; }
.mt-16 { margin-top: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.bt-1 { border-top: 1px solid #e5e7eb; }

/* == ANIMATIONS == */
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes slideOutRight {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}
.mobile-menu.open {
  animation: slideInRight 0.45s cubic-bezier(.7,.17,.35,1);
}
.mobile-menu {
  animation: slideOutRight 0.3s cubic-bezier(.7,0,.2,1) reverse;
}

/* == RESPONSIVENESS == */
@media (max-width: 1200px) {
  .container { max-width: 990px; }
}
@media (max-width: 1000px) {
  .container { max-width: 95vw; }
  .main-nav { gap: 19px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 8px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container { height: 62px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 0;
  }
  .container,
  .content-wrapper {
    padding: 0 11px;
  }
  .hero {
    padding: 28px 0 24px 0;
  }
  .feature-grid, .features-list,
  .steps-list, .service-list, .blog-preview-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .footer .container, .contact-details {
    flex-direction: column;
    gap: 12px;
  }
  .section {
    padding: 25px 10px;
    margin-bottom: 28px;
    border-radius: 9px;
  }
  .card, .feature, .service-list li, .steps-list .step, .blog-preview-list li {
    min-width: unset;
    padding: 18px 12px;
  }
  .badge-row img { width: 34px; }
  .hero .content-wrapper { max-width: 96vw; }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .hero h1 { font-size: 1.6rem; }
  .cta h2 { font-size: 1.3rem; }
  .sections h2, h2 { font-size: 1.2rem; }
  .cookie-modal__window { padding: 20px 9px; }
  footer .container { flex-direction: column; gap: 14px; }
}

/* == SCROLLBARS, SELECTION, ETC. == */
::-webkit-scrollbar { width: 8px; background: #ecf2fa; }
::-webkit-scrollbar-thumb { background: #ccd8e7; border-radius: 8px; }
::-webkit-input-placeholder { color: #9da5b1; }
::placeholder { color: #9da5b1; opacity: 1; }
::selection { background: #57A2A6; color: #fff; }

/* == END OF CSS == */
