/* RESET & BASE TYPOGRAPHY -------------------------------------------------- */
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;
}
html {
  font-size: 16px;
  line-height: 1.5;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #181818;
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #22304A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #36B380;
  outline: none;
}
ul, ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

/* CONTAINER & FLEXBOX LAYOUTS -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.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;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px;
  gap: 12px;
}

/* HEADER & NAVIGATION --------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #181818;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #36B380;
}
.cta-btn {
  background: #181818;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  padding: 12px 32px;
  border-radius: 32px;
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(34,48,74,0.05);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  outline: none;
  margin-left: 24px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #36B380;
  color: #222;
  box-shadow: 0 4px 24px rgba(54,179,128,0.16);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: #181818;
  cursor: pointer;
  margin-left: 24px;
  z-index: 120;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #36B380;
}

/* MOBILE NAV MENU ------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24,0.97);
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  padding: 38px 30px 20px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 36px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 22px;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #181818;
  color: #36B380;
}

/* HERO SECTIONS --------------------------------------------------------------- */
.hero {
  background: #22304A;
  color: #fff;
  padding: 70px 0 60px 0;
  box-shadow: 0 6px 44px rgba(34,48,74,0.07);
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.125rem;
  max-width: 670px;
  margin-bottom: 26px;
  color: #F6F8FB;
}
.hero .cta-btn {
  background: #fff;
  color: #22304A;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #36B380;
  color: #fff;
}

/* SECTION TITLES AND TYPOGRAPHY ----------------------------------------------- */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #181818;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
p, ul li, ol li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  font-size: 1rem;
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
  color: #181818;
}

