/* =======================================================
   CSS RESET & BASE STYLES
   ======================================================= */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F6F8FB;
  color: #16374E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #143B5E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #38A687;
  outline: none;
}

/* =======================================================
   TYPOGRAPHY
   ======================================================= */
:root {
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --primary: #143B5E;
  --secondary: #38A687;
  --accent: #F6F8FB;
  --gray: #E3E8F0;
  --gray-dark: #8AA1BC;
  --white: #fff;
  --black: #132940;
  --shadow: 0 4px 16px rgba(20,59,94,0.07), 0 1.5px 8px rgba(56,166,135,0.08);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #2C425B;
  margin-bottom: 14px;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 4px;
}
strong, b {
  color: var(--primary);
  font-weight: bold;
}

/* =======================================================
   CONTAINER & LAYOUT
   ======================================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 40px 24px;
  margin-bottom: 40px;
}

/* =======================================================
   HEADER & NAVIGATION
   ======================================================= */
header {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(20, 59, 94, 0.06);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}
.logo-link img {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 5px;
  transition: color 0.18s;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.24s cubic-bezier(.4,0,.2,1);
  position: absolute;
  left: 0; right:0; bottom: 0;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}

/* CTA button in header */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  padding: 12px 28px;
  border-radius: 32px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(20,59,94,0.08);
  transition: background 0.22s cubic-bezier(.4,0,.2,1), transform 0.13s;
  margin-left: 20px;
  min-width: 120px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #157f68;
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
}

/* Hamburger mobile button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--secondary);
}
/* ===============
   MOBILE MENU
   =============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,59,94,0.96);
  z-index: 2000;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
  padding-left: 0;
  transition: transform 0.38s cubic-bezier(.48,1.62,.54,.97);
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--white);
  align-self: flex-end;
  margin-right: 30px;
  margin-bottom: 28px;
  cursor: pointer;
  z-index: 5;
  transition: color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-left: 45px;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.2s;
  border-radius: 6px;
  margin-right: 24px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
  background: rgba(56,166,135,0.13);
}

/* Hide nav & show burger on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =======================================================
   HERO STYLES
   ======================================================= */
.hero {
  background: var(--accent);
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero .container {
  align-items: flex-start;
  flex-direction: column;
}
.hero .content-wrapper {
  padding: 60px 0 28px 0;
  gap: 16px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.125rem;
  color: #39557a;
  margin-bottom: 18px;
  max-width: 640px;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 10px;
}

/* =======================================================
   MAIN LAYOUT & SECTIONS
   ======================================================= */
main {
  width: 100%;
}
section {
  background: none;
  border-radius: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.cta-section {
  background: linear-gradient(90deg, var(--secondary) 0%, #5CC2AF 100%);
  padding: 46px 0 34px 0;
  margin: 0 0 60px 0;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 14px;
}
.cta-section h2 {
  color: var(--white);
  font-size: 2rem;
}
.cta-section p {
  color: var(--white);
  font-weight: 400;
}
.cta-section .btn-primary {
  background: var(--white);
  color: var(--secondary);
  box-shadow: none;
}
.cta-section .btn-primary:hover {
  background: #16374e;
  color: var(--white);
}
/**** Thank you page ****/
.thank-you-section {
  padding: 60px 0 40px 0;
}
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 40px 20px 32px 20px;
}

/* ==============
   FEATURE GRIDS
   ============== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 8px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px 22px;
  min-width: 235px;
  max-width: 325px;
  flex: 1 1 215px;
  transition: box-shadow 0.18s, transform 0.16s;
  margin-bottom: 20px;
}
.feature-item img {
  height: 44px;
  width: 44px;
}
.feature-item h3 {
  margin-bottom: 0;
}
.feature-item p {
  font-size: 0.97rem;
  color: var(--gray-dark);
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 32px rgba(56,166,135,0.10), 0 2px 12px rgba(20,59,94,0.13);
  transform: translateY(-4px) scale(1.025);
}

/* ==============
   TESTIMONIALS
   ============== */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--white);
  color: var(--primary);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 265px;
  max-width: 370px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #2C425B;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--secondary);
  letter-spacing: 0.04em;
  font-size: 0.98rem;
}

