/* ================================================================
   RESET & BASE STYLES (inspired by modern-normalize)
================================================================ */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #1F2A36;
  min-height: 100vh;
}

img, svg {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:focus {
  outline: 2px solid #045B94;
  outline-offset: 2px;
}
ul, ol {
  margin: 0 0 16px 0;
  padding-left: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 0 16px 0;
  color: #6094b6;
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: -1px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem;  }
h3 { font-size: 1.25rem; text-transform: uppercase; }
h4 { font-size: 1.18rem; }
h5, h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  margin: 0 0 16px 0;
  color: #1F2A36;
  line-height: 1.6;
}

blockquote {
  margin: 0 0 16px 0;
  padding-left: 16px;
  border-left: 4px solid #F0456B;
  font-style: italic;
  color: #1F2A36;
  font-size: 1.1rem;
  background: #fff;
}

input, button {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button::-moz-focus-inner {
  border: 0;
}

/* ================================================================
   VARIABLES (with fallbacks for wide compatibility)
================================================================ */
:root {
  --clr-primary: #045B94;
  --clr-primary-light: #0C8CE2;
  --clr-secondary: #1F2A36;
  --clr-accent: #E8F5FA;
  --clr-hot-pink: #F0456B;
  --clr-warning: #FFBA08;
  --clr-success: #00C9A7;
  --clr-bg-light: #fff;
  --clr-bg-medium: #E8F5FA;
  --clr-footer: #112233;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ================================================================
   LAYOUT CONTAINERS & UTILITIES
================================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 24px;
  box-shadow: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(4, 91, 148, 0.07);
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px rgba(4,91,148,0.16);
  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;
  padding: 20px;
  margin-bottom: 20px;
  background: #E8F5FA;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(4,91,148,0.09);
  flex-wrap: wrap;
  border: 1.5px solid #B0EAF9;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(240,69,107,0.12), 0 4px 18px rgba(4,91,148,0.14);
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  font-size: 1rem;
  color: #045B94;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(4,91,148,0.09);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  position: relative;
  border-top: 4px solid var(--clr-primary);
  transition: box-shadow 0.18s, border-top 0.2s;
}
.feature-item:hover {
  border-top: 4px solid var(--clr-hot-pink);
  box-shadow: 0 9px 32px rgba(240,69,107,0.13), 0 4px 16px rgba(4,91,148,0.19);
  z-index: 2;
}

/***** SPECIFIC FLEXBOX GRIDS FOR BRAND HTML CLASSES *****/

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 22px;
  align-items: stretch;
  justify-content: flex-start;
  margin: 24px 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 32px 0 20px 0;
}
.service-item, .service-category {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 3px 12px rgba(4,91,148,0.07);
  border-radius: 18px;
  padding: 24px 20px 24px 20px;
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 200px;
  position: relative;
  border-left: 5px solid var(--clr-primary);
  transition: border-left 0.18s, box-shadow 0.18s;
}
.service-category:hover, .service-item:hover {
  border-left: 5px solid var(--clr-hot-pink);
  box-shadow: 0 8px 28px rgba(240,69,107,0.09), 0 2px 10px rgba(4,91,148,0.12);
  z-index: 2;
}
.icon-row, .value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 14px 0 14px 0;
}

.usps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 32px 0 18px 0;
}
.usp-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(4,91,148,0.07);
  padding: 22px 19px 22px 19px;
  min-width: 180px;
  flex: 1 1 180px;
  border-top: 4px solid var(--clr-warning);
  transition: border-top 0.18s, box-shadow 0.18s;
}
.usp-item:hover {
  border-top: 4px solid var(--clr-hot-pink);
  box-shadow: 0 8px 28px rgba(0,201,167, 0.12), 0 2px 10px rgba(4,91,148,0.09);
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 36px 0 14px 0;
}
.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex: 1 1 210px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(4,91,148,0.09);
  padding: 30px 24px 30px 24px;
  border-left: 7px solid var(--clr-success);
  margin-bottom: 20px;
  min-width: 210px;
  position: relative;
  transition: border-left 0.18s, box-shadow 0.18s;
}
.pricing-row:hover {
  border-left: 7px solid var(--clr-hot-pink);
  box-shadow: 0 12px 48px rgba(240,69,107,0.14), 0 2px 12px rgba(4,91,148,0.10);
}
.price {
  font-size: 1.7rem;
  color: var(--clr-hot-pink);
  font-weight: 700;
}

.project-summary {
  display: flex;
  flex-direction: column;
  background: #E8F5FA;
  border-radius: 16px;
  padding: 26px 22px;
  margin-bottom: 24px;
  box-shadow: 0 3px 12px rgba(4,91,148,0.07);
  border-left: 4px solid #045B94;
}

