/* 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.6;
  background: #F7F7FA;
  color: #2E4053;
}

ol, ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

blockquote, q { quotes: none; }
blockquote::before, blockquote::after,
q::before, q::after { content: ""; }

a { text-decoration: none; color: inherit; transition: color 0.2s; }
a:focus { outline: 2px solid #86C8BC; }

table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; display: block; }

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: #F7F7FA;
  color: #2E4053;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 8px; }
h4, h5 { font-size: 1rem; line-height: 1.2; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; }
strong { font-weight: bold; }

.tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #86C8BC;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* GENERAL CONTAINERS & LAYOUTS */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(46,64,83,.06);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  max-width: 700px;
}

.feature-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.feature-grid > div, .card {
  display: flex;
  flex-direction: column;
  background: #F7F7FA;
  border-radius: 16px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 6px 24px rgba(134, 200, 188, 0.12), 0 1px 2px 0 rgba(46,64,83,.06);
  transition: transform 0.18s cubic-bezier(.29,1.18,.66,1), box-shadow 0.2s;
  margin-bottom: 20px;
  min-width: 250px;
  flex: 1 1 260px;
}
.card:hover, .feature-grid > div:hover{
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 10px 32px rgba(46,64,83,0.15), 0 1.5px 4px rgba(134, 200, 188, 0.14);
}
.card img, .feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; background: #fff; border-radius: 16px; box-shadow: 0 2px 8px rgba(46,64,83,.04); margin-bottom: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

.icons-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin: 24px 0 8px;
  align-items: center;
}
.icons-row img { width: 44px; height: 44px; }

.client-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}

/* BUTTONS & CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  padding: 0.85em 2.2em;
  min-width: 155px;
  margin-top: 8px;
  box-shadow: 0 2px 12px rgba(46,64,83,0.08), 0 1px 1.5px rgba(134,200,188,0.08);
  letter-spacing: 0.2px;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s, transform 0.17s;
}
.cta.primary {
  background: #2E4053;
  color: #fff;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #86C8BC;
  color: #2E4053;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 2px 20px #86C8BC33;
}
.cta.secondary {
  border: 2px solid #86C8BC;
  color: #2E4053;
  background: #fff;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #86C8BC;
  color: #fff;
  box-shadow: 0 3px 24px #86C8BC44;
}

/* NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px rgba(46,64,83,0.07);
  position: relative;
  z-index: 20;
  padding: 0;
}
header .container { max-width: 1160px; }
header .logo img { height: 52px; width: auto;  }
header {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 0;
  flex-direction: row;
  justify-content: space-between;
  min-height: 84px;
  position: relative;
  border-bottom: 2px solid #F7F7FA;
}
header > .logo { margin-left: 28px; }
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 2px;
  color: #2E4053;
  border-radius: 8px;
  transition: background 0.13s, color 0.15s;
}
header nav a:hover,
header nav a:focus {
  background: #86C8BC33;
  color: #2E4053;
}
header nav a.cta.primary {
  margin-left: 26px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #2E4053;
  cursor: pointer;
  margin-right: 22px;
  transition: color 0.15s;
  z-index: 103;
}
.mobile-menu-toggle:hover { color: #86C8BC; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 8px 44px rgba(0,0,0,0.21);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.45,1.38,.53,.95);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 32px 48px 32px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #2E4053;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 28px;
  transition: color 0.16s;
}
.mobile-menu-close:hover { color: #86C8BC; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #2E4053;
  padding: 12px 0 7px 4px;
  border-radius: 10px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #86C8BC44;
  color: #2E4053;
}

@media (max-width: 1100px) {
  .container { padding: 0 14px; }
}
@media (max-width: 1020px) {
  header nav { gap: 14px; }
  .feature-grid, .card-container { gap: 16px; }
  .feature-grid > div, .card { min-width: 180px; padding: 18px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .feature-grid > div, .card { flex-basis: 100%; min-width: 120px; }
}

@media (max-width: 880px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header { justify-content: space-between; }
}

@media (max-width: 768px) {
  html { font-size: 92%; }
  .container {
    padding: 0 4vw;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 6vw;
    border-radius: 13px;
  }
  .content-wrapper, .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cards, .card-content, .feature-item {
    gap: 14px;
  }
  .cta { min-width: 120px; padding: 0.7em 1.6em;}
  h1 { font-size: 2rem; }
  h2 { font-size: 1.36rem; }
  h3 { font-size: 1.1rem; }
}

@media (max-width: 560px) {
  header .logo img { height: 36px; }
  .client-logos { gap: 12px; }
}

/* FOOTER */
footer {
  background: #2E4053;
  color: #fff;
  width: 100%;
  margin-top: 48px;
  padding: 0;
}
footer .container { padding: 0 20px; }
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 44px 0 24px 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #86C8BC;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0px;
  padding: 2px 0;
  transition: color 0.13s;
}
footer nav a:hover { color: #fff; }
.logo-footer img {
  height: 54px; width: auto;
  margin-bottom: 10px;
}
.footer-contact {
  font-size: 0.97rem;
  margin-top: 6px;
  color: #e6eaf0;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
}
.footer-social a img {
  width: 36px; height: 36px;
  filter: brightness(97%) sepia(0.36) saturate(1.2) hue-rotate(140deg);
  transition: filter 0.14s;
}
.footer-social a:hover img {
  filter: brightness(111%) sepia(0.8) saturate(1.8);
}
@media (max-width: 900px) {
  footer .content-wrapper { flex-direction: column; align-items: flex-start; gap: 24px;}
  .logo-footer img { margin-bottom: 0; }
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: #fff;
  color: #2E4053;
  border: 2px solid #86C8BC38;
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 22px;
  box-shadow: 0 2px 9px rgba(46,64,83,0.03);
  font-size: 1.09rem;
  line-height: 1.7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: box-shadow 0.16s, border 0.18s;
  gap: 12px;
  max-width: 600px;
}
.testimonial-card:hover {
  box-shadow: 0 3px 26px #86C8BC33, 0 2px 16px #2E40532b;
  border-color: #86C8BCaa;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  color: #2E4053;
  font-weight: 600;
  letter-spacing: .2px;
}
.testimonial-meta span {
  color: #86C8BC;
  font-size: 1.05em;
  font-weight: bolder;
}

/* FORMS */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 2px solid #86C8BC66;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  transition: border 0.18s;
  outline: none;
  width: 100%;
  background: #F7F7FA;
  color: #2E4053;
}
input:focus, textarea:focus, select:focus {
  border-color: #86C8BC;
}

