/* --- RESET & BASE TYPOGRAPHY --- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #17344A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #33A37B;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
strong { font-weight: bold; }

/* --- RESPONSIVE CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- TYPOGRAPHY SCALE & HIERARCHY --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #181818;
  line-height: 1.13;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  line-height: 1.2;
  margin-bottom: 22px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2f2f2f;
}
p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #292929;
  margin-bottom: 12px;
}
.section p:last-child, .section ul:last-child {
  margin-bottom: 0;
}


/* --- SECTION, WRAPPERS & LAYOUT FLEXBOX --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.tools-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(20,20,20,0.07);
  padding: 32px 28px;
  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;
}

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

/* --- FEATURE ICONS & BLOCKS (usually inside .feature-grid) --- */
.feature-grid > div {
  background: #fcfcfc;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(23,52,74,0.11);
  flex: 1 1 240px;
  padding: 24px 18px 22px 18px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 3px 16px rgba(23,52,74,0.18);
}
.feature-grid img {
  width: 32px;
  margin-bottom: 8px;
  filter: grayscale(1) brightness(0.35);
}

/* --- BUTTONS & CALL TO ACTION --- */
.btn-primary {
  display: inline-block;
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 12px rgba(23,52,74,0.08);
  letter-spacing: 0.1px;
  margin-top: 18px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #33A37B;
  color: #181818;
  box-shadow: 0 5px 24px rgba(23,52,74,0.17);
  outline: none;
}

/* --- NAVIGATION --- */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,44,44,0.07);
  position: relative;
  z-index: 1001;
}
.main-nav a img {
  height: 42px;
  vertical-align: middle;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin: 0 18px;
}
.main-nav li {
  display: flex;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
  transition: color 0.18s, border-bottom 0.18s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #17344A;
  border-bottom: 2px solid #33A37B;
}
.main-nav .btn-primary {
  margin: 0 0 0 24px;
  padding: 10px 26px;
  font-size: 1rem;
}

/* --- HAMBURGER MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 24px;
  background: none;
  color: #222;
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #33A37B;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 52, 74, 0.97);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.82,.08,.44,.92);
  z-index: 1500;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 1502;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: #33A37B; outline: none; }
.mobile-nav {
  margin: 90px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 0 34px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(51,163,123,0.17);
  width: 100%;
  transition: color 0.22s, background 0.22s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #33A37B;
  background: rgba(255,255,255,0.06);
  outline: none;
}

/* --- MAIN & SECTIONS APPEARANCE --- */
main {
  flex: 1 1 auto;
  padding-top: 20px;
  background: #fff;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

/* --- TESTIMONIAL CARD --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  border-radius: 14px;
  background: #f7f7f8;
  box-shadow: 0 2px 10px rgba(44,44,44,0.06);
  min-width: 240px;
  max-width: 420px;
  flex: 1 1 275px;
  margin-bottom: 20px;
  border-left: 6px solid #17344A;
  transition: box-shadow 0.17s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(23,52,74,0.16);
  border-left-color: #33A37B;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card .testimonial-meta {
  color: #544c3e;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: -10px;
  opacity: 0.8;
}
.testimonial-card img[alt='Note'],
.testimonial-card img[alt='Demi note'] {
  width: 22px;
  display: inline-block;
}

/* --- FOOTER --- */
footer {
  background: #181818;
  color: #fff;
  padding: 48px 0 38px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 300px;
}
.footer-brand img {
  height: 42px;
}
.footer-brand p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus { color: #33A37B; text-decoration: underline; outline: none; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.98rem;
  color: #cacaca;
}
.footer-contact img {
  height: 16px;
  vertical-align: bottom;
  margin-right: 8px;
}

/* --- TEXT & LINK LISTS --- */
ul {
  margin: 0 0 12px 22px;
  list-style: disc inside;
}
ul li, .text-section ul li {
  font-size: 1rem;
  color: #2d2d2d;
  margin-bottom: 10px;
  list-style-type: disc;
}
.text-section ul {
  padding-left: 0;
}
.text-section ul li strong { color: #17344A; }

/* --- DOWNLOAD LINKS --- */
.content-wrapper a[href$='.pdf'] {
  display: inline-block;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-left: 16px;
  background: #ededed;
  color: #17344A;
  border-radius: 20px;
  padding: 4px 18px;
  transition: background 0.12s, color 0.12s;
}
.content-wrapper a[href$='.pdf']:hover {
  background: #33A37B;
  color: #fff;
}

/* --- MISC HELPERS --- */
.text-center { text-align: center !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #181818;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 22px 14px 22px 20px;
  box-shadow: 0 -2px 30px rgba(20,20,20,0.19);
  z-index: 1900;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  transition: transform 0.25s cubic-bezier(.64,.18,.19,.88), opacity 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-banner-btn {
  background: #33A37B;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 21px;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-left: 6px;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.14s, color 0.14s, transform 0.11s;
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  background: #181818;
  color: #33A37B;
  outline: none;
  transform: scale(1.05);
}
.cookie-banner-btn.reject {
  background: #222;
  color: #fff;
}
.cookie-banner-btn.reject:hover { color: #33A37B; }
.cookie-banner-btn.settings {
  background: #fff;
  color: #17344A;
  border: 1px solid #17344A;
}
.cookie-banner-btn.settings:hover {
  background: #17344A;
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2900;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(23,52,74,0.6);
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  display: flex;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 18px;
  min-width: 325px;
  max-width: 95vw;
  box-shadow: 0 3px 40px rgba(30,30,30,0.21);
  padding: 36px 38px 26px 38px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.22s cubic-bezier(.42,1,.46,1);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal .category-label {
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: #dedede;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: #33A37B;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 3.5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #181818;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover { color: #33A37B; }

/* --- MONOCHROME SOPHISTICATED ACCENT / SCHEME --- */
body,
section, .section, main {
  background: #fff;
}
header, .main-nav, .mobile-menu {
  background: #fff;
}
.section:nth-child(odd) {
  background: #f8f8f9;
}
hr {
  height: 1px;
  border: none;
  background: #d3d3d3;
  margin: 28px 0;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.btn-primary, .cookie-banner-btn {
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.13s;
}
.feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.012);
}
section, .section {
  transition: background-color 0.16s;
}

/* --- MOBILE-FIRST RESPONSIVENESS --- */
@media (max-width: 1060px) {
  .container { max-width: 920px; }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
  .main-nav ul {
    gap: 12px;
  }
  .content-wrapper, .feature-grid {
    gap: 12px;
  }
  .testimonial-slider, .testimonial-grid {
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 820px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    padding: 14px 14px 10px 14px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section, section {
    padding: 30px 0 30px 0;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 7px;
  }
  h1, .h1 {
    font-size: 1.9rem;
    margin-bottom: 14px;
  }
  h2, .h2 { font-size: 1.29rem; margin-bottom:14px; }
  .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-slider,
  .testimonial-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card { padding: 20px 12px; }
  .testimonial-card { max-width: 95vw; }
  footer .container {
    padding: 0 9px;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .main-nav {
    padding: 7px 4px 5px 4px;
  }
  h1, .h1 { font-size: 1.4rem; }
  h2, .h2 { font-size: 1.07rem; }
  .footer-brand img, .main-nav a img { height: 35px; }
  .btn-primary, .cookie-banner-btn {
    font-size: 0.97rem;
    padding: 9px 20px;
  }
  .footer-contact, .footer-brand, .footer-nav {
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: unset;
    padding: 22px 9px 18px 15px;
  }
}
/* --- END --- */
