/* -------------------------------------------------------------
   CSS RESET & 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, main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F7FA;
  color: #24344D;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #36B1BF;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #24344D;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* -------------------------------------------------------------
   BASE TYPOGRAPHY & GENERAL LAYOUT
------------------------------------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #24344D;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #24344D;
  line-height: 1.25;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #24344D;
  line-height: 1.3;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #24344D;
}
p, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #2c3d55;
  line-height: 1.6;
}
strong, b {
  font-weight: 600;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 780px;
  margin: 0 auto;
}

/* -------------------------------------------------------------
   HEADER & NAVIGATION (Desktop & Mobile)
------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(36,52,77,0.04);
  position: relative;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  height: 55px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #24344D;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #36B1BF;
}
.cta.primary {
  background: #36B1BF;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 24px;
  padding: 12px 32px;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(36,52,77,0.1);
  border: none;
  outline: none;
  transition: background 0.18s, box-shadow 0.2s;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #24344D;
  color: #fff;
  box-shadow: 0 6px 20px rgba(36,52,77,0.16);
}

/* Mobile Burger */
.mobile-menu-toggle {
  display: none;
  background: #36B1BF;
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: absolute;
  right: 24px;
  top: 13px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #24344D;
}

/* Mobile Menu Styling */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  background: #24344D;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1100;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.39s cubic-bezier(.62,0,.44,1), opacity 0.19s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 30px 0 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1120;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #36B1BF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 54px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #36B1BF;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 570px) {
  header .container {
    padding-left: 0;
    padding-right: 0;
  }
  .mobile-menu-close {
    margin-right: 14px;
    font-size: 2rem;
  }
  .mobile-nav {
    margin-left: 20px;
  }
}

/* -------------------------------------------------------------
   HERO BANNER + GENERAL SECTIONS
------------------------------------------------------------- */
.hero {
  background: linear-gradient(92deg, #24344D 90%, #36B1BF 180%);
  color: #fff;
  padding: 80px 0 64px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 680px;
  color: #fff;
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero p {
  color: #f0f4f8;
  margin-bottom: 32px;
  font-size: 1.15rem;
}
.hero .cta.primary {
  background: #fff;
  color: #24344D;
  box-shadow: 0 2px 12px rgba(54,177,191,0.12);
  border: 2px solid #36B1BF;
}
.hero .cta.primary:hover,
.hero .cta.primary:focus {
  background: #36B1BF;
  color: #fff;
  border: 2px solid #fff;
}

.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}
.cfa-section {
  margin-bottom: 60px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* -------------------------------------------------------------
   FLEX UTILITIES & CARD LAYOUTS
------------------------------------------------------------- */
.features-grid,
.services-list,
.leadership-bios,
.industries-grid,
.card-container,
.case-study-cards,
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features-grid li,
.features-grid > div,
.services-list > div,
.leadership-bios > div,
.industries-grid > div, 
.case-study-cards > .card, 
.blog-list > .blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(36,52,77,0.08);
  padding: 28px 22px 22px 22px;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 260px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.21s;
}
.features-grid li:hover,
.features-grid > div:hover,
.services-list > div:hover,
.leadership-bios > div:hover,
.industries-grid > div:hover,
.case-study-cards > .card:hover,
.blog-list > .blog-card:hover {
  box-shadow: 0 8px 32px 0 rgba(36,52,77,0.17);
  transform: translateY(-4px) scale(1.012);
}
.services-list {
  gap: 28px;
  margin-bottom: 32px;
}
.service-highlight-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(36,52,77,0.06);
  padding: 22px 20px;
  flex: 1 1 260px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-highlight-card:hover {
  box-shadow: 0 8px 32px 0 rgba(54,177,191,0.09);
  transform: translateY(-2px) scale(1.012);
}
.bio-card {
  background: #f5f7fa;
  color: #24344D;
  border-radius: 13px;
  box-shadow: 0 1px 6px rgba(36,52,77,0.05);
  padding: 22px 16px 15px 16px;
  flex: 1 1 220px;
  min-width: 170px;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 24px 0 rgba(36,52,77,0.15);
  border-radius: 14px;
  background: #fff;
  padding: 28px 24px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 380px;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

/* Testimonials slider/cards */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,52,77,0.09);
  margin-bottom: 20px;
  max-width: 380px;
  min-width: 250px;
  position: relative;
}
.testimonial-card blockquote {
  color: #2c3d55;
  font-size: 1.03rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #24344D;
  font-weight: 500;
  margin-top: 7px;
}
.client-logos {
  display: flex;
  align-items: center;
  gap: 36px;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(36,52,77,0.07);
  padding: 18px 16px 14px 16px;
  flex: 1 1 208px;
  min-width: 180px;
  margin-bottom: 20px;
}
.faq h3 {
  font-size: 1.1rem;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(36,52,77,0.07);
  padding: 18px 18px 14px 18px;
  min-width: 200px;
  flex: 1 1 220px;
}

.whitepapers-downloads ul {
  margin-top: 1rem;
  margin-bottom: 14px;
  list-style-type: disc;
  padding-left: 20px;
}
.whitepapers-downloads a {
  color: #24344D;
  border-bottom: 1px dotted #36B1BF;
  transition: color 0.16s;
}
.whitepapers-downloads a:hover {
  color: #36B1BF;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #24344D;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 48px 18px;
}
.cta-section h2,
.cta-section p {
  color: #fff;
}
.cta-section .cta.primary {
  background: #36B1BF;
  color: #fff;
  border: 2px solid #fff;
  margin-top: 20px;
}

