/* =======================================================================
   CSS RESET and 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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #22314A;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #244484;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17223a;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.6em;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; }
h2 { font-size: 2rem; letter-spacing: -1px; }
h3 { font-size: 1.33rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1.4em; }

/* =======================================================================
   LAYOUT CONTAINERS & SPACING
======================================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section:last-child {
  margin-bottom: 0;
}

.card-container, .feature-grid, .service-grid, .use-case-blocks, .feature-highlights, .comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(36, 68, 132, 0.04), 0 1.5px 4px 0 rgba(0,0,0,0.03);
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 280px;
}
.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;
  background: #F4F7FA;
  box-shadow: 0 2px 12px 0 rgba(36, 68, 132, 0.07);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 280px;
  max-width: 370px;
  flex: 1 1 320px;
  color: #22314A;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FAQ accordion-like section */
.faq-accordion h3 {
  font-size: 1.18rem;
  margin-bottom: 0.35em;
}
.faq-accordion p {
  margin-bottom: 1.1em;
}

/* Footer grid */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0 10px 0;
  border-top: 1px solid #F4F7FA;
  margin-top: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 9px;
}

/* Contact/Info blocks */
.contact-info-brief, .info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.contact-info-brief div, .info-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
}

/* =======================================================================
   HEADER & NAVIGATION
======================================================================= */
header {
  background: #fff;
  border-bottom: 1px solid #F4F7FA;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
}

.header .container {
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  padding: 8px 3px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #244484;
  transition: color .2s;
  border-radius: 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #41B883;
  background: #F4F7FA;
}
.main-nav .btn-primary {
  margin-left: 12px;
}

/* =======================================================================
   BUTTONS
======================================================================= */
.btn-primary {
  background: #244484;
  color: #fff !important;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 1.5px 24px 0 rgba(36, 68, 132, 0.05);
  transition: background .18s, box-shadow .22s, transform .17s;
  outline: none;
  text-align: center;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #41B883 !important;
  color: #fff;
  box-shadow: 0 6px 28px 0 rgba(36, 68, 132, 0.10);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline {
  background: #fff;
  border: 1.5px solid #244484;
  color: #244484;
  border-radius: 32px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background .17s, border-color .17s, color .17s;
}
.btn-outline:hover, .btn-outline:focus {
  border-color: #41B883;
  background: #F4F7FA;
  color: #41B883;
}

/* =======================================================================
   MOBILE NAVIGATION
======================================================================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #244484;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 4px;
  margin-left: 18px;
  transition: background .15s;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4F7FA;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 68, 132, 0.98);
  color: #fff;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.44,.13,.48,1.11);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin: 24px 24px 0 0;
  padding: 7px 15px;
  border-radius: 4px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(65,184,131,0.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 40px 0 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 12px 10px 12px 0;
  border-radius: 8px;
  transition: background .14s, color .14s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(65,184,131,0.09);
  color: #41B883;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .footer-grid { gap: 18px; }
}
@media (max-width: 820px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .brand-info { align-items: flex-start; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-grid img {
    max-width: 110px;
  }
  .container {
    padding-left: 12px; padding-right: 12px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-slider, .feature-grid, .service-grid, .use-case-blocks, .feature-highlights, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .brand-info {
    gap: 4px;
  }
}
@media (max-width:600px) {
  h1 {font-size: 1.65rem;}
  h2 {font-size: 1.24rem;}
  .section { padding: 18px 0; }
  .testimonial-card, .card {
    min-width: 0; max-width: 100%; padding: 16px 10px;
  }
  .contact-info-brief, .info-list, .testimonial-slider,
  .feature-grid, .service-grid, .use-case-blocks, .feature-highlights, .comparison-grid {
    gap: 10px;
  }
  .logo img { max-width: 110px; }
}
/* =======================================================================
   CARDS, HIGHLIGHTS, SECTIONS
======================================================================= */
.card, .feature-grid > div, .service-grid > div, .use-case-blocks > div, .feature-highlights > div, .comparison-grid > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.8px 15px 0 rgba(36, 68, 132, 0.07);
  padding: 20px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #22314A;
}
.card > img, .feature-grid > div > img, .use-case-blocks > div > img, .feature-highlights > div > img {
  margin-bottom:10px;
  max-width: 36px;
}
.card h3, .feature-grid h3, .service-grid h3, .feature-highlights h3 {
  margin-top: 0.3em;
  margin-bottom: 0.5em;
}

