/* ===============================
   CSS RESET & BASELINE 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: #fff;
  color: #122327;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.66,.06,.56,1.16);
}
a:focus {
  outline: 2px solid #0A3641;
}

/* =======================
   TYPOGRAPHY SCALE
   ======================= */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #0A3641;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0A3641;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #0A3641;
}
p, li, blockquote, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #122327;
}
blockquote {
  font-style: italic;
  background: #F9EED3;
  border-radius: 10px;
  padding: 24px 28px 20px 28px;
  box-shadow: 0 2px 12px 0 rgba(57,53,44, 0.04);
  margin-bottom: 18px;
  position: relative;
}
blockquote footer {
  font-size: 0.98rem;
  font-style: normal;
  color: #555;
  padding-top: 12px;
}
strong {
  font-weight: 600;
  color: #0A3641;
}

/* =====================================
   SPACING, SECTIONS & FLEX CONTAINERS
   ===================================== */
main {
  margin: 0 auto;
  padding: 0 0 56px 0;
  max-width: 1120px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(57,53,44, 0.06);
  padding: 28px 22px;
  transition: box-shadow 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 22px 0 rgba(10,54,65, 0.12);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9EED3;
  border-radius: 10px;
  color: #122327;
  box-shadow: 0 1px 12px 0 rgba(57,53,44,0.03);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .feature-grid {
    gap: 16px;
  }
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 9px rgba(57,53,44, 0.06);
  padding: 24px 18px;
  min-width: 180px;
  flex: 1 1 160px;
  max-width: 260px;
  text-align: center;
}
@media (max-width: 600px) {
  .feature {
    min-width: 130px;
    padding: 17px 9px;
  }
}

/* ==========================
   HEADER & MAIN NAVIGATION
   ========================== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px 32px 14px 32px;
  position: sticky;
  top: 0;
  z-index: 101;
  box-shadow: 0 4px 20px -12px rgba(10,54,65,0.05);
  min-height: 60px;
}
@media (max-width: 900px) {
  header {
    padding: 13px 12px 9px 12px;
  }
}
.brand-logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0A3641;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color 0.2s;
}
.brand-logo:hover {
  color: #89B4A1;
}

.main-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav li {
  margin: 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 6px;
  color: #0A3641;
  opacity: 0.91;
  transition: background 0.13s, color 0.2s;
}
.main-nav a[aria-current="page"] {
  background: #F9EED3;
  color: #0A3641;
  opacity: 1;
  font-weight: 700;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F9EED3;
  color: #0A3641;
}
.primary-cta {
  background: #0A3641;
  color: #F9EED3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 2px 16px -8px rgba(10,54,65,0.10);
  letter-spacing: 0.3px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.10s;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  display: inline-block;
  outline: none;
  text-align: center;
}
.primary-cta:hover, .primary-cta:focus {
  background: #89B4A1;
  color: #0A3641;
  box-shadow: 0 5px 30px -10px rgba(10,54,65,0.28);
  transform: translateY(-2px) scale(1.02);
}

/* Hide burger and mobile menu on desktop */
.mobile-menu-toggle {
  appearance: none;
  display: none;
  background: #F9EED3;
  color: #0A3641;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.36rem;
  border: none;
  justify-content: center;
  align-items: center;
  transition: background 0.14s, color 0.14s, box-shadow 0.16s;
  margin-left: 16px;
  cursor: pointer;
  z-index: 202;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #89B4A1;
}
@media (max-width: 1000px) {
  .main-nav, .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===========================
   MOBILE MENU DRAWER
   =========================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1002;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,54,65, 0.96);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.86,-0.14,.66,.97);
  box-shadow: 0 1px 30px 0 rgba(10,54,65,0.26);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.43s cubic-bezier(.86,-0.14,.66,.97), opacity 0.25s linear;
}
.mobile-menu-close {
  background: transparent;
  color: #F9EED3;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 18px 24px 8px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid #F9EED3;
  color: #89B4A1;
}
.mobile-nav {
  margin-top: 36px;
  width: 100vw;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
}
.mobile-nav li {
  width: 100vw;
  padding-left: 32px;
}
@media (max-width: 600px) {
  .mobile-nav li {
    padding-left: 16px;
  }
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 500;
  color: #F9EED3;
  opacity: 0.97;
  border-radius: 8px;
  padding: 13px 12px;
  margin-bottom: 4px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F9EED3;
  color: #0A3641;
  opacity: 1;
}

