/* 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #182024;
  color: #F4F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s linear;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #31A9B8;
}

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

/* COLOR VARIABLES & METALLIC ACCENTS ----------------------------- */
:root {
  --color-primary: #03477B;
  --color-secondary: #31A9B8;
  --color-accent: #F4F7FA;
  --color-bg: #182024;
  --color-bg-dark: #11171a;
  --color-metal: #B9BDC1;
  --color-metal-dark: #747C82;
  --color-black: #101417;
  --color-white: #F4F7FA;
  --color-success: #38C172;
  --color-alert: #E53E3E;
}

/* INDUSTRIAL MODERN STRUCTURE ------------------------------------ */
body {
  background: var(--color-bg);
  color: var(--color-accent);
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  background: var(--color-bg-dark);
  border-bottom: 3px solid var(--color-metal-dark);
  box-shadow: 0 2px 8px 0 rgba(20,25,30,0.08);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  justify-content: space-between;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.025em;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}
.cta-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(93deg, var(--color-primary) 70%, var(--color-metal-dark) 100%);
  color: var(--color-accent);
  padding: 14px 32px;
  border-radius: 32px;
  box-shadow: 0 6px 18px 0 rgba(4,11,20,0.14);
  border: 1.5px solid var(--color-metal-dark);
  letter-spacing: 0.02em;
  margin-left: 20px;
  transition: background 0.15s, box-shadow 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(85deg, var(--color-secondary) 55%, var(--color-metal) 100%);
  color: var(--color-black);
  box-shadow: 0 8px 26px 0 rgba(4,11,20,0.20);
}

/* MOBILE MENU ---------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 34px;
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 12px;
  padding: 8px 14px;
  margin-left: 20px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 70;
  box-shadow: 0 2px 8px 0 rgba(20,25,30,0.11);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: var(--color-black);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(24,32,36, 0.97);
  box-shadow: 8px 0 24px 0 rgba(4,11,20,0.32);
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.82,-0.01,.32,1.03);
  z-index: 90;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.33s cubic-bezier(.77,0,.175,1);
}
.mobile-menu-close {
  background: var(--color-metal-dark);
  color: var(--color-accent);
  border-radius: 8px;
  font-size: 30px;
  padding: 8px 16px;
  margin: 22px 0 12px 22px;
  align-self: flex-start;
  transition: background 0.15s, color 0.15s;
  z-index: 100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-alert);
  color: var(--color-white);
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 32px 26px;
  width: 100%;
}
.mobile-menu .mobile-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu .mobile-nav a:hover, .mobile-menu .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-black);
}

@media (max-width: 1024px) {
  header .container {
    gap: 16px;
  }
  header nav {
    gap: 14px;
  }
  .cta-primary {
    margin-left: 10px;
    padding: 14px 22px;
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  header .container nav,
  header .container .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    z-index: 80;
  }
  .container {
    max-width: 100vw;
  }
  header img {
    margin-right: 10px;
    height: 38px;
  }
}
@media (max-width: 500px) {
  .mobile-menu .mobile-nav a {
    font-size: 18px;
    padding: 9px 0;
  }
  .mobile-menu-close {
    margin-top: 12px;
  }
}

/* MAIN LAYOUT & SECTION SPACING ----------------------------------- */
main {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
  background: var(--color-bg);
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(28,33,36,0.93);
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(26,32,39,0.14);
  position: relative;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  justify-content: flex-start;
}

/* TYPOGRAPHY ------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.035em;
  font-weight: 900;
  color: var(--color-secondary);
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.7rem; /* 43px */
  line-height: 1.12;
}
h2 {
  font-size: 2rem; /* 32px */
  line-height: 1.19;
}
h3 {
  font-size: 1.4rem;
  letter-spacing:.055em;
  color: var(--color-metal);
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  letter-spacing: .031em;
  color: var(--color-secondary);
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem; /* 16px */
  letter-spacing: 0.02em;
  color: var(--color-accent);
  line-height: 1.7;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--color-metal);
  letter-spacing:0.02em;
}
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  color: var(--color-accent);
  line-height: 1.6;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 2px;
  margin-right: 8px;
  background: var(--color-secondary);
  position: absolute;
  left: 0; top: calc(0.6em);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}