/* BLOCKQUOTE */
blockquote {
  background: #86C8BC18;
  border-left: 4px solid #86C8BC;
  color: #2E4053;
  margin: 18px 0 18px 0;
  padding: 16px 20px;
  font-style: italic;
  border-radius: 8px 28px 24px 8px;
}

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #2E4053;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  padding: 18px 30px 18px 20px;
  box-shadow: 0 2px 22px #2E405344;
  font-size: 1rem;
  border-radius: 8px 8px 0 0;
  animation: cookie-slide-in 0.5s cubic-bezier(.34,1.61,.64,1) 1;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-left: auto;
}
.cookie-banner button, .cookie-banner .cta {
  background: #86C8BC;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2E4053;
  border-radius: 22px;
  padding: 7px 21px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, transform 0.12s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #F7F7FA;
  color: #2E4053;
  transform: scale(1.06);
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #2E4053;
  border: 2px solid #86C8BC;
}
.cookie-banner .cookie-settings:hover {
  background: #86C8BC;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 11px; padding: 17px 8vw; font-size: 0.98rem;}
  .cookie-banner .cookie-btns { margin-left: 0; width: 100%; justify-content: flex-start; }
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(46, 64, 83, 0.85);
  z-index: 11000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.33s cubic-bezier(.42,1.14,.62,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #2E4053;
  min-width: 320px; max-width: 96vw;
  padding: 36px 32px 28px 32px;
  border-radius: 24px;
  box-shadow: 0 2px 40px #2E405355;
  display: flex; flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}
.cookie-modal-content label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #2E4053;
  font-size: 1.66rem;
  font-weight: 700;
  position: absolute;
  top: 18px; right: 22px;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover {
  color: #86C8BC;
}
.cookie-toggle {
  appearance: none;
  width: 34px; height: 20px;
  border-radius: 15px;
  background: #86C8BC44;
  cursor: pointer;
  position: relative;
  transition: background 0.13s;
  outline: none;
}
.cookie-toggle:checked {
  background: #86C8BC;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1px;
  transition: transform 0.14s;
  box-shadow: 0 1px 4px #4442;
}
.cookie-toggle:checked:before {
  transform: translateX(13px);
}
.cookie-modal-content .cookie-legend {
  color: #767676;
  font-size: 0.96em;
  margin-bottom: 9px;
}

@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 22px 8px;
    min-width: 92vw; max-width: 99vw;
  }
}

/* VISUAL ACCENTS & DECORATION */
section {
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ICONS */
section img[src*='icon-'], .footer-social img, .icons-row img {
  background: #86C8BC22;
  border-radius: 9px;
  padding: 5px;
  box-shadow: 0 1px 6px #86C8BC22;
  margin-bottom: 11px;
}

/* GEOMETRIC SHAPES (as MODERN_BOLD accents) */
section {
  position: relative;
  overflow: visible;
}
section:after {
  content: '';
  display: block;
  position: absolute;
  left: -40px;
  bottom: -30px;
  width: 62px; height: 43px;
  border-radius: 18px 40px 40px 4px;
  background: #2E405312;
  z-index: 0;
}
@media (max-width: 800px) {
  section:before, section:after { display: none; }
}

/* SPACINGS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; }
.content-grid { gap: 20px; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { gap: 15px; }

/* MISC */
ul:not([class]), ol:not([class]) { margin-bottom: 18px; }

/* MICRO-INTERACTIONS */
button, .cta, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  transition: background 0.16s, transform 0.13s, color 0.14s;
}
button:active, .cta:active {
  transform: scale(0.98);
}

::-webkit-scrollbar { width: 11px; background: #F7F7FA; }
::-webkit-scrollbar-thumb { background: #86C8BC77; border-radius: 11px; }

/* ACCESSIBILITY FOCUS OUTLINE */
:focus-visible, .cta:focus-visible {
  outline: 2.5px dashed #86C8BC;
  outline-offset: 2px;
}

/* ACCESSIBILITY: Reduce Animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
