/* =======================================================
   CSS RESET & NORMALIZE (MOBILE FIRST)
   ======================================================= */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #111;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  appearance: none;
}
:focus {
  outline: 2px solid #213A54;
  outline-offset: 2px;
}

/* =====================
    BRAND TYPE SCALE
======================== */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.16;
  margin-bottom: 20px;
  color: #111;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #131313;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #212121;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 1.4em;
}
strong, b {
  font-weight: 600;
}

/* =================================
   FLEXBOX LAYOUT HELPERS & CONTAINER
   ================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.accent-bg {
  background-color: #f4f7fb;
}

/* ============
   HEADER
============== */
header {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 12px;
}
header a img {
  height: 48px;
  width: auto;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.main-nav a {
  color: #212121;
  opacity: 0.95;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  transition: background 0.23s, color 0.23s, box-shadow 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f4f7fb;
  color: #213A54;
  text-decoration: none;
}
.cta-nav {
  background: #212121;
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 18px !important;
  box-shadow: 0 2px 10px rgba(33,58,84,0.05);
  font-weight: 600;
  margin-left: 10px;
  transition: background .20s, color .20s, box-shadow .18s;
}
.cta-nav:hover, .cta-nav:focus {
  background: #213A54;
  color: #fff;
  box-shadow: 0 4px 18px rgba(33,58,84,0.11);
}

/* MOBILE NAVIGATION ================= */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #212121;
  background: none;
  border: none;
  margin-left: 6px;
  padding: 3px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f4f7fb;
}
.mobile-menu {
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.63,.16,.22,1), box-shadow 0.24s;
  box-shadow: 0 0 0 rgba(40,40,40,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 200vw rgba(0,0,0,.26);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2.2rem;
  color: #212121;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 5px 10px;
  z-index: 1202;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f4f7fb;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 22px;
  padding: 0 30px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #212121;
  padding: 16px 0;
  border-bottom: 1px solid #f4f7fb;
  border-radius: 0;
  transition: color 0.18s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #213A54;
  background: #f4f7fb;
}

/* Mobile nav shown/hidden state */
@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}{
  /* Fallback for above, ensures mobile menu isn't visible on desktop */
  
}

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

@media (max-width:640px) {
  header .container {
    flex-direction: row;
    padding: 0 10px;
  }
  .mobile-nav {
    padding: 0 10px;
  }
}


