/* ----------------------------------------------------------
   CSS 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, 
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fafbfc;
  color: #223154;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  border: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  font-size: 16px;
}
th {
  background: #f3f4f6;
  font-weight: bold;
}
tr:nth-child(even) td {
  background: #f7f7fa;
}
button,
input[type=submit] {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* ----------------------------------------------------------
   SCANDINAVIAN CLEAN BRAND COLORS/VARS
---------------------------------------------------------- */
:root {
  --color-primary: #223154;
  --color-secondary: #F5A623;
  --color-accent: #F5F5F5;
  --color-bg: #fafbfc;
  --color-white: #ffffff;
  --color-shadow: 0 2px 12px rgba(34,49,84,0.07);
  --color-border: #e3e6ea;
  --color-text-main: #223154;
  --color-text-muted: #627191;
  --color-focus: #F5A623;
  --color-btn-bg: #223154;
  --color-btn-hover: #324678;
  --color-btn-accent: #F5A623;
}

/* ----------------------------------------------------------
   TYPOGRAPHY (Montserrat and Roboto)
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}
p, li, ul, ol {
  font-size: 1rem;
  color: var(--color-text-main);
}
strong {
  color: var(--color-primary);
}
.testimonial-meta {
  color: var(--color-secondary);
  font-style: italic;
  font-size: 0.97rem;
}

/* ----------------------------------------------------------
   CONTAINER & LAYOUT
---------------------------------------------------------- */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ----------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------- */
header {
  background: var(--color-white);
  box-shadow: var(--color-shadow);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 14px 18px;
  gap: 24px;
}
header a img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  padding: 8px 4px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.cta-btn.primary {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 13px 28px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.10rem;
  font-weight: 700;
  margin-left: 12px;
  transition: background 0.18s, box-shadow 0.23s, color 0.18s;
  box-shadow: 0 2px 7px 0 rgba(34,49,84,0.09);
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: var(--color-btn-hover);
  color: var(--color-secondary);
  box-shadow: 0 4px 14px 0 rgba(34,49,84,0.14);
}
.cta-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 11px 26px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
  margin-top: 12px;
  box-shadow: 0 2px 7px 0 rgba(34,49,84,0.08);
  border: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* ----------------------------------------------------------
   MOBILE NAVIGATION
---------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-size: 2.1rem;
  border-radius: 10px;
  padding: 6px 14px 3px 14px;
  margin-left: 12px;
  border: none;
  transition: background .17s, color .17s;
  z-index: 1101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 245, 245, 0.96);
  box-shadow: 0 6px 40px rgba(34,49,84,0.18);
  z-index: 1102;
  transition: transform 0.28s cubic-bezier(.27,.9,.45,1.23), opacity 0.25s;
  transform: translateX(-100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: var(--color-primary);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 22px 18px 0 0;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--color-secondary);
}
.mobile-nav {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: var(--color-primary);
  padding: 16px 32px 12px 32px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.13s, color 0.14s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-white);
}
/* Hide desktop nav on mobile; show burger */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ----------------------------------------------------------
   HERO & MAIN SECTIONS
---------------------------------------------------------- */
.hero {
  background: linear-gradient(120deg, #F7F8FA 65%, #F5A62315 100%), var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  padding: 60px 0 46px 0;
  margin-bottom: 60px;
  display: flex;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  max-width: 700px;
}

/* ----------------------------------------------------------
   SECTIONS & FLEX PATTERNS
---------------------------------------------------------- */
.section, 
.about-section, 
.values-section, 
.team-section,
.equipment-list, 
.technology-analysis, 
.analysis, 
.trends, 
.contact-section, 
.contact-details, 
.legal-section, 
.confirmation-section, 
.about-preview, 
.cta-section, 
.trust-section, 
.market-news, 
.forecast, 
.comparison-grid {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  display: flex;
}
.section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
/* Card container patterns + grids */
.card-container, .feature-grid, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: var(--color-shadow);
  padding: 32px 28px 28px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-width: 260px;
}
.feature-grid {
  gap: 32px;
  flex-direction: row;
  justify-content: space-between;
}
.feature-column {
  background: var(--color-accent);
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(34,49,84,0.09);
  padding: 28px 20px;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.feature-column:hover {
  box-shadow: 0 3px 18px 0 rgba(34,49,84,0.14);
}
.feature-column img {
  height: 43px;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 27px 0;
}

/* ----------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------- */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 13px 0 rgba(34,49,84,0.06);
  display: flex;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonials h2 {
  margin-bottom: 4px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 36px 18px 28px;
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 1px 10px 0 rgba(34,49,84,0.08);
  margin-bottom: 24px;
  border-left: 5px solid var(--color-secondary);
  min-width: 220px;
  transition: box-shadow 0.19s, border-color 0.19s;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--color-text-main);
  margin-bottom: 0;
  flex: 1;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-meta {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  flex-shrink: 0;
  margin-left: 12px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 3px 18px 0 rgba(34,49,84,0.17);
  border-left: 5px solid var(--color-primary);
}

/* ----------------------------------------------------------
   TABLES
---------------------------------------------------------- */
table {
  width: 100%;
  margin-bottom: 28px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 7px 0 rgba(34,49,84,0.07);
  background: var(--color-white);
}
th, td {
  font-size: 1rem;
  border-bottom: 1px solid #edf0f4;
}
th {
  color: var(--color-primary);
  background: #F8FAFC;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------------
   LISTS
---------------------------------------------------------- */
ul, ol {
  margin-bottom: 24px;
  margin-top: 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--color-text-main);
  line-height: 1.6;
}
li {
  margin-bottom: 12px;
  font-size: 1.01rem;
}
ul li {
  list-style: disc inside;
}
ol li {
  list-style: decimal inside;
}

/* ----------------------------------------------------------
   ADDRESS & CONTACT BLOCKS
---------------------------------------------------------- */
.address, .contact {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 20px 0;
  flex-wrap: wrap;
}
.address img,
.contact img {
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
  filter: grayscale(60%) contrast(1.29);
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
footer {
  margin-top: 80px;
  background: var(--color-accent);
  border-top: 1px solid var(--color-border);
  padding: 0 0 0 0;
  box-shadow: 0 -2px 12px 0 rgba(34,49,84,0.04);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  padding: 30px 18px 18px 18px;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--color-primary);
  padding: 4px 4px;
  font-size: 1.01rem;
  opacity: 0.8;
  border-radius: 7px;
  transition: background 0.14s, color 0.17s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-white);
  opacity: 1;
}
.copyright {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  width: 100%;
  text-align: left;
}
@media (max-width: 940px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 12px 18px 12px;
  }
}