/***** FAQ Styles *****/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.faq-category {
  background: #E8F5FA;
  border-radius: 14px;
  padding: 20px 18px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.faq-item {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 3px solid var(--clr-primary);
  box-shadow: 0 2px 8px rgba(4,91,148,0.07);
  transition: box-shadow 0.16s, border-left 0.15s;
}
.faq-item:hover {
  border-left: 3px solid var(--clr-hot-pink);
  box-shadow: 0 8px 32px rgba(240, 69, 107, 0.11);
}
input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid #B0EAF9;
  margin-bottom: 22px;
  font-size: 1rem;
  transition: border-color 0.2s;
}
input[type="text"]:focus {
  border-color: #045B94;
  background: #E8F5FA;
}

/***** MAP PLACEHOLDER *****/
.map-placeholder {
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F5FA;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(4,91,148,0.06);
  margin-bottom: 22px;
}

/***** BUTTONS *****/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1.16rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  background-color: #69a1ae;
  border-radius: 32px;
  box-shadow: 0 3px 12px rgba(4,91,148,0.14);
  border: none;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.18s, transform 0.16s;
  margin: 12px 0 0 0;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #F0456B;
  color: #fff;
  box-shadow: 0 10px 26px rgba(240,69,107,0.17);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-size: 1.09rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: #045B94;
  background-color: #E8F5FA;
  border-radius: 28px;
  border: 2px solid #045B94;
  box-shadow: 0 2px 8px rgba(4,91,148,0.10);
  transition: background 0.16s, border 0.17s, color 0.16s;
  margin: 14px 0 0 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #045B94;
  color: #fff;
  border: 2px solid #F0456B;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #045B94;
  background: transparent;
  font-weight: bold;
  border-bottom: 2.5px solid #F0456B;
  font-size: 1.07rem;
  padding: 2px 0;
  margin-top: 6px;
  transition: border-color 0.18s, color 0.13s;
}
.btn-link:hover, .btn-link:focus {
  color: #fff;
  background: #F0456B;
  border-color: #045B94;
  border-radius: 6px;
  padding: 2px 10px;
}

/***** NAVIGATION & HEADER *****/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(43,64,94,0.04);
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 12;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
header img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  color: #045B94;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  padding: 5px 10px;
  border-radius: 7px;
  transition: background 0.16s, color 0.15s;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: #E8F5FA;
  color: #F0456B;
  text-decoration: underline;
}

.mobile-menu-toggle {
  display: none;
  background: #045B94;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 20px;
  cursor: pointer;
  z-index: 30;
  transition: background 0.19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F0456B;
}

/***** MOBILE MENU OVERLAY *****/
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4,91,148,0.98);
  z-index: 199;
  padding: 34px 26px 20px 26px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: mobile-slide-in 0.34s cubic-bezier(.5,.03,.2,1);
}
@keyframes mobile-slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: #fff;
  color: #045B94;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(4,91,148,0.07);
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F0456B;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 0 10px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0456B;
  color: #fff;
}
.mobile-nav a.btn-primary {
  background: #fff;
  color: #045B94;
  box-shadow: 0 6px 24px rgba(4,91,148,0.12);
  margin-top: 12px;
}
.mobile-nav a.btn-primary:hover, .mobile-nav a.btn-primary:focus {
  background: #F0456B;
  color: #fff;
}

/***** FOOTER *****/
footer {
  background: #1F2A36;
  color: #fff;
  padding: 40px 0 10px 0;
  border-top: 7px solid #045B94;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-menu a {
  color: #fff;
  text-decoration: underline;
  font-size: 1.08rem;
  padding: 2px 12px;
  transition: color 0.17s, background 0.13s;
  border-radius: 6px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F0456B;
  background: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
}
.footer-brand img {
  height: 38px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #B9D8EF;
  font-size: 1rem;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 8px;
  height: 18px;
  width: 18px;
}