/* ===== HERO / CTA SECTION ===== */
.hero {
  background: #fff;
  padding: 54px 0 40px 0;
  margin-bottom: 60px;
  border-bottom: 1.5px solid #efefef;
}
.hero .container, .cta .container {
  align-items: center;
}
.hero .content-wrapper, .cta .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 { color: #111; margin-bottom: 19px; font-size: 2.2rem; }
.hero p {
  color: #3c3c3c;
  max-width: 450px;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.cta {
  margin-bottom: 60px;
  padding-top: 46px;
  padding-bottom: 46px;
  background: #f4f7fb;
}
.cta h2 {
  font-size: 2rem;
  color: #213A54;
}

.cta-button {
  display: inline-block;
  background: #212121;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 15px 36px;
  border-radius: 7px;
  border: none;
  box-shadow: 0 4px 24px rgba(33,58,84,0.10);
  margin-top: 10px;
  min-width: 180px;
  text-align: center;
  transition: background 0.17s, color 0.16s, transform 0.19s, box-shadow 0.18s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.cta-button:hover,
.cta-button:focus {
  background: #213A54;
  color: #fff;
  transform: translateY(-1px) scale(1.035);
  box-shadow: 0 10px 30px rgba(33,58,84,0.18);
}


/* =========================
   FLEXBOX PATTERNS & CARDS
============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(18,22,25,0.07);
  margin-bottom: 20px;
  padding: 28px 22px 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.16s, transform 0.17s;
  min-width: 240px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 36px rgba(33,58,84,0.18);
  transform: translateY(-2px) scale(1.014);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fafbfc;
  border-radius: 10px;
  border: 1.5px solid #e6e7ea;
  box-shadow: 0 2px 12px rgba(33,58,84,0.07);
  margin-bottom: 20px;
  font-size: 1.11rem;
  transition: border 0.14s, box-shadow 0.19s;
}
.testimonial-card:hover {
  border: 1.5px solid #213A54;
  box-shadow: 0 6px 25px rgba(33,58,84,0.11);
}
.testimonial-card p {
  margin-bottom: 0.5rem;
  color: #181818;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.96em;
  color: #595959;
  font-weight: 500;
}

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


/* INDEX FEATURES FLEX SECTION */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 17px;
}
.feature-grid li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(18,22,25,0.07);
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 210px;
  min-height: 220px;
  transition: box-shadow 0.15s, border-color 0.15s;
  position: relative;
}
.feature-grid li img {
  height: 36px;
  width: auto;
  margin-bottom: 10px;
  opacity: 0.94;
}
.feature-grid li h3 {
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  margin-bottom: 7px;
  color: #212121;
}
.feature-grid li p {
  color: #34373a;
  font-size: 1rem;
}
.feature-grid li:hover {
  box-shadow: 0 6px 30px rgba(33,58,84,0.12);
  border-color: #213A54;
}

/* ===================
   CASE STUDY SECTION
   =================== */
.case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.case-summary {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(18,22,25,0.07);
  padding: 22px 20px;
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 360px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.17s;
}
.case-summary:hover {
  box-shadow: 0 8px 36px rgba(33,58,84,0.14);
  transform: translateY(-2px) scale(1.01);
}
.case-summary h3 {
  color: #213A54;
  font-size: 1.09rem;
  margin-bottom: 9px;
}
.case-summary p {
  color: #333;
  line-height: 1.6;
}

/* ===================
   BLOG FEATURE POSTS
   =================== */
.blog-featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
  justify-content: flex-start;
}
.blog-featured-posts article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(18,22,25,0.07);
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 350px;
  padding: 22px 19px 19px 19px;
  transition: box-shadow 0.15s, transform 0.17s;
  margin-bottom: 10px;
}
.blog-featured-posts article:hover {
  box-shadow: 0 10px 38px rgba(40,40,40,0.13);
  transform: translateY(-2px) scale(1.012);
}

.blog-featured-posts h3 {
  color: #213A54;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 7px;
}

.blog-categories {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-categories ul {
  display: flex;
  gap: 14px;
}
.blog-categories li {
  font-size: 1rem;
  background: #e5e8ec;
  color: #212121;
  border-radius: 7px;
  padding: 3px 13px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}


/* ==========
   FAQ (resources)
============== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.faq-accordion > div {
  background: #fff;
  border: 1.5px solid #f1f1f3;
  box-shadow: 0 1.5px 8px rgba(70,72,80,0.04);
  padding: 19px 18px;
  border-radius: 8px;
  transition: box-shadow 0.17s, border-color 0.13s;
}
.faq-accordion > div:hover {
  border: 1.5px solid #213A54;
  box-shadow: 0 6px 24px rgba(33,58,84,0.11);
}
.faq-accordion h3 {
  color: #131313;
  font-weight: 600;
  margin-bottom: 7px;
  font-size: 1.1rem;
}
.faq-accordion p {
  font-size: 1rem;
  color: #353535;
}

/* ===============================
   FOOTER
   ============================== */
footer {
  background: #161616;
  color: #e9e9e9;
  padding: 34px 0;
  border-top: 2.5px solid #ececec;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer a img {
  height: 38px;
  filter: grayscale(1);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #d8d8d8;
  background: none;
  padding: 7px 4px;
  border-radius: 4px;
  font-size: 1rem;
  opacity: 0.88;
  transition: color 0.19s, background 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #212121;
}
.contact-footer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 0.96rem;
  color: #bcbcbc;
  margin-bottom: 8px;
}
.contact-footer-details img {
  display: inline-block;
  height: 19px;
  width: auto;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.74;
  filter: grayscale(1);
}
footer .social-media-icons {
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
  margin-top: 6px;
}
footer .social-media-icons img {
  height: 27px;
  width: 27px;
  opacity: 0.82;
  filter: grayscale(1); 
  transition: opacity 0.18s, filter 0.18s;
  cursor: pointer;
}
footer .social-media-icons img:hover {
  filter: grayscale(0);
  opacity: 1;
}