/* FEATURE & SERVICE CARDS ----------------------------------------------------- */
.feature-grid, .service-grid, .industry-tiles, .industry-list-grid, .case-studies-list, .whitepapers-list, .blog-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature, .service, .industry {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(24, 24, 24, 0.06);
  padding: 32px 24px 28px 24px;
  width: calc(25% - 24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.feature img, .service img, .industry img {
  height: 40px;
  margin-bottom: 12px;
}
.feature:hover, .service:hover, .industry:hover {
  box-shadow: 0 8px 32px rgba(34,48,74,0.13);
  transform: translateY(-4px) scale(1.015);
}

/* Adjust feature card span for different layouts */
@media (max-width: 1100px) {
  .feature, .service, .industry {
    width: calc(50% - 18px);
  }
}
@media (max-width: 768px) {
  .feature, .service, .industry {
    width: 100%;
    padding: 26px 14px 20px 14px;
  }
}

/* Differentiators and Highlight Lists ----------------------------------------- */
.differentiators-list, .industry-highlights ul, .case-study-highlights ul, .impact-metrics ul, .security-highlights ul, .compliance-certifications ul, .whitepapers-list ul, .case-studies-list ul, .blog-previews ul, .next-steps-information ul {
  list-style: disc;
  padding-left: 24px;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #111;
}

/* TESTIMONIALS --------------------------------------------------------------- */
.testimonials, .industry-testimonials, .testimonial-list, .testimonial-slider {
  margin: 48px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #FAFBFC;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(36,37,40,0.10);
  padding: 32px 28px 24px 28px;
  max-width: 370px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 36px rgba(34,48,74,0.13);
  transform: scale(1.022);
}
.testimonial-card p {
  color: #181818;
  font-size: 1.06rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 0;
}
.testimonial-author {
  color: #636363;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-top: 8px;
}

.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 34px;
  align-items: center;
  justify-content: flex-start;
}
.client-logo-grid img {
  height: 40px;
  width: auto;
  opacity: .85;
  transition: opacity 0.2s;
}
.client-logo-grid img:hover {
  opacity: 1;
}

/* INDUSTRY TILES ------------------------------------------------------------- */
.industry-tiles, .industry-list-grid {
  gap: 28px;
  margin-bottom: 22px;
}
.industry-highlights, .case-study-highlights, .impact-metrics {
  margin-top: 16px;
}

/* CONTACT / CTA SECTIONS ----------------------------------------------------- */
.contact-cta, .cta, .cta-banner, .cta-newsletter, .thank-you-message {
  background: #22304A;
  color: #fff;
  border-radius: 18px;
  margin: 46px 0;
  box-shadow: 0 5px 24px rgba(34,48,74,0.11);
}
.contact-cta .content-wrapper, .cta .content-wrapper, .cta-banner .content-wrapper, .cta-newsletter .content-wrapper, .thank-you-message .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 12px 34px 12px;
}
.contact-information {
  margin: 20px 0;
}
.contact-information ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-information li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #111;
  background: #F6F8FB;
  border-radius: 8px;
  padding: 11px 16px;
}
.contact-information li img {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

/* LEGAL PAGE SECTIONS --------------------------------------------------------- */
.legal {
  background: #FAFAFA;
  color: #181818;
  border-radius: 13px;
  box-shadow: 0 3px 20px rgba(24,24,24,0.08);
  margin: 40px auto;
  padding: 44px 20px 42px 20px;
}
.legal h1 {
  font-size: 2.0rem;
}
.legal h2 {
  font-size: 1.24rem;
  font-style: italic;
  font-weight: 500;
}
.legal ul {
  padding-left: 20px;
  color: #222;
}
.legal p, .legal li {
  color: #181818;
  font-size: 1rem;
}

/* FOOTER ---------------------------------------------------------------------- */
footer {
  background: #181818;
  color: #E5E5E5;
  padding: 30px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #E5E5E5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s, text-decoration 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #36B380;
  text-decoration: underline;
}

footer span {
  font-size: 15px;
  color: #B9BDC6;
}

/* COOKIE CONSENT BANNER ------------------------------------------------------ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #181818;
  color: #fff;
  z-index: 5000;
  padding: 22px 24px;
  box-shadow: 0 -2px 22px rgba(24,24,24,0.15);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  transition: transform 0.4s, opacity 0.4s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-message {
  max-width: 660px;
  color: #fff;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn, .cookie-btn:visited {
  background: #fff;
  color: #181818;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(18,20,22,0.06);
  transition: background 0.18s, color 0.18s;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #36B380;
  color: #fff;
}
.cookie-btn.reject {
  background: #E0E0E0;
  color: #181818;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #bdbdbd;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #36B380;
  border: 1px solid #36B380;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #36B380;
  color: #fff;
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5100;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24,0.67);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .34s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 16px;
  max-width: 380px;
  width: 100%;
  padding: 38px 26px 32px 26px;
  box-shadow: 0 8px 48px rgba(24,24,24,0.16);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modalAppear .4s cubic-bezier(.39,1.15,.65,1) 1;
}
@keyframes modalAppear {
  from {
    opacity: 0;
    transform: scale(.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 2px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #E5E7EB;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}
.cookie-toggle:checked {
  background: #36B380;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal .cookie-btn {
  width: max-content;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  color: #181818;
  font-size: 1.45rem;
  cursor: pointer;
  opacity: .7;
}
.cookie-modal-close:hover {
  opacity: 1;
}

/* TABLET & MOBILE RESPONSIVE ------------------------------------------------- */
@media (max-width: 990px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .footer-nav {
    gap: 12px;
  }
  .main-nav {
    gap: 18px;
  }
  .feature-grid, .service-grid, .industry-tiles, .industry-list-grid {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero {
    padding: 38px 0 32px 0;
  }
  .section {
    margin-bottom: 40px;
    padding: 26px 6px;
  }
  .card-content {
    padding: 18px 10px;
  }
  .card {
    margin-bottom: 14px;
  }
  .testimonial-card {
    padding: 16px 10px;
    min-width: unset;
    max-width: 98vw;
  }
  .feature, .service, .industry {
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 22px 10px 15px 10px;
  }
  .feature-grid, .service-grid, .industry-tiles, .industry-list-grid, .case-studies-list, .whitepapers-list, .blog-previews {
    gap: 13px;
  }
  .content-grid {
    gap: 8px;
  }
  .client-logo-grid {
    gap: 11px;
    margin-top: 12px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 10px;
  }
  .card-container {
    gap: 10px;
  }
  .section, .contact-cta, .cta, .cta-banner, .cta-newsletter, .thank-you-message {
    margin: 24px 0;
    border-radius: 12px;
    padding: 22px 3px;
  }
  footer .container {
    gap: 8px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    font-size: 1rem;
    padding: 14px 11px;
  }
}

/* MICRO-INTERACTIONS & HOVER STYLES ------------------------------------------ */
button, .cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
}
button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.98);
}
*:focus-visible {
  outline: 2px solid #36B380;
  outline-offset: 2px;
  z-index: 2;
}

/* SMOOTH ANIMATION FOR MENU/MODAL -------------------------------------------- */
.mobile-menu {
  will-change: transform;
}
.cookie-consent-banner, .cookie-modal, .mobile-menu {
  transition: all 0.4s cubic-bezier(.39,1.15,.65,1);
}

/* UTILITIES & OVERRIDES ------------------------------------------------------ */
::-webkit-scrollbar {
  width: 10px;
  background: #e5e5e5;
}
::-webkit-scrollbar-thumb {
  background: #22304A;
  border-radius: 11px;
}

/* VISUAL HIERARCHY ----------------------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hide elements that shouldn't show by default */
.cookie-modal-overlay[aria-hidden='true'], .cookie-modal[aria-hidden='true'] {
  display: none !important;
}

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