/* --- CSS RESET AND BASES --- */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #F4F7FA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #223154;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  word-break: break-word;
}
:root {
  --primary: #223154;
  --secondary: #BFD732;
  --accent: #F4F7FA;
  --info: #25C9E2;
  --warning: #F6BF26;
  --danger: #FA275A;
  --success: #17D46D;
  --text: #223154;
  --text-light: #FAFBFF;
  --shadow: 0 4px 20px 0 rgba(34,49,84,0.06);
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--secondary);
}
ul, ol {
  margin: 0 0 1.25em 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.subheadline {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
}
strong {
  font-family: inherit;
  font-weight: 800;
  color: var(--primary);
}
.brand-tagline {
  display: block;
  font-size: 1rem;
  color: #484c2e;
  font-weight: bold;
  margin-top: 16px;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 #fffffd, 0 2px 7px rgba(34,49,84,0.1);
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.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;
}
.mt-40 {margin-top: 40px !important;}
.mb-20 {margin-bottom: 20px !important;}
/****** NAVIGATION ******/
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0 3px 16px rgba(34,49,84,0.04);
  z-index: 50;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 0 0;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
  height: 48px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  list-style: none;
  background: none;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  letter-spacing: 0.04em;
  transition: background .2s,color .2s;
}
.main-nav ul li a.active, 
.main-nav ul li a:hover, 
.main-nav ul li a:focus {
  color: #fff;
  background: var(--secondary);
  text-decoration: none;
}
.cta.primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 34px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px 0 rgba(191,215,50,0.16);
  font-size: 1rem;
  margin-left: 18px;
  margin-right: 8px;
  transition: background .22s, color .22s, box-shadow .22s, transform .14s;
  border: 2px solid var(--secondary);
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(34,49,84,0.10);
  transform: translateY(-2px) scale(1.05) rotate(-1deg);
  border: 2px solid var(--primary);
}
.cta.secondary {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 34px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 24px;
  margin-right: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
  transition: background .17s, border .17s, color .17s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cta-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(90deg, #BFD732 4%, #25C9E2 48.5%, #FA275A  100%);
  color: var(--primary);
  padding: 60px 0 50px 0;
  box-shadow: 0 5px 40px 0 rgba(34,49,84,0.06);
  border-radius: 0 0 38px 38px;
  min-height: 250px;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(255,255,255,0.13);
}
.hero .cta.primary {
  margin-top: 20px;
}
/* --- FEATURES AND SERVICE GRIDS --- */
.feature-grid, .service-list, .icon-list, .usps-list, .consultation-benefits, .terms-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.feature-grid li, .service-list li, .icon-list li, .usps-list li, .consultation-benefits li, .terms-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(34,49,84,0.08),0 2px 8px 0 rgba(191,215,50,0.04);
  padding: 24px 22px 18px 22px;
  min-width: 210px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .18s, transform .14s;
  position: relative;
}
.feature-grid li:hover, .service-list li:hover, .icon-list li:hover, .consultation-benefits li:hover, .usps-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(37,201,226,0.10),0 2px 24px 0 rgba(34,49,84,0.11);
  transform: translateY(-3px) scale(1.04);
}
.feature-grid li img, .service-list li img, .icon-list li img, .consultation-benefits li img {
  max-height: 42px;
  width: 42px;
  margin-bottom: 5px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 20px 18px 20px;
  flex: 1 1 240px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: box-shadow .16s, transform .11s;
}
.service-card:hover {
  box-shadow: 0 6px 36px 0 rgba(191,215,50,0.14),0 2px 24px 0 rgba(34,49,84,0.10);
  transform: translateY(-2px) scale(1.03);
}
.service-card img {
  max-height: 38px;
  width: 38px;
}
.service-card .price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 20px;
  padding: 5px 20px;
  margin-top: 8px;
  align-self: flex-end;
}