/* Special Thank You Section */
.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45vh;
}

/* Contact Info Block */
.contact-info-block {
  background: #f4f8fc;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(54,177,191,0.05);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-block img {
  vertical-align: middle;
  margin-right: 6px;
  width: 18px;
  height: 18px;
}

/* Workflow Diagrams */
.workflow-diagram ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}
.workflow-diagram ul li {
  background: #eaf4fa;
  border-radius: 10px;
  padding: 13px 20px;
  color: #24344D;
  min-width: 145px;
  font-size: 0.98rem;
  font-weight: 500;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
footer {
  background: #24344D;
  color: #fff;
  padding-top: 44px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 35px;
  border-bottom: 1px solid #2C4363;
  padding-bottom: 30px;
  margin-bottom: 10px;
}
.footer-logo img {
  width: 85px;
  height: auto;
  margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #b5c6db;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #36B1BF;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #cdd9ea;
  font-size: 0.97rem;
}
.footer-contact-info img {
  width: 17px;
  margin-right: 5px;
  vertical-align: text-bottom;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal-nav a {
  color: #9eb7d4;
  font-size: 0.95rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: color 0.17s;
}
.footer-legal-nav a:hover,
.footer-legal-nav a:focus {
  color: #36B1BF;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 8px;
}
.footer-social a img {
  height: 27px;
  width: 27px;
  border-radius: 7px;
  background: #fff;
  transition: box-shadow 0.12s, background 0.15s;
  padding: 2px;
}
.footer-social a:hover img {
  background: #36B1BF;
  box-shadow: 0 2px 12px rgba(54,177,191,0.16);
}
.footer-copyright {
  font-size: 0.98rem;
  color: #a4b2c7;
  margin-left: 14px;
}

/* -------------------------------------------------------------
   COOKIE CONSENT BANNER + MODAL
------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  color: #24344D;
  box-shadow: 0 -2px 20px rgba(36,52,77,0.13);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 24px 14px 24px;
  gap: 16px;
  transition: transform 0.37s cubic-bezier(.62,0,.44,1) 0.04s, opacity 0.17s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  font-size: 1rem;
  color: #24344D;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.cookie-btn {
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.16s, color 0.12s, box-shadow 0.14s;
  margin-right: 6px;
  background: #e6f4f8;
  color: #24344D;
  box-shadow: 0 2px 7px rgba(54,177,191,0.06);
}
.cookie-btn.accept {
  background: #36B1BF;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #24344D;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #24344D;
  border: 1px solid #36B1BF;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #f8dad8;
  border-color: #24344D;
}
.cookie-btn.settings {
  background: #fff;
  color: #36B1BF;
  border: 1px solid #36B1BF;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #f0f6fa;
  border-color: #24344D;
}

/* Cookie Modal Dialog */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,52,77,0.65);
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #24344D;
  border-radius: 18px;
  padding: 32px 35px 22px 35px;
  min-width: 300px;
  box-shadow: 0 8px 36px rgba(36,52,77,0.24);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: fadeInScale 0.25s cubic-bezier(.54,0,.46,1);
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  border: none;
  color: #36B1BF;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #24344D;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-toggle {
  width: 48px;
  height: 26px;
  border-radius: 13px;
  background: #e2e7ed;
  position: relative;
  display: inline-block;
  transition: background 0.21s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #36B1BF;
  border-radius: 50%;
  transition: left 0.21s, background 0.15s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 24px;
  background: #24344D;
}
.cookie-category.disabled label {
  color: #e0e0e0;
}
/* Modal action buttons */
.cookie-modal .cookie-btn {
  margin-top: 10px;
  margin-right: 7px;
  min-width: 110px;
}

/* -------------------------------------------------------------
   RESPONSIVE STYLES
------------------------------------------------------------- */
@media (max-width: 1200px) {
  .features-grid li,
  .features-grid > div,
  .industries-grid > div {
    min-width: 220px;
    max-width: 320px;
  }
}
@media (max-width: 950px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 17px;
  }
  .footer-logo img {
    margin-bottom: 16px;
  }
}
@media (max-width: 800px) {
  .hero {
    padding: 52px 0 32px 0;
    margin-bottom: 32px;
  }
  .features-grid,
  .services-list,
  .leadership-bios,
  .industries-grid,
  .case-study-cards,
  .blog-list {
    gap: 18px;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .section, section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}
@media (max-width: 700px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 650px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .features-grid li,
  .features-grid > div,
  .industries-grid > div, .card, .bio-card {
    min-width: 100%;
    max-width: 100%;
  }
  .content-wrapper {
    gap: 15px;
  }
}
@media (max-width: 550px) {
  .hero {
    padding: 32px 0 19px 0;
    margin-bottom: 22px;
  }
  .cookie-modal {
    min-width: 0;
    width: 94vw;
    padding: 22px 7vw 16px 7vw;
  }
}
@media (max-width: 450px) {
  .cta.primary {
    padding: 10px 12px;
    font-size: 0.97rem;
    min-width: 105px;
  }
}

/* Flexbox direction switch for mobile */
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px;
  }
  .testimonials-slider {
    flex-direction: column !important;
    gap: 18px;
  }
  .footer-bottom, .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* -------------------------------------------------------------
   MISCELLANEOUS
------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #F5F7FA;
}
::-webkit-scrollbar-thumb {
  background: #c0cedd;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #36B1BF;
}

/* Hide visually but keep accessible */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* -------------------------------------------------------------
   END OF STYLE.CSS
------------------------------------------------------------- */
