/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #172A3A;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #164E63;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:focus, a:hover {
  color: #20B486;
  outline: 0;
}
ul, ol {
  list-style: none;
}

/* TYPOGRAPHY ================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #164E63;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #213242;
}
strong, b {
  font-weight: 600;
}
small {
  color: #75849a;
  font-size: 0.9em;
}

/* CONTAINERS & LAYOUTS ================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(22, 78, 99, 0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 6px 0 rgba(36,54,75,0.07);
  margin-bottom: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F4F7FE;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(22, 78, 99, 0.06);
  max-width: 480px;
}
.testimonial-card p {
  color: #164E63;
  font-size: 1.05rem;
  line-height: 1.7;
}
.testimonial-card span {
  font-size: 1rem;
  color: #213242;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.features-icons {
  display: flex;
  gap: 28px;
  margin-top: 20px;
}
.client-logos {
  display: flex;
  gap: 16px;
  align-items: center;
}
.service-categories {
  display: flex;
  gap: 20px;
  margin: 18px 0;
}
.service-categories span {
  background: #F4F7FE;
  padding: 7px 16px;
  border-radius: 16px;
  font-size: 1rem;
  color: #164E63;
}
.integration-examples {
  margin-top: 10px;
  font-size: 1rem;
}
/* Buttons & CTA ================================================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #164E63;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 12px 0 rgba(32,180,134,0.07);
  cursor: pointer;
  margin-top: 8px;
  gap: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #20B486;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(22,78,99,0.14);
  outline: 0;
}
.button-group {
  display: flex;
  gap: 20px;
}

/* HEADER & NAV ================================================== */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px 0 rgba(22,78,99,0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  padding: 20px 20px 20px 0;
}
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: 40px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #164E63;
  padding: 4px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #20B486;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
header img {
  height: 36px;
  margin-right: 18px;
}