/* ------- BLOG & ARTICLE LISTS -------- */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.blog-post-list article {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 19px 0 rgba(34,49,84,0.07);
  padding: 22px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .16s, transform .14s;
}
.blog-post-list article:hover {
  box-shadow: 0 5px 33px 0 rgba(37,201,226,0.14);
  transform: translateY(-2px) scale(1.03);
}
.category-tags {
  display: flex;
  flex-direction: row;
  gap: 11px;
  font-size: 0.95rem;
  margin-top: -3px;
}
.category-tags span {
  background: var(--info);
  color: #fff;
  border-radius: 10px;
  padding: 2px 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* --------- CTA SECTIONS --------- */
section.cta {
  background: var(--primary);
  color: #fff;
  border-radius: 32px;
  padding: 52px 20px;
  margin: 40px 0 0 0;
  text-align: center;
  box-shadow: 0 6px 40px 0 rgba(34,49,84,0.08), 0 1px 2px 0 rgba(191,215,50,.1);
}
section.cta h2, section.cta p {
  color: #fff;
  margin-bottom: 20px;
}
section.cta .content-wrapper {
  align-items: center !important;
}

/********* TESTIMONIALS **********/
.testimonials {
  background: #fff;
  border-radius: 22px;
  padding: 40px 20px;
  box-shadow: 0 4px 26px 0 rgba(37,201,226,0.09);
  margin-bottom: 50px;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.testimonial-card {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(34,49,84,0.04);
  color: var(--primary);
  margin: 0 0 20px 0;
  align-items: flex-start;
  gap: 18px;
  min-width: 240px;
  max-width: 660px;
  transition: box-shadow .13s, transform .1s;
  border-left: 6px solid var(--secondary);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(191,215,50,0.10),0 2px 30px 0 rgba(34,49,84,0.10);
  transform: translateY(-2px) scale(1.03);
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  line-height: 1.59;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 4px;
}
.testimonial-card .testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04em;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 3px;
}

/* ---------------- USE CASE GRID (ROZWIAZANIA) --------------- */
.use-case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 19px 0 25px 0;
}
.use-case-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(34,49,84,0.08);
  flex: 1 1 220px;
  min-width: 190px;
  padding: 20px 18px;
  margin-bottom: 18px;
  transition: box-shadow .13s, transform .10s;
}
.use-case-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(37,201,226,0.10);
  transform: translateY(-2px) scale(1.03);
}

/********* FOOTER **********/
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  padding: 58px 0 30px 0;
  margin-top: 46px;
}
footer .container {
  width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .brand-info {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .brand-info img {
  max-width: 160px;
  height: auto;
  margin-bottom: 8px;
}
footer .footer-menu {
  flex: 1 1 144px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .footer-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  margin-bottom: 5px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color .13s;
}
footer .footer-menu a:hover {
  color: var(--info);
}
footer .contact-info {
  flex: 1 1 240px;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
}
footer .social-links {
  flex: 1 1 100px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-top: 9px;
}
footer .social-links a {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  transition: background .13s, transform .14s;
}
footer .social-links a:hover {
  background: var(--secondary);
  transform: scale(1.10);
}
footer .social-links img {
  width: 26px;
  height: 26px;
}

/****** PRIVACY AND OTHER SPECIAL PAGES ******/
.privacy-statement ul,
.gdpr-info ul {
  margin-top: 12px;
  margin-bottom: 22px;
}
.privacy-statement li,
.gdpr-info li {
  margin-bottom: 7px;
}
.privacy-statement {
  background: #fff;
  border-radius: 18px;
  padding: 32px 18px;
  box-shadow: 0 2px 18px 0 rgba(34,49,84,0.11);
  margin-bottom: 38px;
}
.gdpr-info {
  background: #fff;
  border-radius: 18px;
  padding: 32px 18px;
  box-shadow: 0 2px 18px 0 rgba(34,49,84,0.11);
  margin-bottom: 38px;
}

/* ---------- COOKIE CONSENT BANNER (FIXED BOTTOM) ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: #fff;
  color: var(--primary);
  width: 100%;
  box-shadow: 0 -4px 32px rgba(34,49,84,0.16);
  padding: 20px 14px 16px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 1rem;
  animation: slideUpCookieBanner .6s cubic-bezier(.77,.01,.38,.97);
}
@keyframes slideUpCookieBanner {
  0% { transform: translateY(100px); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn:visited {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 7px 22px;
  border: 2px solid var(--primary);
  background: var(--secondary);
  color: var(--primary);
  cursor: pointer;
  transition: background 0.18s,color 0.18s,border 0.18s;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--info);
  color: #fff;
  border: 2px solid var(--info);
}
/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,49,84,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .33s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 10px 40px 0 rgba(37,201,226,0.10);
  max-width: 440px;
  width: 95%;
  padding: 30px 22px 24px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: popUp .3s cubic-bezier(.69,-0.01,.4,1.06);
  position: relative;
}
@keyframes popUp {
  0% { transform: scale(0.7) translateY(60px); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.23rem;
  margin-bottom: 7px;
  color: var(--primary);
}
.cookie-modal .category {
  font-weight: 700;
  color: var(--primary);
  margin-top: 6px;
  margin-bottom: 0;
}
.cookie-modal label.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-top: 6px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--secondary);
  width: 23px;
  height: 23px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 12px;
  top: 11px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.6rem;
  font-family: inherit;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal .close-modal:hover { color: var(--danger); }

/********* MOBILE NAVIGATION *********/
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 1201;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 10px;
  padding: 5px 17px;
  border: 2px solid var(--primary);
  margin-left: auto;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 3px 17px 0 rgba(34,49,84,0.07);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: rgba(34,49,84,0.92);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 24px 0 24px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100vw);
  transition: opacity .32s,transform .27s;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--danger);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 8px;
  border: none;
  padding: 0 18px;
  z-index: 1201;
  box-shadow: 0 2px 7px rgba(37,201,226,0.15);
  transition: background .16s, color .12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: var(--danger);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 65px;
  gap: 0;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.32rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 18px 0 18px 5px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  width: 100%;
  transition: background .16s, color .14s;
  border-radius: 7px;
  margin-bottom: 3px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/********* RESPONSIVE DESIGN *********/
