/* =====================
   SCANDINAVIAN CLEAN STYLE
   VoltBuch | style.css
   ===================== */

/* --- CSS RESET & BASELINE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFA;
  color: #1D2632;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #204E8A;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus-visible {
  outline: 2px solid #F9C846;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #204E8A;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1rem; margin-bottom: 12px; }
p, li, dd {
  font-size: 1rem;
  color: #354150;
  margin-bottom: 16px;
}
strong { font-weight: 700; }

/* Typography scale for display */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 4px 16px -6px rgba(32,78,138,0.09);
  position: sticky;
  top: 0; left: 0;
  width: 100%;
  z-index: 1010;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  min-height: 62px;
  gap: 24px;
}
header img[alt='VoltBuch'] {
  width: 130px;
  height: auto;
  margin-right: 32px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #204E8A;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F9C846;
  color: #204E8A;
}
.main-nav .nav-cta {
  background: #204E8A;
  color: #fff;
  border-radius: 6px;
  padding: 7px 20px;
  box-shadow: 0 2px 8px -2px rgba(32, 78, 138, 0.14);
  margin-left: 16px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus {
  background: #F9C846;
  color: #204E8A;
  box-shadow: 0 2px 16px -4px #F9C84644;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #204E8A;
  cursor: pointer;
  z-index: 1102;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EBEFF3;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.66,.11,.46,1.08);
  box-shadow: -10px 0 16px -6px #204e8a17;
  display: flex;
  flex-direction: column;
  padding: 0 36px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  border: none;
  background: none;
  font-size: 2.2rem;
  color: #204E8A;
  margin-top: 28px;
  margin-bottom: 30px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #EBEFF3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #204E8A;
  padding: 12px 5px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9C846;
  color: #204E8A;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
  background: #EBEFF3;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 36px -16px #204e8a13;
  min-height: 280px;
  margin-bottom: 60px;
  padding: 40px 0 48px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 650px;
}
.hero h1 {
  color: #204E8A;
  font-size: 2.5rem;
}
.hero p {
  color: #354150;
  font-size: 1.18rem;
  margin-bottom: 0;
}

/* --- BUTTONS --- */
.btn-primary, .btn-primary:visited {
  display: inline-block;
  background: #204E8A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 12px 32px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 2px 12px -4px #204e8a29;
  transition: background 0.22s, color 0.22s, box-shadow 0.25s, transform 0.19s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F9C846;
  color: #204E8A;
  box-shadow: 0 3px 18px -7px #F9C84666;
  outline: none;
  transform: translateY(-2px) scale(1.015);
}

/* --- SECTION LAYOUTS & SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px -8px #204e8a13;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px -8px #204e8a26;
  transform: translateY(-2px) scale(1.012);
}
.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;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 14px -4px #204e8a12;
  margin-bottom: 20px;
  max-width: 540px;
  min-width: 210px;
  flex: 1 1 310px;
  color: #1D2632;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURES GRID (INDEX & SERVICES) --- */
