/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F7FAF8;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #0B3142;
  background: #F7FAF8;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #006C9A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0B3142;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
hr {
  border: 0;
  border-top: 1.5px solid #E0E7EA;
  margin: 24px 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #006C9A;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, span, strong {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #22262a;
}
strong {
  font-weight: 700;
}
.tagline {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0B3142;
  background: #DEEAF1;
  border-left: 5px solid #006C9A;
  padding: 10px 18px;
  margin-top: 18px;
  border-radius: 0 12px 12px 0;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: #006C9A;
  border: none;
  border-radius: 8px;
  padding: 12px 34px;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 3px 14px 0 rgba(11,49,66,0.09);
  text-transform: uppercase;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  margin-top: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #0B3142;
  box-shadow: 0 6px 18px 0 rgba(11,49,66,0.17);
  transform: translateY(-2px) scale(1.03) skew(-3deg, 0deg);
  outline: none;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(11,49,66,0.06);
  position: relative;
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: #F7FAF8;
  border-bottom: 3px solid #006C9A;
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
nav > a img {
  height: 48px;
  width: auto;
  margin-right: 38px;
}
nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  gap: 24px;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0B3142;
  font-size: 1.08rem;
  padding: 9px 12px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.12s, color 0.1s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #DEEAF1;
  color: #006C9A;
}
nav .btn-primary {
  margin-left: 32px;
}
/* Mobile nav toggle button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  background: #fff;
  color: #006C9A;
  border: 2px solid #0B3142;
  border-radius: 8px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  z-index: 250;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #DEEAF1;
  color: #0B3142;
  outline: none;
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #F7FAF8;
  box-shadow: -6px 0 32px 0 rgba(11,49,66,0.12);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.87,-.41,.19,1.44);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: #006C9A;
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,108,154,0.15);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #0B3142;
  color: #DEEAF1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 38px 0;
  align-items: flex-start;
  padding: 0 34px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  color: #0B3142;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 7px;
  width: 100%;
  transition: background 0.14s, color 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DEEAF1;
  color: #006C9A;
  outline: none;
}

/* MAIN FLEX LAYOUT PATTERNS */
.features-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}
.features-grid > div, .service-list > div {
  background: #F7FAF8;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(0,108,154,0.05);
  border: 2.5px solid #DEEAF1;
  padding: 28px 22px 24px 22px;
  min-width: 240px;
  max-width: 1fr;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.14s;
}
.features-grid > div:hover, .features-grid > div:focus-within,
.service-list > div:hover, .service-list > div:focus-within {
  border-color: #006C9A;
  box-shadow: 0 6px 38px 0 rgba(0,108,154,0.16);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(11,49,66,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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;
  width: 100%;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #DEEAF1;
  color: #0B3142;
  border-radius: 15px;
  box-shadow: 0 1px 8px 0 rgba(11,49,66,0.11);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  flex-direction: row;
  border-left: 7px solid #006C9A;
  min-height: 86px;
}
.testimonial-card p {
  color: #0B3142;
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card strong {
  margin-left: auto;
  font-size: 1rem;
  color: #006C9A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-teaser, .case-study-teaser {
  background: #F7FAF8;
  border-left: 6px solid #006C9A;
  border-radius: 0 20px 20px 0;
  padding: 18px 22px;
  margin-top: 20px;
  box-shadow: 0 2px 12px 0 rgba(11,49,66,0.05);
}

/* Price Tag */
.price {
  display: inline-block;
  background: #006C9A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 1.06rem;
  margin-top: 10px;
  align-self: flex-end;
}

/* FOOTER */
footer {
  background: #0B3142;
  padding: 0 0 24px 0;
  margin-top: 60px;
  width: 100%;
  color: #fff;
  box-shadow: 0 -1px 16px 0 rgba(0,108,154,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 0;
}
footer .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 16px;
}
footer nav {
  margin-bottom: 12px;
}
footer a {
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.15s;
}
footer a:hover, footer a:focus {
  color: #DEEAF1;
  text-decoration: underline;
}
footer .brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 3px;
}
footer .brand-info img {
  height: 44px;
  width: auto;
}
footer .brand-info span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: #DEEAF1;
  margin-left: 8px;
}
footer p {
  color: #b8c8d8;
  font-size: 0.99rem;
  text-align: center;
}

/* CONTENT & UTILITY */
.privacy-note {
  font-size: 0.95rem;
  color: #0B3142;
  background: #DEEAF1;
  border-radius: 8px;
  padding: 14px 20px;
  margin-top: 12px;
}