@media (max-width: 1150px) {
  .main-nav ul {
    gap: 10px;
  }
  .footer .content-wrapper,
  footer .content-wrapper {
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 7px;
  }
}
@media (max-width: 900px) {
  .footer .content-wrapper,
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 880px) {
  .brand-info, .contact-info, .footer-menu, .social-links {
    flex: 1 1 100%!important;
    margin-bottom: 12px;
  }
}
@media (max-width: 850px) {
  .service-cards, .feature-grid, .service-list, .icon-list,
  .card-container, .blog-post-list, .usps-list, .consultation-benefits {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .use-case-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .main-nav ul,
  .main-nav .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
    z-index: 1001;
  }
  .main-nav {
    flex-wrap: wrap;
    min-height: 64px;
    height: 64px;
  }
  .container {
    padding: 0 11px;
  }
  .hero {
    padding: 34px 0 34px 0;
    border-radius: 0 0 28px 28px;
    min-height: 110px;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 10px;
  }
  .feature-grid li, .service-list li, .icon-list li {
    min-width: 120px;
    padding: 15px 11px 10px 11px;
    font-size: 0.98rem;
  }
  .service-card {
    min-width: 120px;
    padding: 10px 8px 10px 8px;
    font-size: .9rem;
  }
  .testimonial-card {
    padding: 13px 10px;
    min-width: 99px;
  }
  .use-case-grid > div {
    min-width: 99px;
    padding: 13px 10px;
  }
  .blog-post-list article {
    min-width: 99px;
    padding: 10px 8px;
  }
  section.cta {
    padding: 28px 10px;
    border-radius: 18px;
  }
  .cookie-banner {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    font-size: .98em;
    padding: 15px 5px 10px 5px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
  }
}
@media (max-width: 630px) {
  .footer .content-wrapper,
  footer .content-wrapper {
    padding: 0 4px;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer .footer-menu a {
    font-size: 1rem;
  }
  .footer .social-links {
    margin-top: 8px;
  }
}
@media (max-width: 530px) {
  h1 { font-size: 1.18rem!important; }
  h2 { font-size: 1.02rem!important; }
  .section { padding: 10px 3px; }
  .testimonial-card, .service-card, .feature-grid li, .icon-list li, .use-case-grid > div {
    min-width: 82px;
    padding-left: 3px; padding-right: 3px;
  }
}
@media (max-width: 530px) {
  .mobile-menu {
    padding: 7px 3px 0 2px;
  }
}
/********* Z-INDEX MANAGEMENT, SPACING, ETC *********/
main, footer, .container, .content-wrapper, section, .card, .card-container, .testimonial-card, .service-card {
  position: relative;
  z-index: 1;
}

/********* VISUAL HIERARCHY AND MICRO-ANIMATIONS *********/
section, .card, .service-card, .testimonial-card, .use-case-grid > div, .blog-post-list article {
  transition: box-shadow .17s cubic-bezier(.69,-0.01,.4,1.06), background .13s, transform .09s;
}
section:hover, .card:hover, .service-card:hover, .testimonial-card:hover, .use-case-grid > div:hover, .blog-post-list article:hover {
  z-index: 2;
}
.cta.primary, .btn, .cookie-btn, .cookie-btn.settings {
  transition: background .18s, color .18s, border .17s, box-shadow .13s, transform .12s;
}

/******* OVERRIDE AUTOFILL *********/
input:-webkit-autofill {
  -webkit-box-shadow:0 0 0 1000px #fff inset;
}

/* Hide scrollbars in mobile nav */
.mobile-menu {
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}