/* ----------------------------------------------------------
   COOKIE CONSENT BANNER
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 -8px 38px rgba(34,49,84,0.16), 0px -2px 8px rgba(34,49,84,0.15);
  border-top: 1px solid var(--color-border);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 12px 18px 12px;
  gap: 20px;
  font-size: 1rem;
  transition: opacity 0.23s, transform 0.25s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px);
}
.cookie-banner-text {
  color: var(--color-primary);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  flex: 1;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner-btns button {
  padding: 9px 18px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner-btns button.primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-banner-btns button.primary:hover,
.cookie-banner-btns button.primary:focus {
  background: var(--color-btn-hover);
  color: var(--color-secondary);
}
.cookie-banner-btns button.secondary {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-banner-btns button.secondary:hover,
.cookie-banner-btns button.secondary:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* ------------------------------------
   COOKIES MODAL
------------------------------------ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,49,84,0.23);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--color-white);
  border-radius: 20px;
  max-width: 430px;
  width: 93vw;
  box-shadow: 0 8px 40px 0 rgba(34,49,84,0.20);
  padding: 36px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transform: translateY(36px);
  opacity: 0;
  transition: transform 0.16s, opacity 0.16s;
}
.cookie-modal-overlay.active .cookie-modal {
  opacity: 1;
  transform: translateY(0);
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.23rem;
  margin-bottom: 8px;
}
.cookie-modal-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  border-radius: 14px;
  background: #e6eaf0;
  position: relative;
  margin-right: 9px;
  transition: background 0.15s;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px; top: 2px;
  border-radius: 50%;
  background: var(--color-primary);
  transition: left 0.16s, background 0.15s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider {
  left: 20px;
  background: var(--color-secondary);
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 8px 18px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  background: var(--color-accent);
  color: var(--color-primary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-actions button.primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-modal-actions button.primary:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal-actions button.close {
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1.12rem;
}
.cookie-modal-actions button.close:hover {
  color: var(--color-primary);
}

/* ------------------------------------
   MISC FORMATTING & MICRO-INTERACTIONS
------------------------------------ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  box-sizing: border-box;
}
section:last-child {
  margin-bottom: 0;
}
.card {
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 22px 0 rgba(34,49,84,0.12);
}
a, button {
  transition: background 0.16s, color 0.15s, box-shadow 0.16s, border 0.13s;
}

/* Content visual hierarchy */
.comparison-grid h2,
.equipment-list h2,
.contact-section h1,
.legal-section h1,
.confirmation-section h1 {
  font-size: 2rem;
}

/* ----------------------------------------------------------
   MEDIA QUERIES/MOBILE
---------------------------------------------------------- */
@media (max-width: 768px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  .section, 
  .about-section, 
  .values-section, 
  .team-section, 
  .equipment-list, 
  .technology-analysis, 
  .analysis, 
  .trends, 
  .contact-section, 
  .contact-details, 
  .legal-section, 
  .confirmation-section, 
  .about-preview, 
  .cta-section, 
  .testimonials, 
  .trust-section, 
  .market-news, 
  .forecast, 
  .comparison-grid {
    padding: 24px 5px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-column {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 20px 10px;
  }
  .hero {
    padding: 36px 0 19px 0;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
  .hero p {
    font-size: 1.01rem;
    margin-bottom: 18px;
  }
  .text-image-section {
    flex-direction: column;
    padding: 10px 0;
    gap: 14px;
    margin-bottom: 32px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 13px 12px 14px 14px;
    font-size: 0.98rem;
    margin-bottom: 15px;
    gap: 9px;
  }
  .testimonials, .cta-section {
    padding: 18px 6px;
    border-radius: 9px;
  }
  .footer-nav {
    gap: 13px;
    flex-wrap: wrap;
  }
  .container {
    padding: 0 5px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    font-size: 0.95rem;
    padding: 10px 4px;
  }
  .cookie-banner-btns {
    flex-direction: column;
    gap: 7px;
  }
  .cookie-modal {
    padding: 22px 7vw 18px 7vw;
    border-radius: 14px;
  }
}

/* Extra small devices fixes */
@media (max-width: 430px) {
  .hero, .testimonials, .cta-section, .section, .content-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ----------------------------------------------------------
   ACCESSIBILITY/FOCUS VISIBLE
---------------------------------------------------------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

/* Hide visually */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ----------------------------------------------------------
   UTILITY, GAPS, SPACING (keep Scandinavian breathing room)
---------------------------------------------------------- */
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-60 { margin-bottom: 60px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-60 { margin-top: 60px; }

/* ----------------------------------------------------------
   PRINT (and prevents overlapping)
---------------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  section, .section, .content-wrapper {
    box-shadow: none !important;
    background: #fff !important;
    padding: 0 !important;
  }
}