/* ===============
   OTHER PAGES (ABOUT, CONTACT, .. ETC)
================== */
.about-intro ul,
.about .content-wrapper ul,
.values .content-wrapper ul,
.stats .content-wrapper ul,
.privacy-policy ul,
.terms ul,
.gdpr ul
{
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-left: 15px;
  margin-bottom: 13px;
}
.about-intro ul li::before,
.about .content-wrapper ul li::before,
.values .content-wrapper ul li::before,
.stats .content-wrapper ul li::before {
  content: '• ';
  color: #213A54;
  font-weight: bold;
  margin-right: 6px;
}
.about-intro ul li,
.about .content-wrapper ul li,
.values .content-wrapper ul li,
.stats .content-wrapper ul li {
  font-size: 1.04rem;
}

address {
  font-style: normal;
  color: #23272b;
  font-size: 1rem;
  margin-bottom: 15px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 1px 7px rgba(33,58,84,0.07);
}
.map-placeholder img {
  height: 42px;
  width: auto;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  height: 38px;
  opacity: 0.70;
  filter: grayscale(1);
  transition: opacity 0.18s, filter 0.18s;
}
.client-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.process-timeline {
  background: #f6f7fa;
  color: #373737;
  border-radius: 10px;
  padding: 17px 18px;
  margin-top: 16px;
  box-shadow: 0 1.5px 7px rgba(33,58,84,0.08);
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.benefit-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(18,22,25,0.07);
  padding: 26px 19px 18px 19px;
  flex: 1 1 220px;
  min-width: 170px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.13s, transform 0.15s;
}
.benefit-grid img {
  height: 34px;
  margin-bottom: 7px;
}
.benefit-grid h3 {
  font-size: 1.08rem;
  color: #213A54;
  font-weight: 500;
}
.benefit-grid p {
  color: #323232;
  font-size: 1rem;
}
.benefit-grid > div:hover {
  box-shadow: 0 7px 26px rgba(33,58,84,0.14);
  transform: translateY(-2px) scale(1.012);
}

.resource-list ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.resource-list ul li a {
  display: block;
  color: #1b1b1b;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  padding: 13px 8px;
  background: #fafbfc;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
}
.resource-list ul li a:hover {
  background: #e6e8eb;
  color: #213A54;
}

/* Confirmation page style */
.confirmation {
  padding-top: 50px;
  padding-bottom: 50px;
}
.confirmation h1 {
  color: #213A54;
  margin-bottom: 19px;
}
.confirmation ul {
  margin-left: 19px;
  margin-bottom: 14px;
}


/* ==========================
   COOKIE CONSENT BANNER & MODAL
============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1299;
  width: 100vw;
  background: #111;
  color: #fafafa;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -2px 22px 0 rgba(40,43,43,0.13);
  padding: 24px 30px 21px 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  font-size: 1.02rem;
  animation: banner-slideup 0.45s cubic-bezier(.71,.14,.23,1);
}
@keyframes banner-slideup {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 9px;
}
.cookie-banner .cookie-btn {
  min-width: 120px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 12px 19px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.cookie-banner .accept {
  background: #213A54;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #26A69A;
}
.cookie-banner .reject {
  background: #fff;
  color: #111;
  border: 1.7px solid #e6e6e6;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #222222;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #fafafa;
  text-decoration: underline;
  padding: 9px 12px;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #161616;
}

/* Cookie modal popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1399;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(29,29,29,.46);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: #131313;
  border-radius: 12px;
  box-shadow: 0 7px 40px rgba(33,58,84,0.13);
  padding: 36px 24px 28px 24px;
  max-width: 410px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: modal-appear 0.32s cubic-bezier(.7,.18,.14,1);
}
@keyframes modal-appear {
  from { opacity: 0; transform: scale(0.94) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  margin-bottom: 7px;
  color: #213A54;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
  padding: 10px 0;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #e6e6e7;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle[aria-checked="true"] {
  background: #213A54;
}
.cookie-toggle .toggle-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.21s;
}
.cookie-toggle[aria-checked="true"] .toggle-slider {
  left: 23px;
  background: #26A69A;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
}

/* Hide modal by default */
.cookie-modal-overlay:not(.open), .cookie-modal:not(.open) { display:none!important;}


