/* ----------------------------------------------------------
   CSS RESET & BASE
---------------------------------------------------------- */
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; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
*, *:before, *:after { box-sizing: border-box; }
body { line-height: 1.5; background: #1c2127; color: #F5F7FA; font-family: 'Roboto', Arial, Helvetica, sans-serif; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5em; }
a { color: #47A8BD; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F5F7FA; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; color: inherit;
}

/* ----------------------------------------------------------
   IMPORT FONTS
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* ----------------------------------------------------------
   COLOR VARIABLES (w/ fallback for old browsers)
---------------------------------------------------------- */
:root {
  --color-primary: #25326C;
  --color-secondary: #47A8BD;
  --color-accent: #F5F7FA;
  --color-bg-dark: #181d23;
  --color-bg-medium: #232a33;
  --color-bg-metal: #444c57;
  --color-metallic: #a6b0bb;
  --color-text-light: #F5F7FA;
  --color-text-dark: #232a33;
  --color-danger: #dc3545;
  --color-success: #31c48d;
  --shadow-main: 0 8px 32px rgba(22,28,36,.45);
  --shadow-card: 0 2px 10px rgba(18, 23, 34, 0.22);
  --border-radius: 9px;
  --z-mobile-menu: 1000;
  --z-cookie: 1200;
}

/* ----------------------------------------------------------
   TYPOGRAPHY (INDUSTRIAL MODERN)
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-accent);
  letter-spacing: 0.01em;
  font-weight: 900;
  line-height: 1.15;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: bold; }
h4, h5, h6 { font-size:1rem; font-weight: 700; }
p, ul, ol, li, input, textarea, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--color-text-light);
  font-size: 1rem;
}
p { margin-bottom: 13px; }
strong, b {
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------------
   CONTAINERS AND STRUCTURE
---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

main {
  min-height: 70vh;
}
section {
  width: 100%;
  background: none;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  background: var(--color-bg-medium);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  padding: 36px 32px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.background-highlight {
  background: var(--color-primary);
  border-left: 6px solid var(--color-secondary);
}
.stats {
  font-size: 1.08rem;
  color: var(--color-metallic);
  margin-top: 14px;
  font-weight: 500;
}

/* ----------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------- */
.main-header {
  width: 100%;
  background: var(--color-bg-dark);
  box-shadow: 0 2px 10px rgba(22, 28, 36, 0.12);
  position: sticky; top: 0; left: 0; z-index: 10;
}
.main-header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
  z-index: 2;
}
.logo img {
  max-height: 44px;
  filter: brightness(1.25) drop-shadow(0 1px 0 #19202a);
  transition: filter 0.15s;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
}
.main-nav a {
  display: block;
  padding: 8px 0;
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  background: none;
}
.cta-primary {
  margin-left: 28px;
  background: linear-gradient(90deg,var(--color-secondary) 80%,#5890a4 95%);
  color: var(--color-primary);
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 7px;
  padding: 13px 36px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(71,168,189,0.12),0 1px 0 #1a2b40;
  transition: background 0.22s, color 0.18s, transform 0.15s;
  outline: none;
  position: relative;
  z-index: 2;
}
.cta-primary:hover, .cta-primary:focus {
  color: var(--color-accent);
  background: var(--color-primary);
  border: 2px solid var(--color-secondary);
  transform: translateY(-1px) scale(1.032);
}
.cta-secondary {
  margin-top: 28px;
  color: var(--color-secondary);
  background: transparent;
  border: 2px solid var(--color-secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 13px 32px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  transform: translateY(-1px) scale(1.028);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-secondary);
  cursor: pointer;
  z-index: var(--z-mobile-menu);
  outline: none;
  width: 48px;
  height: 48px;
  padding: 0;
  margin-left: 25px;
  border-radius: 6px;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-bg-metal);
  color: var(--color-accent);
}

/* ----------------------------------------------------------
   MOBILE SLIDING BURGER MENU
---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,29,35,0.97);
  z-index: var(--z-mobile-menu);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 26px 28px 8px 0;
  cursor: pointer;
  z-index: var(--z-mobile-menu);
  padding: 0 3px;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-bg-metal);
  color: var(--color-danger);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 26px;
  align-items: center;
}
.mobile-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 13px 0;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  transition: background 0.14s, color 0.14s;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-bg-metal);
  color: var(--color-accent);
}

@media (max-width: 992px) {
  .main-nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/* ----------------------------------------------------------
   FLEXBOX LAYOUT FEATURES
---------------------------------------------------------- */
.features-grid, .service-grid, .job-offers-grid, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container {
  gap: 24px;
}
.card {
  position: relative;
  background: var(--color-bg-medium);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 22px;
  min-width: 250px;
  flex: 1 1 300px;
  transition: box-shadow 0.21s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px rgba(71,168,189,0.18);
  transform: translateY(-4px) scale(1.016);
}

.content-grid {
  gap: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(37,50,108,0.07);
  flex-direction: column;
  font-size: 1.08rem;
  position: relative;
}
.testimonial-card p { color: var(--color-text-dark); font-size: 1.1rem; }
.testimonial-details {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 4px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Strefa Klienta, Kontakt Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--color-bg-metal);
  padding: 16px 20px;
  border-radius: var(--border-radius);
  margin: 16px 0;
}
.contact-info img { margin-right: 9px; vertical-align: middle; display: inline-block; }