.features-grid, .benefits-icons {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.features-grid > div, .benefits-icons > div {
  background: #fff;
  box-shadow: 0 2px 12px -5px #204e8a15;
  border-radius: 10px;
  padding: 28px 18px 22px 18px;
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.17s;
}
.features-grid > div:hover, .benefits-icons > div:hover {
  box-shadow: 0 6px 26px -8px #204e8a2f;
}
.features-grid img, .benefits-icons img {
  width: 38px;
  height: 38px;
}
.features-grid h3, .benefits-icons h3 {
  margin-bottom: 6px;
  font-size: 1.11rem;
}
.features-grid p,
.benefits-icons p {
  margin-bottom: 0;
  color: #354150;
}

/* --- SERVICES & BLOG GRIDS --- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.services-list > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px -3px #204e8a12;
  flex: 1 1 220px;
  min-width: 180px;
  padding: 24px 15px 18px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 10px;
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px -5px #204e8a15;
  flex: 1 1 230px;
  min-width: 210px;
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.18s, transform 0.18s;
}
.blog-card:hover {
  box-shadow: 0 8px 32px -8px #204e8a26;
  transform: translateY(-2px) scale(1.012);
}
.blog-card h2 {
  color: #204E8A;
  font-size: 1.18rem;
  margin-bottom: 9px;
}
.blog-card p {
  color: #354150;
  margin-bottom: 14px;
}
.blog-card a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #204E8A;
  font-weight: 500;
  transition: color 0.17s;
}
.blog-card a:hover {
  color: #F9C846;
}

.blog-category-filter {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}
.blog-category-filter a {
  color: #204E8A;
  background: #EBEFF3;
  border-radius: 5px;
  padding: 5px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  transition: background 0.16s, color 0.17s;
}
.blog-category-filter a:hover, .blog-category-filter a:focus {
  background: #F9C846;
  color: #204E8A;
}

.featured-posts {
  margin-top: 30px;
}
.featured-posts h3 { font-size: 1.15rem; margin-bottom: 10px; }
.featured-posts ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.featured-posts li a {
  color: #204E8A;
  text-decoration: underline;
  transition: color 0.17s;
}
.featured-posts li a:hover { color: #F9C846; }

/* --- TESTIMONIALS / OPINIE --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.testimonial-card {
  background: #fff;
  color: #204E8A;
  border-radius: 12px;
  box-shadow: 0 4px 20px -6px #204e8a19;
  border-left: 6px solid #F9C846;
  font-size: 1.03rem;
  margin-bottom: 20px;
  padding: 22px 26px 16px 20px;
  flex: 1 1 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 220px;
  max-width: 410px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px -7px #204e8a28;
  transform: translateY(-2px) scale(1.018);
}
.testimonial-card p {
  color: #354150;
  margin-bottom: 0;
  font-size: 1.04rem;
}
.testimonial-card span {
  color: #204E8A;
  font-size: 0.99rem;
}
.customer-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 14px;
}
.customer-logos img {
  width: 38px; height: 38px;
  filter: grayscale(15%) contrast(1);
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  margin-top: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px -3px #204e8a13;
  overflow: hidden;
}
.pricing-table caption {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #204E8A;
  font-weight: 600;
  padding: 16px;
}
.pricing-table thead {
  background: #F9C846;
}
.pricing-table th, .pricing-table td {
  font-size: 1rem;
  padding: 13px 18px;
  text-align: left;
  white-space: nowrap;
}
.pricing-table th {
  font-weight: 600;
  color: #204E8A;
}
.pricing-table tr {
  border-bottom: 1px solid #EBEFF3;
}
.pricing-table tbody tr:last-child {
  border-bottom: 0;
}

/* --- TABS --- */
.services-tabs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  margin-left: -8px;
}
.services-tabs li {
  background: #EBEFF3;
  color: #204E8A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 8px 19px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
}
.services-tabs li:hover,
.services-tabs li.active {
  background: #F9C846;
  color: #204E8A;
  box-shadow: 0 2px 12px -5px #F9C84682;
}

/* --- FAQ, ACCORDION & DEFINITION LISTS --- */
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #204E8A;
  margin-top: 16px;
  margin-bottom: 5px;
  cursor: pointer;
}
dd {
  margin-bottom: 13px;
  padding-left: 6px;
  color: #354150;
  border-left: 3px solid #F9C846;
  padding-top: 3px;
}
.faq-accordion dt {
  transition: color 0.13s;
}
.faq-accordion dt.open {
  color: #F9C846;
}
.faq-accordion dd {
  transition: max-height 0.18s, opacity 0.16s;
  max-height: 300px;
  opacity: 1;
  margin-bottom: 16px;
}
.faq-accordion dd.closed {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 6px;
  border-left: 0;
  margin-bottom: 0;
}

/* --- TEAM / CERTIFICATIONS --- */
.team-certifications ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}
.team-certifications li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 1px 10px -4px #204e8a13;
  padding: 10px 14px;
  font-size: .97rem;
}

/* --- CONTACT DETAILS --- */
.contact-details {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px -5px #204e8a15;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
  max-width: 340px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
  color: #354150;
}
.contact-details img {
  width: 22px; height: 22px; margin-right: 5px;
}
.contact-details a {
  color: #204E8A;
  text-decoration: underline;
  font-weight: 500;
}

.map-embed {
  background: #EBEFF3;
  border-radius: 8px;
  padding: 16px 16px 15px 16px;
  margin-bottom: 10px;
  font-size: .98rem;
  color: #354150;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1px solid #EBEFF3;
  padding: 45px 0 18px 0;
  font-size: 0.97rem;
  margin-top: 40px;
}
.footer-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-row > a img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}
.footer-row > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-row nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-row nav a {
  color: #204E8A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 4px 0;
  border-radius: 3px;
  transition: background 0.16s, color 0.17s;
}
.footer-row nav a:hover, .footer-row nav a:focus {
  background: #F9C846;
  color: #204E8A;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #354150;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social a {
  padding: 8px;
  border-radius: 50%;
  background: #EBEFF3;
  transition: background 0.17s;
}
.footer-social a:hover {
  background: #F9C846;
}
.footer-social img {
  width: 22px; height: 22px;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #898989;
  font-size: 0.93rem;
  padding-top: 8px;
  border-top: 1px solid #EBEFF3;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 18px -7px #204e8a11;
  padding: 20px 12px 18px 12px;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border-top: 3px solid #F9C846;
  opacity: 1;
  transition: transform 0.35s, opacity 0.25s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 22px;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 9px -4px #204e8a17;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
}
.cookie-banner .accept-cookies {
  background: #204E8A;
  color: #fff;
}
.cookie-banner .accept-cookies:hover,
.cookie-banner .accept-cookies:focus {
  background: #15406D;
  color: #F9C846;
}
.cookie-banner .reject-cookies {
  background: #F9C846;
  color: #204E8A;
}
.cookie-banner .reject-cookies:hover,
.cookie-banner .reject-cookies:focus {
  background: #EBEFF3;
}
.cookie-banner .settings-cookies {
  background: #EBEFF3;
  color: #204E8A;
}
.cookie-banner .settings-cookies:hover,
.cookie-banner .settings-cookies:focus {
  background: #F9C846;
}