ul li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 22px; height: 22px;
}
ol {
  list-style: decimal inside;
  padding-left: 0;
}
ol li {
  padding-left: 8px;
  margin-bottom: 12px;
  color: var(--color-accent);
}
h1 + p, h2 + p, h1 + ul, h2 + ul {
  margin-top: -12px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  section, .section {padding:32px 8px}
}
@media (max-width: 400px) {
  h1 { font-size:1.3rem; }
  h2 { font-size:1.1rem; }
}

/* FLEXBOX SPACING PATTERNS ---------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-dark);
  border-radius: 15px;
  border: 1.5px solid var(--color-metal-dark);
  box-shadow: 0 2px 10px 0 rgba(36,42,53,0.15);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 250px;
  transition: box-shadow 0.18s, border 0.2s;
}
.card:hover, .card:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 20px 0 rgba(49,169,184,0.23);
  z-index: 2;
}
.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;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-radius: 16px;
  box-shadow: 0 6px 16px 0 rgba(22,20,24,0.12);
  padding: 20px;
  margin-bottom: 20px;
  border: 1.5px solid var(--color-secondary);
  position: relative;
  flex-direction: column;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card p {
  color: var(--color-black);
  font-size: 1.06rem;
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px 0 rgba(49,169,184,0.21);
  z-index: 2;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-dark);
  border-radius: 16px;
  padding: 25px 16px;
  margin-bottom: 20px;
  border: 1.5px solid var(--color-metal-dark);
  box-shadow: 0 2px 7px 0 rgba(49,169,184,0.08);
}

/* Responsive Flex Patterns ---------------------------------------- */
@media (max-width: 900px) {
  .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .content-wrapper {
    gap: 18px;
    padding: 0;
  }
  .text-image-section, .industry-grid, .feature-grid, .logos-grid {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    font-size: 0.98rem;
    padding: 18px 10px;
  }
}

