/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F3F6FB;
  color: #1B263B;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #5BC0BE;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #1B263B;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.4em;
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  body {
    font-size: 15px;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: #1B263B;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.375rem; line-height: 1.2; margin-bottom: 10px; }
h4 { font-size: 1.125rem; line-height: 1.2; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.375rem; }
}
p {
  margin-bottom: 18px;
  font-weight: 400;
}
strong { font-weight: 700; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(27, 38, 59, 0.06);
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* HEADER & NAVIGATION */
header {
  background: #1B263B;
  box-shadow: 0 2px 24px 0 rgba(27,38,59,0.13);
  z-index: 20;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 0 0 10px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 12px 0;
  transition: color 0.18s;
}
header nav a.cta-primary {
  background: #5BC0BE;
  color: #1B263B;
  border-radius: 32px;
  font-size: 1.05rem;
  padding: 11px 28px;
  margin-left: 14px;
  box-shadow: 0 4px 16px 0 rgba(91,192,190,0.12);
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.16s;
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: #1B263B;
  color: #5BC0BE;
  transform: translateY(-2px) scale(1.04);
}
header nav img {
  height: 34px;
  margin-right: 18px;
  margin-left: 0;
}

/* MOBILE MENU  */
.mobile-menu-toggle {
  display: none;
  background: #5BC0BE;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 9px;
  padding: 7px 20px 7px 16px;
  margin-left: auto;
  margin-right: 10px;
  box-shadow: 0 4px 16px 0 rgba(91,192,190,0.10);
  cursor: pointer;
  transition: background .2s, transform .18s;
  z-index: 110;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #1B263B;
  color: #5BC0BE;
  outline: none;
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: #1B263B;
  z-index: 200;
  box-shadow: 0 3px 36px 0 rgba(27,38,59,0.31);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #fff;
  color: #1B263B;
  border: none;
  font-size: 2.1rem;
  border-radius: 9px;
  margin: 22px 18px 0 0;
  padding: 3px 18px 3px 14px;
  cursor: pointer;
  transition: background .18s, color .18s;
  z-index: 210;
}
.mobile-menu-close:active,
.mobile-menu-close:focus {
  background: #5BC0BE;
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 38px 30px 0 30px;
}
.mobile-nav a {
  color: #5BC0BE;
  background: transparent;
  font-size: 1.275rem;
  font-weight: 700;
  padding: 13px 0 13px 6px;
  border: none;
  border-radius: 5px;
  transition: color .2s, background .14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  background: #5BC0BE;
}
@media (max-width: 1120px) {
  nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  nav {
    gap: 10px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MAIN CONTENT */
main {
  flex: 1;
  margin-bottom: 80px;
  margin-top: 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  background: none;
}

/* GRID/FLEX UTILITY LAYOUTS */
.card-container, .feature-grid, .blog-posts-grid, .team-section, .vendor-partners, .industry-icons, .benefit-icons, .process-icons, .company-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  gap: 24px;
  justify-content: flex-start;
}
.card-container {
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(91,192,190,0.09);
  padding: 30px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  max-width: 310px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F6FB;
  border: 2.5px solid #5BC0BE;
  border-radius: 18px;
  transition: box-shadow .25s, border-color .2s;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1B263B;
  box-shadow: 0 4px 24px rgba(91,192,190,0.07);
  min-width: 250px;
  max-width: 800px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: #1B263B;
  box-shadow: 0 6px 38px rgba(91,192,190, 0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.team-section > div,
.case-snippets > ul > li,
.text-section ul > li,
.text-section ol > li,
ul > li {
  margin-bottom: 14px;
  line-height: 1.7;
  font-weight: 500;
}
.categories-menu ul,
.tags-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.categories-menu li,
.tags-list li {
  background: #E8F6F8;
  color: #1B263B;
  padding: 5px 16px;
  border-radius: 9px;
  font-size: 0.99rem;
  font-weight: 600;
}
.tags-list li { color: #5BC0BE; background: #fff; font-weight: 700; }

@media (max-width: 900px) {
  .feature-grid, .card-container, .blog-posts-grid, .vendor-partners, .industry-icons, .benefit-icons, .process-icons, .company-logos {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .blog-posts-grid {
    flex-direction: column;
    gap: 18px;
  }
  .team-section { flex-direction: column; gap: 15px; }
  .text-image-section { flex-direction: column; gap: 24px; }
  .content-wrapper { padding: 8px 0; gap: 14px; }
  .section, section { padding: 24px 0; margin-bottom: 34px; }
}

/* BUTTONS & CTAs */
.cta-primary, a.cta-primary, button.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  background: #5BC0BE;
  color: #1B263B;
  border: none;
  border-radius: 38px;
  padding: 14px 36px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(91, 192, 190, 0.14);
  letter-spacing: 0.06em;
  margin-top: 14px;
  margin-bottom: 14px;
  outline: none;
  transition: background 0.16s, color 0.16s, transform 0.17s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #1B263B;
  color: #5BC0BE;
  transform: scale(1.055);
  box-shadow: 0 7px 32px rgba(27, 38, 59, 0.13);
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: inherit;
}

/* CARDS, ICONS, BADGES */
.feature-grid > div, .team-section > div, .case-snippets ul > li, .blog-posts-grid > article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(91,192,190,0.07);
  padding: 27px 20px 21px 20px;
  min-width: 220px;
  transition: box-shadow .2s, transform .18s;
  margin-bottom: 20px;
  flex: 1 1 240px;
}
.feature-grid > div:hover, .feature-grid > div:focus-within, 
.team-section > div:hover, .team-section > div:focus-within, 
.case-snippets ul > li:hover,
.blog-posts-grid > article:hover {
  box-shadow: 0 6px 22px rgba(91,192,190,0.14);
  transform: translateY(-2px) scale(1.03);
}
.feature-grid img, .team-section img, .benefit-icons img, .process-icons img, .trust-badges img, .vendor-partners img, .industry-icons img, .company-logos img, .map-location img {
  height: 46px;
  width: auto;
  margin-bottom: 10px;
  border-radius: 11px;
}
@media (max-width: 768px) {
  .feature-grid > div, .team-section > div, .case-snippets ul > li, .blog-posts-grid > article {
    min-width: 140px;
    padding: 18px 9px 17px 14px;
  }
  .feature-grid img { height: 38px; }
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #1B263B;
}
.testimonial-card span {
  margin-left: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #5BC0BE;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
@media (max-width: 768px) {
  .testimonial-slider { flex-direction: column; gap: 20px; }
  .testimonial-card { min-width: unset; max-width: unset; }
}

/* TRUST BADGES & PARTNERS */
.trust-badges, .vendor-partners, .company-logos, .benefit-icons, .industry-icons, .process-icons, .commitment-icons, .certificates {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.trust-badges img, .certificates img, .commitment-icons img {
  background: #fff;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(91,192,190,0.11);
  padding: 7px;
}
@media (max-width: 768px) {
  .trust-badges, .vendor-partners, .company-logos, .benefit-icons, .industry-icons, .process-icons, .commitment-icons, .certificates {
    gap: 14px;
    margin-top: 5px;
  }
}

/* FOOTER */
footer {
  background: #1B263B;
  color: #fff;
  padding: 42px 0 20px 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 8px;
}
footer nav a {
  color: #5BC0BE;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: none;
  background: none;
  padding: 0;
}
footer a:hover, footer a:focus {
  color: #fff;
}
footer img {
  height: 44px;
  margin-bottom: 10px;
}
.contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  background: rgba(91,192,190,0.08);
  padding: 18px;
  border-radius: 14px;
}
.contact-box img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}
.contact-box p, .contact-box a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.contact-box a:hover { color: #5BC0BE; }
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .contact-box { margin-top: 0; }
}

/* CONTACT & DETAILS */
.contact-details, .map-location {
  background: #fff;
  box-shadow: 0 2px 10px rgba(91,192,190,0.11);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 22px;
}
.contact-details p, .map-location p {
  margin-bottom: 10px;
  color: #1B263B;
  font-weight: 600;
}
.contact-details img, .map-location img {
  height: 29px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .contact-details, .map-location {
    padding: 12px 12px;
  }
}

/* NEWSLETTER / FORMS */
.newsletter-form, .newsletter-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.newsletter-section .cta-primary {
  margin-top: 5px;
}

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  width: 100vw;
  background: #1B263B;
  color: #fff;
  padding: 21px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -2px 26px rgba(27,38,59,0.22);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  transform: translateY(0);
}
.cookie-banner.closed {
  transform: translateY(120%);
}
.cookie-banner p {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  margin: 0 0 0 2px;
  outline: none;
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.cookie-buttons .accept {
  background: #5BC0BE;
  color: #1B263B;
}
.cookie-buttons .accept:hover, .cookie-buttons .accept:focus {
  background: #fff;
  color: #1B263B;
}
.cookie-buttons .reject {
  background: #fff;
  color: #5BC0BE;
}
.cookie-buttons .reject:hover, .cookie-buttons .reject:focus {
  background: #5BC0BE;
  color: #fff;
}
.cookie-buttons .settings {
  background: transparent;
  color: #fff;
  border: 2px solid #5BC0BE;
}
.cookie-buttons .settings:hover, .cookie-buttons .settings:focus {
  background: #5BC0BE;
  color: #1B263B;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 10px;
  }
  .cookie-buttons {
    width: 100%;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(27,38,59,0.67);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .25s;
}
.cookie-modal {
  background: #fff;
  color: #1B263B;
  border-radius: 18px;
  min-width: 330px;
  max-width: 94vw;
  padding: 38px 32px 26px 32px;
  box-shadow: 0 9px 34px rgba(27,38,59,0.24);
  text-align: left;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  animation: slideDown .5s cubic-bezier(.6,.24,0,1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 6vw;
  }
}
.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.33rem;
  font-weight: 800;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal .toggle {
  margin-left: auto;
}
.cookie-modal .cookie-category[aria-disabled="true"] label,
.cookie-modal .cookie-category[aria-disabled="true"] {
  color: #aaa;
  cursor: not-allowed;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 22px;
  background: #fff;
  border: none;
  color: #1B263B;
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(27,38,59,0.10);
  transition: background 0.15s, color 0.13s;
  width: 34px; height: 34px;
  display: flex;align-items: center;justify-content: center;
  padding: 0;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #5BC0BE;
  color: #fff;
}
/* Switch Toggle */
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  margin-left: 9px;
}
.cookie-modal .switch input { opacity: 0; width: 0; height: 0; }
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E8F6F8;
  border-radius: 14px;
  transition: .2s;
}
.cookie-modal .switch input:checked + .slider { background: #5BC0BE; }
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
}
@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}
@keyframes slideDown {
  from {transform: translateY(-80px) scale(0.95);} to {transform: translateY(0) scale(1);}
}

/* VISUAL HIERARCHY & SPACING ADJUSTMENTS */
.text-section, .blog-posts-grid {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.company-logos, .vendor-partners, .industry-icons {
  justify-content: flex-start;
  gap: 22px;
}
.case-snippets { margin-top: 24px; }
.case-snippets h3 { font-size: 1.09rem; }

/* Blog and Category Elements */
.blog-posts-grid article {
  flex: 1 1 270px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(91,192,190,0.09);
  padding: 18px 20px;
  transition: box-shadow .15s, transform .13s;
}
.blog-posts-grid article:hover,
.blog-posts-grid article:focus-within {
  box-shadow: 0 7px 18px rgba(27,38,59,0.09);
  transform: scale(1.035);
}

.categories-menu h4, .tags-list h4 {
  margin-bottom: 9px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1B263B;
}

/* List formatting */
ul, ol {
  margin-bottom: 17px;
  font-weight: 500;
}
ul li, ol li { margin-bottom: 8px; }
.text-section ul, .text-section ol {
  margin-bottom: 14px;
}

/* Animations for micro-interactions */
.cta-primary, .feature-grid > div, .team-section > div, .testimonial-card, .cookie-banner {
  transition: box-shadow .22s, color .16s, background .16s, transform .18s;
}

/* For high contrast micro-accents */
.cta-primary::before, .cta-primary::after {
  display: none;
}

/* Responsive spacing and container */
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper { padding: 0 2px; }
  .section, section { padding: 10px 0; }
}

/* Z-INDEX STACKS FOR UI LAYERS */
header, .mobile-menu-toggle { z-index: 100; }
.mobile-menu { z-index: 200; }
.mobile-menu-close { z-index: 210; }
.cookie-banner { z-index: 1500; }
.cookie-modal-overlay { z-index: 2000; }

/* Hide elements visually (utility) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  border: 0;
}