/* =====================
   HERO & SECTION STYLES
   ===================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding-top: 18px;
  margin-bottom: 44px;
}
.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}
.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  color: #20343b;
  margin-bottom: 14px;
}
.hero .primary-cta {
  margin-top: 13px;
}

.features {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 17px 0 rgba(10,54,65,0.04);
}
.features ul, .features ol {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 24px;
}
.features li {
  font-size: 1rem;
  color: #285054;
  margin-bottom: 10px;
  list-style: disc inside;
}

.services {
  background: #F9EED3;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(57,53,44, 0.04);
  padding: 36px 20px;
}
.services h2 {
  color: #0A3641;
}
.service-list, .services ul {
  margin-top: 12px;
  margin-bottom: 18px;
  padding-left: 0;
}
.service-list li {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 8px rgba(57,53,44, 0.06);
  margin-bottom: 16px;
  padding: 22px 18px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-head {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 7px;
}
.price {
  font-size: 1.04rem;
  background: #89B4A1;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 4px 20px 4px 13px;
  letter-spacing: 0.5px;
}
.unique-points {
  margin-top: 17px;
  margin-bottom: 8px;
  color: #20343b;
}
.unique-points li {
  margin-bottom: 8px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  justify-content: flex-start;
}
.service-grid > div {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 7px rgba(57,53,44,0.06);
  padding: 22px 14px 14px 20px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 33%;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media (max-width: 900px) {
  .service-grid > div {
    max-width: 45%;
  }
}
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    gap: 12px;
  }
  .service-grid > div {
    min-width: 1px;
    max-width: 100%;
  }
}

/* CTA highlight */
.highlighted-cta {
  background: #89B4A1;
  color: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 19px rgba(10,54,65,0.10);
  padding: 38px 24px;
  text-align: center;
  margin: 0 auto;
  max-width: 620px;
}
.highlighted-cta h2 {
  color: #fff;
}
.highlighted-cta .primary-cta {
  background: #F9EED3;
  color: #0A3641;
  margin-top: 20px;
}
.highlighted-cta .primary-cta:hover {
  background: #fff;
  color: #0A3641;
}
@media (max-width: 600px) {
  .highlighted-cta {
    padding: 18px 5px;
  }
}

/* About / Contact Info Sections */
.about-short ul, .about ul {
  margin-top: 20px;
  margin-bottom: 18px;
  padding-left: 24px;
}
.about-short li, .about li {
  margin-bottom: 7px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  margin-top: 20px;
}
.contact-details > div, .contact-details > p {
  min-width: 180px;
}
.map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.info-box {
  background: #F9EED3;
  border-radius: 7px;
  padding: 13px 19px;
  box-shadow: 0 2px 8px rgba(10,54,65,0.03);
  font-size: 0.97rem;
  margin-top: 8px;
}
.response-time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 1.04rem;
  color: #285054;
}

/* =====================
   TESTIMONIALS & QUOTES
   ===================== */
.testimonials {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 15px 0 rgba(57,53,44,0.04);
  padding: 38px 20px;
}
.testimonials h2 {
  color: #0A3641;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.testimonial-slider blockquote {
  min-width: 180px;
  max-width: 360px;
  margin-right: 0;
}
@media (max-width: 800px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider blockquote {
    max-width: 100%;
  }
}
.star-ratings {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.customer-reviews {
  margin-top: 14px;
  font-weight: 600;
  color: #0A3641;
}
.highlighted-quotes {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.video-testimonials {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 13px;
  color: #285054;
  font-size: 1.03rem;
}

/* ========================
   FEATURE ICON SECTIONS
   ======================== */
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 21px;
}
.feature-icon {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(10,54,65,0.046);
  padding: 21px 13px 13px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 130px;
  font-size: 0.98rem;
}

/* ========================
   EXPERIENCE TYPES
   ======================== */
.experience-types {
  margin: 24px 0 10px 0;
  background: #fff;
  color: #0A3641;
  border-radius: 8px;
  box-shadow: 0 0.5px 7px rgba(57,53,44, 0.07);
  padding: 15px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.04rem;
  text-align: center;
}

/* ====================
   CONFIRMATION PAGES
   ==================== */
.confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
  min-height: 330px;
  text-align: center;
}
.confirmation-message {
  background: #F9EED3;
  border-radius: 10px;
  padding: 30px 21px;
  box-shadow: 0 2px 16px 0 rgba(57,53,44,0.04);
  color: #122327;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.next-steps p {
  margin-top: 10px;
  font-size: 1rem;
}

/* =======================
   LEGAL / POLICY SECTION
   ======================= */
.legal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 13px rgba(10,54,65, 0.04);
  padding: 38px 16px;
  margin: 30px auto 0 auto;
  max-width: 750px;
}
.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #0A3641;
  margin-bottom: 23px;
}
.legal p {
  color: #20343b;
  line-height: 1.65;
}
.legal a {
  color: #0A3641;
  font-weight: 500;
  text-underline-offset: 2px;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #0A3641;
  color: #F9EED3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 44px 28px 20px 28px;
  margin-top: 56px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 24px;
}
.footer-nav nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #F9EED3;
  opacity: 0.88;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 6px 7px;
  transition: background 0.14s, color 0.14s, opacity 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F9EED3;
  color: #0A3641;
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 18px 0 10px 0;
}
.footer-brand span {
  color: #F9EED3;
}
.footer-contact {
  margin-top: 12px;
  font-size: 0.98rem;
  color: #F9EED3;
}
.footer-contact address {
  font-style: normal;
  color: #F9EED3;
  margin-bottom: 4px;
}
.footer-contact a {
  color: #F9EED3;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.13s;
}
.footer-contact a:hover {
  color: #89B4A1;
}