/* ==============================
   RESPONSIVE LAYOUTS
   ============================= */
@media (max-width: 980px) {
  .feature-grid, .benefit-grid, .case-list, .blog-featured-posts, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .benefit-grid > div, .case-summary, .card {
    min-width: 80vw;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 1.6rem;
  }
  h2, .h2 {
    font-size: 1.18rem;
  }
  .hero, .cta {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 38px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .container {
    padding: 0 7px;
  }
  footer .container {
    padding: 0 7px;
  }
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .contact-footer-details {
    flex-direction: column;
    gap: 5px;
  }
  .client-logos {
    gap: 15px;
  }
  .testimonial-card {
    font-size: 1rem;
    padding: 14px;
  }
  .cookie-banner {
    border-radius: 0;
    padding: 14px 10px 12px 10px;
    font-size: 0.98rem;
  }
}

/* ==============================
   MONOCHROME_SOPHISTICATED PALETTE
   ============================== */
:root {
  --cb-primary: #213A54;
  --cb-secondary: #26A69A;
  --cb-accent: #f4f7fb;
  --mono-b100: #111;
  --mono-b90: #222;
  --mono-b50: #595959;
  --mono-gray: #e9e9e9;
}

/* For monochrome_sophisticated, override some backgrounds */
body {
  background: #fff;
  color: #111;
}
.accent-bg,
.section.accent-bg {
  background: #fafbfc;
}
.card, .case-summary,
.benefit-grid > div, .faq-accordion > div,
.feature-grid li, .testimonial-card {
  background: #fff;
}
footer {
  background: #111;
  color: #ededed;
}
footer .footer-nav a, footer .contact-footer-details, .social-media-icons img {
  color: #ededed;
}

/* ==============================
   ELEVATION, RADIUS, EFFECTS
   ============================== */
.card, .case-summary, .benefit-grid > div, .feature-grid li, .testimonial-card, .faq-accordion > div {
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(18,22,25,0.07);
}
.main-nav a, .footer-nav a, .cta-button, .card, .case-summary, .benefit-grid > div, .feature-grid li, .testimonial-card, .faq-accordion > div, .cookie-banner .cookie-btn {
  transition: box-shadow 0.14s, background 0.19s, color 0.15s, border 0.15s, transform 0.17s;
}

/* ===========================
   OVERRIDES/ACCESSIBILITY
   =========================== */
::selection {
  background: #213A54;
  color: #fff;
}

/* ==========================
   VISUAL HIERARCHY / SPACING
   ========================== */
.section, .about, .values, .stats, .privacy-policy, .cookies-policy, .gdpr, .terms, .resource-list, .blog-list, .testimonials, .benefits, .newsletter-signup, .company-info, .faq, .confirmation, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================
   MICRO ANIMATION/EFFECTS
   ======================== */
.card, .case-summary, .testimonial-card, .feature-grid li, .blog-featured-posts article, .faq-accordion > div {
  will-change: transform, box-shadow;
}
.testimonial-card:hover, .blog-featured-posts article:hover, .case-summary:hover, .feature-grid li:hover {
  transition-timing-function: cubic-bezier(.61,.06,.34,1.08);
}
.cta-button:active { transform: scale(0.98); }


/* ========================
   SPECIAL COLOR CONTRAST
   ======================== */
.testimonial-card {
  background: #fafbfc !important;
  color: #181818;
}
.testimonial-card span {
  color: #595959;
}

/* ========================
   PRINT STYLES
   ======================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; color: #131313; }
}