/* HERO SECTIONS ================================================== */
.hero {
  background: #F4F7FE;
  border-radius: 0 0 36px 36px;
  padding: 40px 0 60px 0;
  margin-bottom: 48px;
  box-shadow: 0 2px 12px rgba(22,78,99,0.04);
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.hero h1 {
  color: #164E63;
  font-size: 2.6rem;
  line-height: 1.13;
  margin-bottom: 10px;
}
.hero p {
  color: #213242;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* FOOTER ================================================== */
footer {
  background: #fff;
  border-top: 1px solid #e5e8ee;
  padding: 40px 0 10px 0;
  margin-top: 48px;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 170px;
}
.footer-menu a {
  color: #164E63;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 0;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #20B486;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact img {
  height: 34px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #213242;
  font-size: 1rem;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: auto;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  transition: filter 0.15s;
}
.footer-social a:hover img {
  filter: brightness(0.7) saturate(2);
}

/* ACCORDION FAQ ================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #F4F7FE;
  padding: 24px 18px;
  border-radius: 12px;
}
.faq-accordion h3 {
  cursor: pointer;
  font-size: 1.1rem;
  position: relative;
  color: #164E63;
  padding-left: 0;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  color: #20B486;
}
.faq-accordion div {
  margin-bottom: 8px;
  color: #213242;
  font-size: 1rem;
  transition: max-height 0.2s, opacity 0.2s;
}
.faq-cta {
  background: #fff;
  border-left: 4px solid #20B486;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 18px;
}

/* MAP, LOGOS, ICONS, PARTNERS ================================== */
.map-location {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
}
.technology-partners {
  display: flex;
  gap: 20px;
  margin: 18px 0;
}
.technology-partners img {
  height: 36px;
}

/* BEFORE-AFTER SECTION ======================================== */
.before-after {
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 24px;
  box-shadow: 0 1px 6px 0 rgba(22, 78, 99, 0.06);
  font-size: 1rem;
}

/* CONSULTATION CTA ======================================== */
.consultation-cta {
  margin: 20px 0 0 0;
  display: flex;
  justify-content: flex-start;
}

/* General Card/Feature Styles ======================================== */
.card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(22, 78, 99, 0.13);
  transform: translateY(-3px) scale(1.01);
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) ============================= */
@media (max-width: 1120px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-social {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 42px;
    padding: 28px 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .main-nav {
    display: none !important;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    padding-right: 12px;
    padding-left: 6px;
  }
  .footer-menu {
    min-width: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-contact ul {
    gap: 6px;
  }
  .features-icons, .technology-partners {
    gap: 16px;
  }
  .card-container, .content-grid, .feature-grid {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 99vw;
  }
  .service-categories {
    gap: 12px;
  }
}
@media (max-width: 520px) {
  header img {
    height: 28px;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.27rem;
    margin-bottom: 12px;
  }
  .section {
    margin-bottom: 32px;
    padding: 18px 2px;
  }
  .testimonial-card {
    padding: 12px;
    font-size: 0.98rem;
  }
}

/* MOBILE NAVIGATION ================================================ */
.mobile-menu-toggle {
  background: #fff;
  border: none;
  position: fixed;
  top: 17px;
  right: 18px;
  z-index: 120;
  font-size: 2rem;
  color: #164E63;
  border-radius: 8px;
  padding: 3px 12px 3px 12px;
  box-shadow: 0 2px 10px rgba(22, 78, 99, 0.09);
  cursor: pointer;
  display: none;
  transition: background 0.2s, color 0.2s;
}
@media (max-width: 1000px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 140;
  background: rgba(22, 78, 99, 0.98);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 0px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 8px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(32, 180, 134, 0.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 50px 20px;
  margin-top: 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 2px;
  transition: color 0.17s;
  border-radius: 6px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #20B486;
}

/* Hide main nav on small screen, show burger ====================== */
@media (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* COOKIE CONSENT BANNER ================================================ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #164E63;
  box-shadow: 0 -2px 14px rgba(22, 78, 99, 0.07);
  z-index: 1001;
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding: 22px 14px;
  font-size: 1rem;
  transition: transform 0.25s, opacity 0.25s;
  opacity: 1;
  transform: translateY(0%);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-message {
  flex: 1;
  min-width: 170px;
}
.cookie-btn-group {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  padding: 9px 21px;
  border-radius: 22px;
  border: none;
  background: #F4F7FE;
  color: #164E63;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-btn.accept {
  background: #20B486;
  color: #fff;
  font-weight: 600;
}
.cookie-btn.reject {
  background: #164E63;
  color: #fff;
  font-weight: 600;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #164E63;
  color: #fff;
  outline: 0;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #1c726d;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #47968f;
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 6px 26px 6px;
    font-size: 0.99rem;
  }
  .cookie-btn-group {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
}

/* COOKIE CONSENT MODAL ============================================= */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(22, 78, 99, 0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(22,78,99,0.21);
  min-width: 305px;
  max-width: 92vw;
  padding: 38px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popInModal 0.22s cubic-bezier(.63,-0.01,.62,.87);
}
@keyframes popInModal {
  0% { transform: scale(0.88) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: none;
  border: none;
  color: #164E63;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 1px 9px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F4F7FE;
}
.cookie-modal h2 {
  margin-top: 0;
  font-size: 1.35rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #20B486;
  width: 18px;
  height: 18px;
}
.cookie-category .always-on {
  color: #20B486;
  font-weight: 700;
  margin-left: 4px;
}
.cookie-modal-bottom {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 21px 8px 18px 8px;
    min-width: 0;
  }
  .cookie-modal h2 {
    font-size: 1.1rem;
  }
}

/* TRANSITIONS & MICRO-INTERACTIONS ===================== */
.section, .card, .testimonial-card, .cookie-modal, .cookie-consent-banner, .main-nav a, .cta-btn, .mobile-menu, .mobile-nav a, .cookie-btn, .cookie-modal-close {
  transition: box-shadow 0.18s, transform 0.18s, background 0.19s, color 0.17s;
}

/* SCROLLBAR STYLES (minimalist) ========================== */
html {
  scrollbar-color: #d2dee2 #fff;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #d2dee2;
  border-radius: 8px;
}

/* MISCELLANEOUS & OVERRIDES ================================ */
::-selection {
  background: #20B486;
  color: #fff;
}
::placeholder {
  color: #b4beca;
  opacity: 1;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}

/* ENSURE NON-OVERLAPPING LAYOUTS (per policy) ============ */
.card,
.testimonial-card,
.section,
.feature-item {
  margin-bottom: 20px;
}
.card-container,
.content-grid,
.feature-grid {
  gap: 20px;
}

/* UTILITY CLASSES ======================================= */
.d-none { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px; }
.mt-32 { margin-top: 32px; }
.pt-18 { padding-top: 18px; }
.pb-10 { padding-bottom: 10px; }

/* END CSS */