/* =======================================================================
   TYPOGRAPHY SCALE & UTILITIES
======================================================================= */
.fs-14 {font-size: 0.95rem;}
.fs-16 {font-size: 1rem;}
.fs-18 {font-size: 1.13rem;}
.fs-24 {font-size: 1.5rem;}
.fs-32 {font-size: 2rem;}
.fs-48 {font-size: 3rem;}
.text-center {text-align: center;}
.mt-1 {margin-top:8px;}
.mt-2 {margin-top:20px;}
.mb-2 {margin-bottom: 20px;}
.mb-3 {margin-bottom:30px;}

/* =======================================================================
   LISTS and BLOCKS
======================================================================= */
ul li, ol li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}
.text-section ul {
  padding-left: 1.8em;
  margin-bottom: 1.3em;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =======================================================================
   MICRO-INTERACTIONS & TRANSITIONS
======================================================================= */
a, button, .btn-primary, .btn-outline {
  transition: background .13s, border-color .14s, color .15s, box-shadow .18s;
}
.card, .feature-grid > div, .service-grid > div, .testimonial-card {
  transition: box-shadow .17s, transform .18s;
}
.card:hover, .feature-grid > div:hover, .service-grid > div:hover,
.testimonial-card:hover {
  box-shadow: 0 6px 48px 0 rgba(36, 68, 132, 0.13);
  transform: translateY(-2px) scale(1.015);
}

/* =======================================================================
   COOKIE CONSENT BANNER
======================================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 16px 0 rgba(36,68,132,0.07);
  padding: 22px 18px;
  z-index: 1400;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: transform .38s cubic-bezier(.43,.14,.6,1.2), opacity .17s;
  font-size: 1rem;
  color: #22314A;
}
.cookie-banner.closed {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner .cookie-actions {
  display: flex; gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .14s;
  margin: 0 2px 0 0;
}
.cookie-banner .accept {
  background: #244484; color: #fff; font-weight: 600;
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus {
  background: #41B883;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  border: 1.3px solid #244484;
  color: #244484;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F4F7FA; color: #244484;
}
.cookie-banner .settings {
  background: #41B883;
  color: #fff;
  font-weight: 500;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #244484;
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(36, 68, 132, 0.15);
  z-index: 1450;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .23s;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 38px 0 rgba(36,68,132,0.12);
  padding: 36px 34px 30px 34px;
  min-width: 315px;
  max-width: 98vw;
  color: #22314A;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: cookie-modal-in .35s cubic-bezier(.38,1.22,.46,1);
}
@keyframes cookie-modal-in {
  from { transform:scale(0.95); opacity:0; }
  to { transform:scale(1); opacity:1; }
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #bbb;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 560px) {
  .cookie-modal-content {
    padding: 20px 4vw;
    min-width: 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 8px;
    font-size: .96rem;
  }
  .cookie-banner .cookie-actions { flex-wrap: wrap; gap: 7px; }
}

/* =======================================================================
   MISCELLANEOUS/UTILITY
======================================================================= */
::-webkit-input-placeholder { color: #bbbbbb; }
::-moz-placeholder { color: #bbbbbb; }
:-ms-input-placeholder { color: #bbbbbb; }
::placeholder { color: #bbbbbb; }

hr {
  border: none;
  border-top: 1px solid #F4F7FA;
  margin: 32px 0 20px 0;
}

/* =======================================================================
   END OF STYLES
======================================================================= */