.cookie-modal-overlay {
  content: '';
  position: fixed;
  z-index: 1400;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30, 50, 70, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 42px -12px #204e8a35;
  padding: 34px 32px 22px 32px;
  max-width: 410px;
  width: 94vw;
  z-index: 1410;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: popupAppear 0.36s cubic-bezier(.68,1.14,.44,0.98);
}
@keyframes popupAppear {
  from { transform: translateY(60px) scale(0.98); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #204E8A;
  margin-bottom: 16px;
}
.cookie-modal .cookie-categories {
  width: 100%;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 1rem;
  color: #204E8A;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: #204E8A;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-category .category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal .cookie-category .category-info {
  color: #354150;
  font-size: 0.97rem;
}
.cookie-modal .cookie-category.essential label, .cookie-modal .cookie-category.essential .category-label {
  color: #222;
  font-weight: bold;
  opacity: 1;
}
.cookie-modal .cookie-category.essential input[type=checkbox] {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  background: #204E8A;
  color: #fff;
  box-shadow: 0 2px 8px -4px #204e8a19;
  transition: background 0.18s;
}
.cookie-modal button.settings-save {
  background: #204E8A;
  color: #fff;
}
.cookie-modal button.settings-save:hover { background: #15406D; color: #F9C846; }
.cookie-modal button.settings-cancel {
  background: #EBEFF3;
  color: #204E8A;
}
.cookie-modal button.settings-cancel:hover {
  background: #F9C846;
  color: #204E8A;
}

/* --- GENERAL LISTS --- */
ul, ol {
  margin-bottom: 20px;
}
ul li, ol li {
  margin-left: 18px;
  margin-bottom: 7px;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: #F9C846;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  top: -1px;
}
ol li:before {
  display: none;
}

/* --- RESPONSIVE DESIGN / MOBILE ADAPTATION --- */
@media (max-width: 1023px) {
  .hero {
    padding: 30px 0 36px 0;
    min-height: 150px;
  }
}
@media (max-width: 900px) {
  .footer-row, .testimonial-slider, .features-grid, .benefits-icons, .content-grid, .card-container, .services-list, .blog-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-row > a, .footer-social {
    margin-bottom: 16px;
  }
  .footer-row {
    gap: 18px;
  }
  .section, section {
    padding: 30px 8px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 10px 10px;
    padding: 18px 0 24px 0;
    min-height: 100px;
  }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .footer-row > a img {margin-bottom: 3px;}
  .footer-social {
    margin-bottom: 0;
  }
  .testimonial-slider, .content-grid, .card-container, .features-grid, .benefits-icons, .services-list, .blog-grid {
    gap: 12px;
  }
  .cookie-banner {
    font-size: 0.97rem;
    padding: 14px 4px 10px 4px;
  }
  .cookie-modal {
    padding: 14px 6vw 10px 6vw;
    max-width: 96vw;
  }
  .footer-bottom {
    padding-top: 5px;
    font-size: 0.89rem;
  }
}

/* --- ACCESSIBILITY & MICRO-INTERACTIONS --- */
button:focus-visible, a:focus-visible {
  outline: 2px solid #F9C846;
  outline-offset: 2px;
  z-index: 20;
}
.card, .blog-card, .features-grid > div, .testimonial-card, .benefits-icons > div {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .blog-card:hover, .features-grid > div:hover, .testimonial-card:hover, .benefits-icons > div:hover {
  box-shadow: 0 7px 24px -8px #204e8a24;
  transform: translateY(-2px) scale(1.011);
}

/* --- MISC / UTILS --- */
.mt-4 {margin-top: 32px !important;}
.mb-4 {margin-bottom: 32px !important;}
.text-center {text-align: center !important;}
.text-right {text-align: right !important;}

/* --- PRINT --- */
@media print {
  header, nav, footer, .cookie-banner, .mobile-menu {display:none !important;}
  section, .container {box-shadow:none !important; background:#fff !important;}
  body {color:#000 !important;}
}

/* ==================
   END OF stylesheet
   ================== */