/***** HERO + CTA BANNERS *****/
section:first-of-type .content-wrapper {
  background: linear-gradient(90deg, #E8F5FA 80%, #F3F9FB 100%);
  border-radius: 26px;
  box-shadow: 0 7px 32px rgba(4,91,148,0.12);
  border-top: 6px solid #045B94;
}
section:last-of-type .content-wrapper {
  background: #045B94;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 34px rgba(4,91,148,0.12);
  border-top: 6px solid #F0456B;
}
section:last-of-type .content-wrapper h2, section:last-of-type .content-wrapper p {
  color: #fff;
}
section:last-of-type .btn-primary {
  background: #fff;
  color: #045B94;
  border: none;
  box-shadow: 0 6px 24px rgba(240,69,107,0.13);
}
section:last-of-type .btn-primary:hover {
  color: #fff;
  background: #F0456B;
}

/***** TYPOGRAPHY SCALE & EMPHASIS *****/
.subheadline {
  font-family: var(--font-body);
  color: #045B94;
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

strong, b {
  color: #F0456B;
  font-weight: 700;
}

/***** SPACING/ALIGNMENT: CRITICAL GAPS AND MARGINS *****/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .feature-grid,
.usps-grid, .service-list, .pricing-table,
.icon-row, .value-icons, .footer-menu {
  gap: 20px;
}
.card, .feature-item, .service-item, .service-category,
.usp-item, .pricing-row, .project-summary,
.faq-item, .faq-category, .testimonial-card {
  margin-bottom: 20px;
}

/***** COOKIE CONSENT BANNER + MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #045B94;
  color: #fff;
  z-index: 300;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  box-shadow: 0 -4px 18px rgba(4,91,148,0.15);
  animation: cookie-slide-up 0.42s cubic-bezier(.5,.03,.2,1);
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner-message {
  font-size: 1.08rem;
  margin-right: 14px;
  max-width: 70vw;
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 10px 18px;
  border-radius: 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-accept {
  background: #00C9A7;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #20E3C0;
  color: #045B94;
}
.cookie-reject {
  background: #F0456B;
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #fff;
  color: #F0456B;
}
.cookie-settings {
  background: #fff;
  color: #045B94;
  border: 2px solid #00C9A7;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #E8F5FA;
  color: #00C9A7;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31,42,54,0.82);
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 14px 48px rgba(4,91,148,0.20);
  max-width: 420px;
  width: 90vw;
  color: #1F2A36;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-fade-in 0.35s cubic-bezier(.4,0,.2,1);
  position: relative;
}
@keyframes modal-fade-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  color: #045B94;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-preference-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  appearance: none;
  width: 32px;
  height: 22px;
  background: #B0EAF9;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #20E3C0;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-toggle:checked::after {
  transform: translateX(10px);
}
/* Always enabled toggle locked */
.cookie-toggle[disabled] {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

/***** MICRO-INTERACTIONS + ANIMATIONS *****/
a, button, .btn-primary, .btn-link, .btn-secondary {
  transition: color 0.18s, background 0.19s, box-shadow 0.19s, transform 0.13s;
}
.card, .feature-item, .service-item, .service-category, .usp-item, .pricing-row, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover, .feature-item:hover, .service-item:hover, .service-category:hover, .usp-item:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.025);
}

/***** RESPONSIVE: MOBILE-FIRST, FLEX-DIRECTION COLUMNS *****/
@media (max-width: 1020px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    font-size: 0.99rem;
  }
  .feature-grid, .service-list, .usps-grid, .pricing-table, .content-grid {
    gap: 14px;
  }
  section, .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 840px) {
  .feature-grid, .service-list, .usps-grid, .pricing-table {
    flex-direction: column;
    gap: 14px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 11px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.08rem; }
  .container {
    padding: 0 5px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-brand img {
    height: 30px;
  }
  section, .content-wrapper, .section {
    padding: 32px 7px;
  }
  .feature-grid, .service-list, .usps-grid, .pricing-table, .content-grid, .icon-row, .value-icons {
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonials-card, .pricing-row, .project-summary, .testimonial-card, .feature-item, .service-item, .service-category, .usp-item, .faq-item, .faq-category {
    min-width: 0;
  }
  .footer-contact {
    font-size: 0.99rem;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.19rem; }
  h2 { font-size: 1.07rem; }
  .footer-brand span, .footer-brand {
    font-size: 0.94rem;
  }
  .footer-contact {
    font-size: 0.87rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 14px 8px;
    font-size: 0.99rem;
  }
  .cookie-banner-message {
    margin-right: 0;
    max-width: 95vw;
  }
  .cookie-modal {
    padding: 20px 7px;
    font-size: 0.97rem;
  }
}

/***** Z-INDEX FOR NAV AND MODALS *****/
header { z-index: 12; }
.mobile-menu { z-index: 199; }
.cookie-banner { z-index: 300; }
.cookie-modal-overlay { z-index: 320; }

/***** Hide scroll on body when menu/modal open *****/
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/*************************************************  
   THEME VIBRANT/ENERGETIC COLOR MOODS & EFFECTS
*************************************************/
:root {
  /* Electric, kinetic palette */
  --clr-pulse-blue: #0C8CE2;
  --clr-lime: #00FFB6;
  --clr-hot-pink: #F0456B;
  --clr-warning: #FFBA08;
}
.section, .content-wrapper, section {
  background: #fff;
}

/*************************************************  
   COLOR CONTRAST: TESTIMONIALS & REVIEW SECTIONS
*************************************************/
.testimonial-card {
  background: #E8F5FA;
  color: #1F2A36;
}
.testimonial-card blockquote {
  color: #1F2A36;
  background: transparent;
  border-left: 4px solid #F0456B;
}
.testimonial-meta {
  color: #045B94;
}

/*************************************************  
   MISC. BRAND AND UI CLASSES
*************************************************/

.value-icons img, .icon-row img {
  height: 38px;
  width: 38px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(4,91,148,0.16);
  padding: 5px;
}

ol li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/***** Print Media (clean output) *****/
@media print {
  header, .main-nav, .mobile-menu, .mobile-menu-toggle, footer, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  section, .content-wrapper {
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
  }
}