/* ----------------------------------------------------------
   TABLES (Fleet page)
---------------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-dark);
  margin: 22px 0 18px 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
thead { background: var(--color-primary); }
th, td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-metallic);
}
th { font-size: 1.1rem; color: var(--color-accent); }
td { font-size: 1rem; color: var(--color-accent); }
tr:last-child td { border-bottom: none; }

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
footer {
  width: 100%;
  background: var(--color-bg-dark);
  padding: 32px 0 0 0;
  box-shadow: 0 -2px 8px 0 #232a3331;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-navigation a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-navigation a:hover,
.footer-navigation a:focus {
  color: var(--color-accent);
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.footer-brand img { max-height: 38px; }
.footer-brand span { font-size: 0.95rem; color: var(--color-metallic); }
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.footer-social a img {
  filter: grayscale(1) brightness(1.15);
  transition: filter 0.18s;
  height: 34px;
  width: 34px;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
}

/* ----------------------------------------------------------
   BUTTONS, FORMS, ELEMENTS
---------------------------------------------------------- */
button {
  outline: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  padding: 11px 26px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.16s;
  letter-spacing: 0.03em;
}
button:hover, button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.026);
}
input, textarea {
  background: var(--color-bg-metal);
  border: 1px solid var(--color-metallic);
  color: var(--color-accent);
  padding: 12px;
  border-radius: 7px;
  margin-bottom: 13px;
  font-size: 1rem;
  width: 100%;
  max-width: 530px;
  transition: border 0.14s;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--color-secondary);
  outline: none;
}

/* ----------------------------------------------------------
   INDUSTRIAL MODERN DETAILS
---------------------------------------------------------- */
.feature {
  background: var(--color-bg-metal);
  border: 1.5px solid var(--color-metallic);
  border-left: 6px solid var(--color-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  flex: 1 1 200px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.16s;
}
.feature img {
  width: 32px; height: 32px; margin-bottom: 7px;
  filter: grayscale(0.18) contrast(1.1);
}
.feature:hover, .feature:focus-within {
  border-left: 6px solid var(--color-primary);
  box-shadow: 0 12px 25px rgba(71,168,189,0.15);
}

.service-grid, .job-offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.service, .job-offer {
  background: var(--color-bg-metal);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 26px 21px;
  min-width: 250px;
  flex: 1 1 250px;
  border-left: 5px solid var(--color-secondary);
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border 0.15s, transform 0.14s;
}
.service:hover, .job-offer:hover {
  box-shadow: 0 10px 29px rgba(71,168,189,0.17);
  border-left: 5px solid var(--color-primary);
  transform: scale(1.019);
}

.recruitment-steps ol {
  counter-reset: li;
  padding-left: 0;
  list-style: none;
}
.recruitment-steps li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.recruitment-steps li:before {
  counter-increment: li;
  content: counter(li) ".";
  position: absolute;
  left: 0; top: 0;
  color: var(--color-secondary);
  font-weight: 800;
  font-size: 1.15em;
}

.next-steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ----------------------------------------------------------
   COOKIE CONSENT BANNER
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-bg-metal);
  color: var(--color-text-light);
  z-index: var(--z-cookie);
  box-shadow: 0 -2px 12px #222d375e;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 10px 24px 10px;
  gap: 16px;
  transition: transform 0.4s, opacity 0.3s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  color: var(--color-accent);
  font-size: 1.03rem;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.cookie-banner button {
  font-size: 1rem;
  font-weight: 700;
  border-radius: 7px;
  min-width: 135px;
  padding: 12px 22px;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.17s, color 0.17s, transform 0.13s;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-success);
  color: #fff;
}
.cookie-banner .reject {
  background: #282d31;
  border: 2px solid var(--color-danger);
  color: var(--color-danger);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--color-danger);
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Cookie Modal */
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,33,39,0.82);
  z-index: calc(var(--z-cookie)+1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: var(--color-bg-dark);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px #232a3386;
  padding: 32px 28px 28px 28px;
  width: 100%;
  max-width: 400px;
  color: var(--color-text-light);
  animation: cookieModalIn .35s cubic-bezier(.15,1.2,.52,1) 1;
}
@keyframes cookieModalIn {
  from { opacity:0; transform:scale(0.78) translateY(65px); }
  to { opacity:1; transform:none; }
}
.cookie-modal h3 {
  color: var(--color-secondary);
  font-size: 1.17rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-prefs-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 22px;
}
.cookie-prefs-category {
  background: var(--color-bg-metal);
  border-radius: 6px;
  padding: 13px 12px 13px 17px;
}
.cookie-prefs-category label { font-weight: 700; }
.cookie-toggle {
  appearance: none;
  width: 32px;
  height: 18px;
  background: #888e98;
  border-radius: 22px;
  position: relative;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  margin-left: 14px;
  transition: background 0.13s;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  width: 15px; height: 15px;
  top: 1.5px; left: 2px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 1px 3px #222a36ad;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 15px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close {
  background: transparent;
  color: var(--color-danger);
  font-size: 1.6rem; font-weight: 700; border:none;
  position: absolute; top: 8px; right: 13px;
}