/* INDUSTRIAL VISUAL ELEMENTS -------------------------------------- */
.feature-grid , .industry-grid, .logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  justify-content: flex-start;
}
.feature-grid > div, .industry-grid > div {
  background: var(--color-bg-dark);
  border-radius: 14px;
  border: 1.5px solid var(--color-metal-dark);
  box-shadow: 0 2px 7px 0 rgba(49,169,184,0.07);
  flex: 1 1 210px;
  min-width: 210px;
  padding: 22px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.14s, box-shadow 0.14s, background 0.16s;
}
.feature-grid > div:hover, .industry-grid > div:hover {
  border-color: var(--color-secondary);
  background: var(--color-primary);
}
.feature-grid img, .industry-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  filter: grayscale(30%) contrast(1.2);
}
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
  margin: 18px 0 0 0;
}
.logos-grid img {
  width: 56px;
  height: 56px;
  opacity:0.92;
  filter: grayscale(45%) brightness(.98) drop-shadow(1px 2px 6px #22242822);
  background: transparent;
  border-radius: 10px;
}
.

/* BUTTONS, LINKS AND INTERACTIONS --------------------------------- */
a, button {
  transition: background 0.17s, color 0.13s, box-shadow 0.15s, border 0.15s;
}
a {
  cursor: pointer;
}
a:not(.cta-primary):not(.mobile-nav a) {
  color: var(--color-secondary);
  font-weight: 500;
  position: relative;
  transition: color 0.18s;
  border-bottom: 1.3px dotted var(--color-secondary);
  padding-bottom: 2.5px;
}
a:not(.cta-primary):not(.mobile-nav a):hover, a:not(.cta-primary):not(.mobile-nav a):focus {
  color: var(--color-primary);
  border-bottom: 1.3px solid var(--color-primary);
}

/* FOOTER --------------------------------------------------------- */
footer {
  background: var(--color-bg-dark);
  border-top: 3px solid var(--color-metal-dark);
  box-shadow: 0 -2px 8px 0 rgba(20,25,30,0.10);
  padding: 32px 0 20px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer img {
  width: 56px;
  height: auto;
  margin-right: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: var(--color-metal);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-left: 3px solid var(--color-secondary);
  padding-left: 10px;
  transition: color .13s, border-color .13s;
  margin-bottom: 1px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  border-color: var(--color-primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--color-accent);
  font-size: 15px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  footer nav {
    flex-direction: row;
    gap: 20px;
  }
  .footer-contact {font-size:14px}
}
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
}

/* COOKIE CONSENT BANNER & MODAL ----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-bg-dark);
  color: var(--color-accent);
  border-top: 2.5px solid var(--color-metal-dark);
  z-index: 170;
  box-shadow: 0 -6px 24px 0 rgba(10,18,20,0.10);
  padding: 22px 10px 18px 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  min-height: 68px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.35s, transform 0.37s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner-message {
  flex: 1 1 auto;
  max-width: 560px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 15px;
  border-radius: 20px;
  padding: 10px 28px;
  border: 1.5px solid;
  background: var(--color-primary);
  color: var(--color-white);
  margin-right: 2px;
  box-shadow: 0 2px 7px 0 rgba(49,169,184,0.09);
  transition: background 0.2s, color .19s, border .17s;
}
.cookie-banner-btn.accept {
  border-color: var(--color-success);
  background: var(--color-success);
  color: var(--color-black);
}
.cookie-banner-btn.accept:hover, .cookie-banner-btn.accept:focus {
  background: var(--color-secondary);
  border-color: var(--color-primary);
  color: var(--color-accent);
}
.cookie-banner-btn.reject {
  border-color: var(--color-alert);
  background: var(--color-alert);
  color: var(--color-accent);
}
.cookie-banner-btn.reject:hover, .cookie-banner-btn.reject:focus {
  background: var(--color-metal-dark);
  border-color: var(--color-alert);
  color: var(--color-alert);
}
.cookie-banner-btn.settings {
  border-color: var(--color-metal-dark);
  background: transparent;
  color: var(--color-metal);
}
.cookie-banner-btn.settings:hover, .cookie-banner-btn.settings:focus {
  background: var(--color-secondary);
  color: var(--color-black);
  border-color: var(--color-primary);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.97rem;
    padding: 16px 8px 18px 8px;
  }
  .cookie-banner-buttons {gap: 10px}
}

/* COOKIE MODAL --------------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 120%) scale(1.01);
  min-width: 320px;
  max-width: 98vw;
  width: 410px;
  background: var(--color-bg-dark);
  color: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 16px 48px 0 rgba(16,28,35,0.22);
  padding: 26px 22px 18px 22px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s, transform 0.35s cubic-bezier(.82,-0.01,.32,1.03);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.28s, transform 0.29s cubic-bezier(.77,0,.175,1);
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: transparent;
  color: var(--color-white);
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-alert);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  margin-bottom: 18px;
  width: 100%;
}
.cookie-category label {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 23px;
  border-radius: 17px;
  background: var(--color-metal-dark);
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle::before {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--color-accent);
  transition: left 0.20s, background 0.15s;
}
.cookie-toggle:checked::before {
  left: 24px;
  background: var(--color-primary);
}

/* ENFORCE MINIMUM MARGINS/GAPS ------------------------------------ */
.card, .feature-item, .testimonial-card, .card-container > *, .feature-grid > *, .industry-grid > * {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .industry-grid, .logos-grid, .content-grid {
  gap: 20px;
}

/* RESPONSIVE FLEX DIRECTION -------------------------------------- */
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .industry-grid, .logos-grid {
    flex-direction: column !important;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card {
    font-size: 0.99rem;
  }
}

/* MICRO-INTERACTIONS & EFFECTS ----------------------------------- */
.card, .feature-grid > div, .industry-grid > div, .testimonial-card, .feature-item {
  will-change: box-shadow, border, background, transform;
}
.card:hover, .feature-grid > div:hover, .industry-grid > div:hover, .testimonial-card:hover, .feature-item:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 9px 27px 0 rgba(49,169,184,0.17);
}
.card:active, .feature-grid > div:active, .industry-grid > div:active, .testimonial-card:active, .feature-item:active {
  transform: scale(0.99);
}

/* MISCELLANEOUS -------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-metal-dark);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* UTIL CLASSES --------------------------------------------------- */
.text-center { text-align: center !important; }
.align-center { justify-content: center !important; align-items: center !important; }
.uppercase { text-transform: uppercase; }

/* FORM ELEMENTS -------------------------------------------------- */
input, textarea, select {
  background: var(--color-accent);
  color: var(--color-black);
  border: 1.5px solid var(--color-metal-dark);
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 14px;
  margin-bottom: 16px;
  transition: border-color 0.14s;
  width: 100%;
  max-width: 460px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
}

/* TABLES (for any future usage) ---------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-dark);
  color: var(--color-accent);
  border: 1.5px solid var(--color-metal-dark);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
th, td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--color-metal-dark);
}
th {
  background: var(--color-bg);
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
tr:last-child td {
  border-bottom: none;
}

/* PRINT BREAKS --------------------------------------------------- */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { display: none !important; }
}