/* ==============
   BLOG
   ============== */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.blog-post {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
  flex: 1 1 238px;
  max-width: 353px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.blog-post h3, .blog-post h3 a {
  font-size: 1.22rem;
  margin-bottom: 7px;
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  transition: color 0.18s;
}
.blog-post h3 a:hover,
.blog-post h3 a:focus {
  color: var(--secondary);
}
.blog-post p {
  font-size: 0.99rem;
  color: var(--gray-dark);
}
.blog-post:hover {
  box-shadow: 0 8px 20px rgba(20,59,94,0.13);
  transform: translateY(-3px) scale(1.021);
}
.blog-categories {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--primary);
}
.blog-categories span {
  background: var(--gray);
  color: var(--primary);
  border-radius: 7px;
  padding: 2px 10px;
  margin-right: 6px;
  font-size: 0.98rem;
}

/* ==============
   FAQ
   ============== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.faq-item {
  background: var(--white);
  border-radius: 11px;
  box-shadow: var(--shadow);
  padding: 22px 16px;
  min-width: 235px;
  flex: 1 1 215px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, transform 0.10s;
}
.faq-item h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.faq-item p {
  color: #39557a;
  font-size: 0.99rem;
}
.faq-item:hover {
  box-shadow: 0 5px 18px rgba(56,166,135,0.08);
  transform: translateY(-2px) scale(1.018);
}

/* ==============
   MISC LAYOUTS
   ============== */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 16px;
  min-width: 210px;
  flex: 1 1 210px;
  transition: box-shadow 0.15s, transform 0.10s;
}
.card:hover {
  box-shadow: 0 7px 24px rgba(20,59,94,0.14);
  transform: translateY(-2px) scale(1.01);
}
.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;
  margin-bottom: 40px;
}
.text-image-section > * {
  flex: 1 1 230px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==============
   SPACING - MANDATORY
   ============== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ==============
   FOOTER
   ============== */
footer {
  background: var(--white);
  padding: 36px 0 28px 0;
  border-top: 1px solid #eaeaea;
  box-shadow: 0 -2px 12px rgba(20,59,94,0.04);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
footer img {
  height: 34px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 10px 0 10px 0;
}
.footer-nav a {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
footer address {
  font-size: 1rem;
  color: var(--gray-dark);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
  align-items: center;
}
footer address img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
footer p {
  color: #7D8CA3;
  font-size: 0.98rem;
  margin-bottom: 7px;
}

/* =======================================================
   COOKIE CONSENT BANNER
   ======================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -4px 20px rgba(20,59,94,0.10);
  border-top: 1px solid var(--gray);
  padding: 26px 18px 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: transform 0.38s , opacity 0.28s;
  will-change: transform, opacity;
}
.cookie-banner[aria-hidden="true"] {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-message {
  flex: 1 1 240px;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.btn-cookie-accept, .btn-cookie-reject, .btn-cookie-settings {
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  margin: 0 3px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.btn-cookie-accept {
  background: var(--secondary);
  color: var(--white);
}
.btn-cookie-accept:hover,
.btn-cookie-accept:focus {
  background: #157f68;
}
.btn-cookie-reject {
  background: var(--gray);
  color: var(--primary);
}
.btn-cookie-reject:hover,
.btn-cookie-reject:focus {
  background: #c1d1e9;
}
.btn-cookie-settings {
  background: var(--white);
  color: var(--secondary);
  border: 1px solid var(--secondary);
}
.btn-cookie-settings:hover,
.btn-cookie-settings:focus {
  background: var(--secondary);
  color: var(--white);
}

/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3100;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(20,59,94,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.33s, opacity 0.33s;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s, 0s;
}
.cookie-modal {
  background: var(--white);
  padding: 34px 32px 28px 32px;
  border-radius: 17px;
  box-shadow: 0 6px 34px rgba(20,59,94,0.12);
  min-width: 298px;
  max-width: 99vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  transform: translateY(50px) scale(0.98);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.45,0,.52,1), opacity 0.26s;
  will-change: transform, opacity;
}
.cookie-modal-overlay.open .cookie-modal {
  transform: translateY(0) scale(1.01);
  opacity: 1;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 1.44rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 6px;
  z-index: 1;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--secondary);
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: var(--primary);
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}
.cookie-category label,
.cookie-category .cookie-label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-category .cookie-toggle {
  width: 40px;
  height: 22px;
  background: var(--gray);
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  margin-left: 13px;
  display: inline-block;
}
.cookie-category .cookie-toggle input {
  display: none;
}
.cookie-category .cookie-toggle span {
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  transition: left 0.17s, background 0.19s;
}
.cookie-category .cookie-toggle input:checked + span {
  left: 20px;
  background: var(--secondary);
}
.cookie-category .cookie-toggle[aria-disabled="true"],
.cookie-category .cookie-toggle[aria-disabled="true"] span {
  background: #d8e4f2 !important;
  cursor: not-allowed;
}

/* =======================================================
   RESPONSIVE MEDIA QUERIES
   ======================================================= */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding: 0 12px;
  }
  .feature-grid, .testimonial-grid, .blog-grid, .faq-list {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
  .feature-item, .testimonial-card, .blog-post, .faq-item {
    min-width: 85vw;
    max-width: 100%;
    flex: 1 1 85vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  header .container {
    min-height: 60px;
  }
  .main-nav,
  .footer-nav {
    gap: 12px;
    font-size: 0.97rem;
    flex-wrap: wrap;
  }
  .logo-link img, footer img {
    height: 30px;
  }
  .hero .container {
    padding: 0 8px;
  }
  .hero {
    min-height: 180px;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section, .text-section {
    margin-bottom: 30px;
    padding: 25px 7px;
  }
  .cta-section {
    padding: 28px 0 18px 0;
    margin-bottom: 26px;
  }
  .cta-section h2 {
    font-size: 1.23rem;
  }
  .content-wrapper {
    padding: 0;
    gap: 12px;
  }
  .feature-grid, .testimonial-grid, .blog-grid, .faq-list {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
  }
  .feature-item, .testimonial-card, .blog-post, .faq-item {
    padding: 19px 10px;
    margin-bottom: 12px;
  }
  .card, .card-content {
    padding: 15px 5px !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .thank-you-section .content-wrapper {
    padding: 25px 4px 20px 4px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 19px 8px 14px 8px;
  }
  .cookie-banner-actions {
    flex-direction: row;
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
    padding-top: 2px;
  }
  .cookie-modal {
    padding: 20px 8px 16px 8px;
    min-width: 60vw;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.23rem; }
  h2 { font-size: 1.03rem; }
  .btn-primary, .btn-cookie-accept, .btn-cookie-reject, .btn-cookie-settings {
    font-size: 0.93rem;
    padding: 8px 13px;
    min-width: 80px;
  }
  .feature-item, .testimonial-card, .blog-post, .faq-item {
    padding: 12px 3px;
    min-width: 99vw;
  }
}

/* =======================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ======================================================= */
.btn-primary,
.btn-cookie-accept,
.btn-cookie-reject,
.btn-cookie-settings {
  transition: background 0.16s, color 0.16s, transform 0.14s;
}
.feature-item,
.testimonial-card,
.blog-post,
.faq-item,
.card {
  transition: box-shadow 0.16s, transform 0.13s;
}
.feature-item:hover,
.feature-item:focus-within,
.testimonial-card:hover,
.blog-post:hover,
.faq-item:hover,
.card:hover {
  transform: translateY(-3px) scale(1.012);
}

/* =======================================================
   MISC
   ======================================================= */
::-webkit-scrollbar {
  width: 12px;
  background: #e6eaea;
}
::-webkit-scrollbar-thumb {
  background: #b7c7de;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #90afd0;
}

/* ===== ANTI-OVERLAP SAFE MARGINS ===== */
.card, .feature-item, .testimonial-card, .faq-item, .blog-post {
  margin-right: 0;
  margin-bottom: 20px;
}
.section > .container {
  margin-bottom: 0;
}

/* ===== VISUAL HIERARCHY ===== */
.content-wrapper > h2 { margin-top: 10px; }
.content-wrapper > h3 { margin-top: 6px; }

/* ===== PRINT FRIENDLY ===== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  body, main, section, .container {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
  }
}
