/* 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, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F5F7FA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
.subheadline {
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  font-weight: 400;
  color: #eee;
}
p, li, ul, ol {
  color: #294868;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong { font-weight: 700; }
.text-section p, .text-section ul, .text-section ol { max-width: 680px; }
.text-section ul, .step-list { padding-left: 24px; margin-bottom: 20px; }

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(20,55,90,0.09);
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(20,55,90,0.15);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* BRAND COLORS (gradient_modern) */
:root {
  --brand-primary: #14375A;
  --brand-secondary: #92B4D7;
  --brand-accent: #F5F7FA;
  --brand-gradient: linear-gradient(90deg, #14375A 0%, #92B4D7 100%);
  --brand-gradient-rev: linear-gradient(90deg, #92B4D7 0%, #14375A 100%);
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(20,55,90,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
.logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #14375A;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #1b588a;
  border-bottom: 2.5px solid #92B4D7;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 24px;
  background: var(--brand-gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  margin-left: 30px;
  box-shadow: 0 4px 16px rgba(20,55,90,0.08);
  letter-spacing: 0.02em;
  transition: background .22s, box-shadow .18s, transform .12s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-gradient-rev);
  box-shadow: 0 8px 24px rgba(20,55,90,0.16);
  transform: translateY(-2px) scale(1.03);
}

/* HAMBURGER (MOBILE MENU) */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #14375A;
  font-size: 2rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .15s;
  z-index: 52;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover { background: #e6edf5; }
@media (max-width: 990px) {
  .main-nav,
  .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,55,90,0.86);
  transition: transform 0.36s cubic-bezier(.37,.7,.51,1), opacity 0.22s;
  transform: translateX(100%);
  opacity: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  color: #fff;
  background: none;
  font-size: 2.2rem;
  margin: 18px 24px 24px 0;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  z-index: 102;
  transition: color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #92B4D7; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  padding: 32px 40px 40px 40px;
  align-items: flex-end;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 500;
  padding: 14px 0 12px 0;
  width: 100%;
  text-align: right;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .14s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #BFE0FF;
  border-bottom: 2px solid #BFE0FF;
}
@media (max-width: 720px) {
  .mobile-nav {
    padding: 32px 20px 24px 20px;
  }
}

/* HERO SECTION */
.hero,
.cta-section {
  width: 100%;
  min-height: 340px;
  background: var(--brand-gradient);
  color: #fff;
  padding: 48px 0 48px 0;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  box-shadow: 0 8px 36px rgba(20,55,90,0.09);
}
@media (max-width: 768px) {
  .hero, .cta-section { padding: 40px 0 40px 0; }
}
.hero h1, .cta-section h2 {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 18px;
}
.hero .cta-button, .cta-section .cta-button {
  margin-top: 6px;
  background: #fff;
  color: #14375A;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(20,55,90,0.09);
}
.hero .cta-button:hover, .cta-section .cta-button:hover {
  background: #f0f4f8;
  color: #1b588a;
}

/* FEATURES GRID */
.features {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(20,55,90,0.11);
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 26px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f8fbfd;
  box-shadow: 0 1px 10px rgba(146,180,215,0.14);
  border-radius: 14px;
  padding: 24px 22px 20px;
  min-width: 220px;
  flex: 1 1 270px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .14s;
}
.feature-item:hover {
  box-shadow: 0 6px 28px rgba(20,55,90,0.16);
  transform: translateY(-4px) scale(1.02);
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.features h2 {
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item { max-width: 100%; }
}

/* LISTS */
.icon-list {
  display: flex;
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.13rem;
  color: #14375A;
  margin-bottom: 14px;
  background: #F5F7FA;
  border-radius: 12px;
  padding: 8px 14px 8px 8px;
  box-shadow: 0 2px 8px rgba(146,180,215,0.07);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.icon-list img {
  width: 32px;
  height: 32px;
}
.service-list li {
  background: #f8fbfd;
  margin-bottom: 20px;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 6px rgba(146,180,215,0.12);
}
.step-list li {
  margin-bottom: 16px;
  padding-left: 2px;
}

/* CTA & NOTICE */
.notice {
  background: #92B4D7;
  color: #fff;
  font-size: 1rem;
  border-radius: 10px;
  padding: 12px 18px 12px 18px;
  margin-top: 14px;
  box-shadow: 0 2px 12px rgba(20,55,90,0.09);
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(20,55,90,0.13);
  padding: 24px 28px 22px 28px;
  min-width: 270px;
  max-width: 370px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  transition: transform .18s, box-shadow .14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(20,55,90,0.19);
  transform: translateY(-3px) scale(1.013);
}
.testimonial-rating {
  display: flex;
  gap: 4px;
  align-items: center;
}
.testimonial-rating img {
  width: 26px;
  height: 26px;
}
.testimonial-card p {
  color: #294868;
  font-size: 1.14rem;
  text-align: center;
  margin: 0 0 6px 0;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #14375A;
  font-weight: 500;
  font-size: 1rem;
}
.testimonial-rating-average {
  margin-top: 24px;
  color: #14375A;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1020px) {
  .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* CASE STUDY */
.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.case-study-block {
  background: #f8fbfd;
  border-radius: 12px;
  padding: 20px 22px 18px 22px;
  box-shadow: 0 1px 8px rgba(146,180,215,0.10);
  flex: 1 1 280px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 350px;
}
@media (max-width: 900px) {
  .case-studies {
    flex-direction: column;
    gap: 20px;
  }
  .case-study-block { max-width: 100%; }
}

/* FOOTER */
footer {
  background: #14375A;
  color: #fff;
  padding: 38px 0 28px 0;
  border-top: 4px solid #92B4D7;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-nav a {
  color: #c7d6e7;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 5px 0;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact p {
  color: #f5f7fa;
  margin-bottom: 10px;
  font-size: 1rem;
}
.footer-contact a { color: #fff; text-decoration: underline; }
.footer-logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 860px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* MISCELLANEOUS */
::-webkit-input-placeholder { color: #AEBECF; opacity: 1; }
::-moz-placeholder { color: #AEBECF; opacity:1; }
:-ms-input-placeholder { color: #AEBECF; }
::placeholder { color: #AEBECF; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .container { padding: 0 7px; }
  .hero, .cta-section {
    padding-left: 0;
    padding-right: 0;
  }
  .section { padding: 30px 7px; margin-bottom: 38px; }
  .features, .usp { padding: 30px 7px; }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 120;
  background: #14375A;
  color: #fff;
  width: 100%;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 20px rgba(20,55,90,0.09);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .28s cubic-bezier(.54,1.16,.62,1), opacity .18s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 70vw;
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 9px 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .13s, color .11s;
}
.cookie-btn.accept {
  background: #92B4D7;
  color: #14375A;
}
.cookie-btn.accept:hover {
  background: #c1d6ee;
  color: #14375A;
}
.cookie-btn.reject {
  background: #fff;
  color: #14375A;
  border: 1px solid #92B4D7;
}
.cookie-btn.reject:hover {
  background: #eee;
  color: #14375A;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1px solid #92B4D7;
}
.cookie-btn.settings:hover {
  background: #294868;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 7px 14px 7px;
  }
  .cookie-banner-content { max-width: 99vw; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 260;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,55,90,0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(20,55,90,.22);
  min-width: 325px;
  width: 98vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 28px 28px 28px;
  position: relative;
  animation: cookie-modal-bounce .42s cubic-bezier(.27,1.4,.6,1.1);
}
@keyframes cookie-modal-bounce {
  0% { transform: scale(.93); opacity:.7; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #14375A;
  margin-bottom: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 1.4rem;
  color: #14375A;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #92B4D7;
}
.cookie-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin: 12px 0 14px 0;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-toggle-label {
  font-size: 1rem;
  color: #14375A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.cookie-toggle-switch {
  width: 46px;
  height: 25px;
  border-radius: 18px;
  background: #eee;
  position: relative;
  display: flex;
  align-items: center;
  transition: background .15s;
}
.cookie-toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  left: 0; top: 0;
}
.cookie-toggle-slider {
  height: 100%;
  width: 100%;
  border-radius: 18px;
  background: #dee7f4;
  box-shadow: 0 1px 4px rgba(146,180,215,0.12);
  position: absolute;
  transition: background .14s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background: #92B4D7;
}
.cookie-toggle-slider:before {
  content: '';
  display: block;
  width: 22px; height: 22px;
  border-radius: 99px;
  background: #fff;
  border: 1.5px solid #92B4D7;
  box-shadow: 0 2px 8px rgba(20,55,90,0.10);
  position: absolute;
  left: 2px; top: 1.5px;
  transition: transform .12s, background .15s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider:before {
  transform: translateX(19px);
  background: #14375A;
}
.cookie-modal-footer {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  align-items: center;
}
.cookie-modal-footer .cookie-btn {
  font-size: 1rem;
  padding: 9px 18px;
}

/* Scrollbar (Modern, thin) */
html {
  scrollbar-width: thin;
  scrollbar-color: #92B4D7 #F5F7FA;
}
body::-webkit-scrollbar {
  width: 8px;
  background: #F5F7FA;
}
body::-webkit-scrollbar-thumb {
  background: #92B4D7;
  border-radius: 10px;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
a, button, .cta-button, .cookie-btn, .feature-item, .card, .testimonial-card, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color .16s, background .15s, box-shadow .16s, transform .13s, border-color .14s;
}

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

/* --- END OF CSS --- */