@media (max-width: 850px) {
  footer {
    padding: 36px 8px 14px 8px;
  }
  .footer-nav {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 2px;
  }
  .footer-brand {
    justify-content: center;
  }
}

/* =============================
   RESPONSIVE FLEX Rules
   ============================= */
@media (max-width: 768px) {
  .card-container, .content-grid, .testimonial-slider, .feature-grid, .footer-nav {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .contact-details {
    flex-direction: column;
    gap: 12px;
  }
  .footer-nav {
    align-items: stretch;
  }
}

/* =======================
   COOKIE CONSENT BANNER
   =======================*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #0A3641;
  border-top: 1.5px solid #E5DFCC;
  box-shadow: 0 -2px 22px -10px rgba(10,54,65,0.09);
  z-index: 2003;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 30px 18px 30px;
  animation: cookie-slide-in 0.55s cubic-bezier(.86,-0.14,.66,.97);
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 13px 10px 13px 10px;
    font-size: 0.96rem;
  }
}
@keyframes cookie-slide-in {
  from { transform: translateY(70px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #285054;
  font-size: 1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 7px;
}
.cookie-banner button {
  background: #0A3641;
  color: #F9EED3;
  border-radius: 18px;
  padding: 8px 20px;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  margin-right: 2px;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
  box-shadow: 0 1px 8px rgba(10,54,65,0.06);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #89B4A1;
  color: #0A3641;
}
.cookie-banner .cookie-settings {
  background: #F9EED3;
  color: #0A3641;
  border-radius: 18px;
  padding: 8px 20px;
  border: none;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #89B4A1;
  color: #fff;
}

/* Cookie modal popup */
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  background: #fff;
  color: #0A3641;
  border-radius: 16px;
  box-shadow: 0 3px 32px rgba(10,54,65,0.25);
  padding: 38px 30px 28px 30px;
  z-index: 2050;
  min-width: 320px;
  max-width: 97vw;
  animation: cookie-modal-in 0.33s cubic-bezier(.86,-0.14,.66,.97);
}
.cookie-modal.open {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@keyframes cookie-modal-in {
  from { transform: translate(-50%,50px); opacity:0; }
  to   { transform: translate(-50%,-0px); opacity:1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: #0A3641;
  margin-bottom: 4px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  color: #0A3641;
  font-size: 1.44rem;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal .toggle {
  width: 38px;
  height: 21px;
  background: #F9EED3;
  border-radius: 14px;
  position: relative;
  margin-left: 8px;
  transition: background 0.16s;
}
.cookie-modal .toggle.enabled {
  background: #89B4A1;
}
.cookie-modal .toggle-slider {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.22s cubic-bezier(.66,.06,.56,1.16);
  box-shadow: 0 0.5px 6px rgba(10,54,65,0.05);
}
.cookie-modal .toggle.enabled .toggle-slider {
  left: 18px;
  background: #0A3641;
}
.cookie-modal .category-label {
  font-weight: 500;
  color: #0A3641;
}

/* Overlay for modal */
.cookie-modal-overlay {
  display: none;
  position:fixed;
  left:0; top:0; right:0; bottom:0;
  background: rgba(10,54,65,0.17);
  z-index: 2030;
}
.cookie-modal.open + .cookie-modal-overlay {
  display: block;
}

/* ==========================
   MICRO-INTERACTIONS
   ========================== */
button, .primary-cta, .service-list li, .card, .feature, .footer-nav a, .mobile-nav a {
  transition: box-shadow 0.13s, background 0.15s, color 0.15s, transform 0.15s;
}
button:active, .primary-cta:active {
  transform: scale(0.97);
}

/* ==========================
   ACCESSIBILITY
   ========================== */
[tabindex="0"]:focus, a:focus, button:focus {
  outline: 2px solid #89B4A1;
  outline-offset: 1.5px;
}

/* ==========================
   MISC CLASSES & OVERRIDES
   ========================== */
@media (prefers-color-scheme: dark) {
  body {
    background: #0B2025;
    color: #F9EED3;
  }
  header, .features, .hero, .services, .legal, .about-short, .contact-teaser, .cta, .highlighted-cta, .footer-nav, .about, .confirmation, .testimonials, .card, .feature, .service-list li, .service-grid > div {
    background: #122327 !important;
    color: #F9EED3 !important;
    box-shadow: 0 1px 18px 0 rgba(249,238,211, 0.08);
  }
  .card, .feature, .feature-icons {
    background: #16353A !important;
  }
  a, .footer-contact a {
    color: #F9EED3;
  }
  .footer-nav a {
    color: #F9EED3;
  }
  .footer-nav a:hover, .footer-nav a:focus {
    background: #16353A;
    color: #F9EED3;
  }
  .testimonials blockquote, .testimonial-card, .info-box {
    background: #16353A !important;
    color: #F9EED3 !important;
  }
  .cookie-banner, .cookie-modal {
    background: #122327;
    color: #F9EED3;
    border-top: 1.5px solid #20343b;
  }
}

::-webkit-scrollbar {
  width: 11px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: #89B4A1;
}