/* Animations */
.btn-primary, .mobile-menu-toggle, .mobile-nav a, .service-list > div, .features-grid > div {
  will-change: transform, box-shadow, background, color;
}
.testimonial-card {
  transition: box-shadow 0.2s, border-color 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(0,108,154,0.12);
  border-color: #0B3142;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 30px 8px;
  }
}
@media (max-width: 900px) {
  nav ul {
    gap: 14px;
  }
  nav .btn-primary {
    margin-left: 16px;
    padding: 11px 20px;
  }
  .features-grid, .service-list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header .container, nav {
    flex-direction: column;
    align-items: flex-start;
  }
  nav > a img {
    margin-right: 0;
  }
  nav ul {
    display: none;
  }
  nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .features-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    min-height: 0;
  }
  .footer .container, footer .content-wrapper {
    align-items: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 22px 4vw;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .btn-primary {
    padding: 12px 16px;
    font-size: 1rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 540px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .brand-info img {
    height: 32px;
  }
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12000;
  background: #0B3142;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 30px 22px 18px;
  font-size: 1rem;
  box-shadow: 0 -8px 28px 0 rgba(11,49,66,0.24);
  border-radius: 18px 18px 0 0;
  animation: slideUpBanner 0.5s cubic-bezier(.83,-0.05,.56,1.31);
}
@keyframes slideUpBanner {
  from { transform: translateY(120%); opacity: 0;} 
  to { transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.11s, color 0.11s, box-shadow 0.15s;
  box-shadow: 0 1px 3px 0 rgba(11,49,66,0.06);
}
.cookie-consent-banner .cookie-accept {
  background: #006C9A;
  color: #fff;
}
.cookie-consent-banner .cookie-accept:hover, .cookie-consent-banner .cookie-accept:focus {
  background: #0099cc;
  color: #fff;
}
.cookie-consent-banner .cookie-reject {
  background: #DEEAF1;
  color: #006C9A;
}
.cookie-consent-banner .cookie-reject:hover, .cookie-consent-banner .cookie-reject:focus {
  background: #F7FAF8;
  color: #0B3142;
}
.cookie-consent-banner .cookie-settings {
  background: #fff;
  color: #006C9A;
  border: 2px solid #006C9A;
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  background: #F7FAF8;
  color: #0B3142;
  border-color: #0B3142;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 14000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(11,49,66,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinmodal 0.26s;
}
@keyframes fadeinmodal { from { opacity: 0;} to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: #0B3142;
  border-radius: 18px;
  max-width: 420px;
  width: 92vw;
  box-shadow: 0 10px 48px 0 rgba(0,108,154,0.21);
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  margin-bottom: 4px;
}
.cookie-modal label {
  font-size: 0.98rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"]:focus + span {
  outline: 2px solid #006C9A;
  border-radius: 4px;
}
.cookie-modal .essential {
  color: #0B3142;
  font-weight: 600;
}
.cookie-modal-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 16px;
  border-radius: 7px;
  font-weight: 700;
}
.cookie-modal-actions .cookie-save {
  background: #006C9A;
  color: #fff;
  border: none;
}
.cookie-modal-actions .cookie-save:hover, .cookie-modal-actions .cookie-save:focus {
  background: #0B3142;
}
.cookie-modal-actions .cookie-cancel {
  background: #DEEAF1;
  color: #006C9A;
  border: none;
}
.cookie-modal-actions .cookie-cancel:hover, .cookie-modal-actions .cookie-cancel:focus {
  background: #F7FAF8;
  color: #0B3142;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 6vw 14px 7vw;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 18px 8px 14px 14px;
  }
}

/* ---- GEOMETRIC/STRUCTURED DECORATIVE ELEMENTS ---- */
section {
  position: relative;
  overflow: visible;
}
section:before {
  content: '';
  display: block;
  position: absolute;
  top: 18px; left: -28px;
  width: 36px; height: 36px;
  background: #DEEAF1;
  border-radius: 12px 1.5em 0 0;
  transform: rotate(-7deg);
  z-index: 1;
  opacity: 0.13;
  pointer-events: none;
}
section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 18px; right: -32px;
  width: 38px;
  height: 38px;
  background: #006C9A;
  opacity: 0.09;
  border-radius: 27% 70% 32% 60% / 30% 24% 70% 41%;
  transform: rotate(13deg);
  z-index: 1;
  pointer-events: none;
}

/* ---- MISC ---- */
::-webkit-scrollbar { width: 10px; background: #DEEAF1; }
::-webkit-scrollbar-thumb { background: #006C9A; border-radius: 8px; }
::-webkit-selection { background: #006C9A; color: #fff; }
::selection { background: #006C9A; color: #fff; }

/* Hide visually but remain accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Ensure no content overlap by spacing and gap */
section > .container:not(:last-child) {
  margin-bottom: 36px;
}

/* ---- END ---- */