/* ----------------------------------------------------------
   RESPONSIVE DESIGN (Mobile First)
---------------------------------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 97%; }
}
@media (max-width: 992px) {
  .main-header .container,
  footer .container { flex-direction: column; align-items: stretch; }
  .footer-navigation, .footer-brand, .footer-social {
    justify-content: center; text-align: center;
    margin-bottom: 14px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.32rem; }
  .container { padding-left: 9px; padding-right: 9px; }
  .main-header .container { height: auto; padding: 14px 3vw 14px 3vw; flex-direction: row; }
  .content-wrapper { padding: 20px 10px; }
  .features-grid, .service-grid, .job-offers-grid, .card-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-navigation { flex-direction: column; gap: 7px; }
  .footer-brand { flex-direction: column; gap: 5px; }
  .footer-social { justify-content: center; }
}
@media (max-width: 500px) {
  .content-wrapper, .section { padding: 17px 2.5vw; }
  .card, .feature, .service, .job-offer { padding: 17px 7px; }
  .contact-info { padding: 12px 6px; }
  .cookie-modal { padding: 18px 7px; }
  .cookie-modal h3 { font-size: 1rem; }
}
.text-image-section {
  flex-direction: row;
}
@media (max-width: 768px){
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 19px; }
}

/* Ensure min spacing everywhere */
section, .section, .card, .feature, .service, .testimonial-card { margin-bottom: 20px; }
main section:last-child, .section:last-child { margin-bottom: 0; }

/* Avoid card/content overlap always! */
.card, .feature, .service, .job-offer, .testimonial-card {
  margin-bottom: 20px;
}
.features-grid > *, .service-grid > *, .job-offers-grid > *, .card-container > *, .card-grid > *, .content-grid > * {
  margin-bottom: 0; /* spacing via flex gap */
}

/* Always use gap between content elements for breathing room */
.stats, .next-steps, .contact-info, .testimonial-details, ul, ol {
  margin-bottom: 18px;
}

/* Hide visually, but keyboard focusable (for modals etc.) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------
   MICRO-INTERACTIONS & ANIMATIONS
------------------------------------------------------------- */
.card, .feature, .service, .job-offer, .testimonial-card, .cta-primary, .cta-secondary, button, .mobile-nav a {
  transition-property: box-shadow, background, border, color, transform;
  transition-duration: 0.18s,0.18s,0.14s,0.16s,0.15s;
  transition-timing-function: cubic-bezier(.35,1.1,.52,1);
}
.card:hover, .feature:hover, .service:hover, .job-offer:hover,
.card:focus-within, .feature:focus-within, .service:focus-within, .job-offer:focus-within {
  box-shadow: 0 10px 32px rgba(71,168,189,0.13);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 26px rgba(37,50,108,0.11);
  border-left: 4px solid var(--color-primary);
}

/* -------------------------------------------------------------
   UTILITIES
------------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.rounded { border-radius: var(--border-radius) !important; }
.shadow { box-shadow: var(--shadow-main) !important; }

/* -------------------------------------------------------------
   PRINT
------------------------------------------------------------- */
@media print {
  header, nav, .mobile-menu, .cookie-banner, footer { display: none !important; }
  .container, main, section, .content-wrapper {
    background: none; color: #121212; box-shadow: none;
    padding: 0; margin: 0;
  }
}
