/* 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;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
  background: #F8FAFC;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #334155;
  background: #FAFAFA;
  letter-spacing: 0.02em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: #174672;
  transition: color 0.25s;
}
a:focus {
  outline: 2px solid #44A3C0;
  outline-offset: 2px;
}
a:hover {
  color: #44A3C0;
  text-decoration: underline;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #174672;
  margin-bottom: 0.6em;
}
h1 { font-size: 2rem; font-weight: 700; line-height: 1.15; }
h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.18; }
h3 { font-size: 1.16rem; font-weight: 600; line-height: 1.22; }
h4, h5, h6 { font-size: 1rem; font-weight: 500; }
p, ul, ol, blockquote, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #48566A;
}
p.subheadline {
  font-size: 1.14rem;
  color: #2876aB;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 1.25em;
}
blockquote {
  padding: 16px 32px;
  background: #E5F2F8;
  border-left: 4px solid #44A3C0;
  border-radius: 10px;
  font-style: italic;
  margin: 24px 0;
}
strong {
  color: #174672;
  font-weight: bold;
}

/* LAYOUT AND CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  padding: 24px 0 0 0;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

.card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(67, 165, 205, 0.10), 0px 1.5px 8px rgba(144, 174, 224, 0.04);
  position: relative;
  margin-bottom: 20px;
  padding: 32px;
  min-width: 250px;
  flex: 1 1 270px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 12px 28px rgba(67, 165, 205, 0.20), 0px 3px 12px rgba(144, 174, 224, 0.12);
  transform: translateY(-3px) scale(1.012);
}

.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: 24px 30px;
  margin-bottom: 24px;
  background: #F5F5FA;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(144,174,224,0.07);
  min-width: 260px;
  max-width: 480px;
  color: #1C2637;
  font-size: 1.02rem;
}
.testimonial-card strong {
  margin-top: 10px;
  font-size: 1rem;
  color: #174672;
  font-weight: 700;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}
.feature-grid > div {
  background: #FCF8FF;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(200, 193, 255, 0.06), 0 8px 32px rgba(72, 227, 217, 0.05);
  flex: 1 1 220px;
  min-width: 220px;
  padding: 28px 20px 22px 20px;
  text-align: left;
  transition: box-shadow 0.23s, background 0.23s;
}
.feature-grid > div:hover {
  background: #ECF3FF;
  box-shadow: 0 6px 24px rgba(44, 168, 213, 0.13);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.hero {
  background: linear-gradient(110deg, #E0F7FA 0%, #FAE5F6 70%, #FFF2DF 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 40px;
  min-height: 220px;
  display: flex;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  box-shadow: 0px 8px 24px rgba(155, 206, 234, 0.11);
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  padding: 0;
}
.hero h1 {
  font-size: 2.4rem;
  color: #174672;
  font-weight: 800;
}
.hero .subheadline {
  font-size: 1.14rem;
  color: #2876aB;
  margin-bottom: 16px;
  max-width: 600px;
}

.cta-final, .cta {
  background: linear-gradient(110deg, #FFF7F8 0%, #E1F3FB 100%);
  border-radius: 24px;
  padding: 48px 20px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(224, 153, 252, 0.09);
}
.cta-final h2, .cta h2 { color: #1B273C; font-size: 2rem; margin-bottom: 18px; }

.cta .btn-primary, .cta-final .btn-primary {
  margin-top: 18px;
}

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

.next-steps-info ul {
  margin: 0 0 18px 18px;
  padding: 0;
  list-style: disc inside;
}

.confirmation-message {
  color: #2876aB;
  font-size: 1.12rem;
  margin-bottom: 20px;
}

/* LISTS */
ul, ol {
  margin-bottom: 20px;
  margin-top: 8px;
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 10px;
}

.service-list {
  margin-top: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}
.service-list li {
  padding: 18px 18px 15px 18px;
  border-radius: 12px;
  background: #F2FAFF;
  color: #28506e;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(74, 150, 238, 0.05);
}
.service-list h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.benefits-list {
  margin-bottom: 32px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: disc inside;
}
.benefits-list li {
  padding-left: 8px;
  font-size: 1.04rem;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin-bottom: 36px;
}
.pricing-table th, .pricing-table td {
  background: #FFF;
  padding: 18px 18px 14px 18px;
  border-radius: 14px;
  text-align: left;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.pricing-table th {
  background: #E3F3FB;
  color: #174672;
  font-size: 1.04rem;
  font-weight: 600;
}
.pricing-table td ul {
  margin: 0 0 0 18px;
  list-style: disc outside;
  font-size: 1rem;
}

.faq > div {
  background: #F5F5FA;
  margin-bottom: 18px;
  padding: 18px 20px 14px 20px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  background: #F5F8FA;
  margin-top: 60px;
  padding-top: 32px;
  padding-bottom: 10px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
footer .logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-menu a {
  color: #2876aB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 8px;
  transition: color 0.24s;
}
.footer-menu a:hover { color: #174672; }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  color: #334155;
  font-size: 1rem;
  align-items: center;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom {
  text-align: center;
  color: #678;
  font-size: 0.92rem;
  margin-top: 18px;
}

/* HEADER, NAVIGATION */
header {
  background: #FAFAFA !important;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 3px 20px rgba(88,180,223,0.07);
  border-bottom: 1px solid #F6F1FF;
  padding-top: 8px;
  padding-bottom: 8px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: #174672;
  padding: 4px 6px;
  border-radius: 7px;
  transition: color 0.22s, background 0.22s;
}
.main-nav a:hover {
  color: #44A3C0;
  background: #EFF6FB;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  font-size: 1.03rem;
  border-radius: 999px;
  background-color: #44A3C0;
  color: #FFF;
  border: none;
  cursor: pointer;
  box-shadow: 0px 2px 12px rgba(31, 178, 216, 0.14);
  margin-left: 8px;
  transition: background 0.22s, box-shadow 0.22s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #174672;
  color: #FFF;
  box-shadow: 0px 3px 14px rgba(31, 178, 216, 0.23);
  transform: translateY(-2px) scale(1.04);
}

/* --- Mobile Burger menu --- */
.mobile-menu-toggle {
  background: #FFFFFF;
  color: #44A3C0;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 201;
  box-shadow: 0 1px 5px rgba(50,183,201,0.07);
  cursor: pointer;
  margin-left: 6px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus { outline: 2px solid #44A3C0; }
.mobile-menu-toggle:hover {
  background: #F2FAFF;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FAFAFA;
  box-shadow: 0 4px 54px rgba(74, 141, 239, 0.13);
  z-index: 200;
  transform: translateX(-105vw);
  transition: transform 0.36s cubic-bezier(.53,.19,.43,.97);
  padding-top: 42px;
  padding-bottom: 24px;
}
.mobile-menu.active {
  transform: translateX(0vw);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  color: #44A3C0;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  outline: none;
  z-index: 205;
  transition: color 0.16s;
  line-height: 1;
}
.mobile-menu-close:hover {
  color: #174672;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 auto;
  align-items: flex-start;
  width: 90%;
  max-width: 370px;
}
.mobile-nav a {
  color: #2876aB;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 10px;
  padding: 9px 18px;
  background: #F0F7FF;
  margin-top: 3px;
  margin-bottom: 3px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover {
  background: #E1F3FB;
  color: #174672;
}

@media (max-width: 1120px) {
  .container { max-width: 960px; }
}
@media (max-width: 900px) {
  .container { max-width: 700px; }
  .hero h1 { font-size: 2.05rem; }
  .section { padding: 36px 10px; }
  section { padding: 32px 10px; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding-left: 10px; padding-right: 10px; }
  .content-wrapper { padding: 14px 0 0 0; }
  .section, section { padding: 26px 6px; }
  .feature-grid, .testimonial-list, .card-container, .service-list {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  .feature-grid > div, .testimonial-card, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .hero {
    padding-top: 30px; padding-bottom: 30px;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 { font-size: 1.32rem; }
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .cta-final, .cta {
    padding: 28px 7px;
    border-radius: 10px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
  }
  .pricing-table th, .pricing-table td {
    font-size: 0.96rem;
    padding: 11px 8px 9px 8px;
  }
}

@media (max-width: 600px) {
  .container { max-width: 96vw; }
  h1 { font-size: 1.22rem; }
  h2 { font-size: 1.07rem; }
  .footer-bottom { font-size: 0.85rem; }
  .logo img { height: 35px; }
}

@media (max-width: 960px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 961px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .main-nav, .btn-primary { display: flex !important; }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: linear-gradient(94deg, #E3F8FF 0%, #FDF7FD 100%);
  box-shadow: 0 -4px 32px rgba(67,165,205,0.12);
  border-radius: 22px 22px 0 0;
  padding: 24px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(.67,.24,.62,1.01), opacity 0.34s;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  font-size: 1rem;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: #44A3C0;
  color: #FFF;
  box-shadow: 0 1px 7px rgba(43, 199, 236, 0.09);
}
.cookie-btn.accept:hover { background: #174672; }
.cookie-btn.reject {
  background: #FFFFFF;
  color: #174672;
  border: 1.5px solid #44A3C0;
}
.cookie-btn.reject:hover {
  background: #ECFAFF;
  border-color: #174672;
  color: #2088B4;
}
.cookie-btn.settings {
  background: #F5F7FA;
  color: #174672;
  border: 1.2px solid #B7E6F7;
}
.cookie-btn.settings:hover {
  background: #E9F7FE;
  color: #44A3C0;
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(130, 142, 195, 0.25);
  z-index: 2999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FFFFFF;
  box-shadow: 0 6px 42px rgba(131,183,229,0.15);
  border-radius: 18px;
  max-width: 390px;
  width: 96vw;
  padding: 32px 26px 22px 26px;
  z-index: 3050;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: cookiePopupAppear 0.33s cubic-bezier(.55,.18,.48,1.01);
}
@keyframes cookiePopupAppear {
  from { transform: translateY(32px) scale(0.97); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal .cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #174672;
  font-weight: bold;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-category.disabled {
  color: #B7B8CA;
}
.cookie-category input[type="checkbox"] {
  accent-color: #44A3C0;
  width: 18px;
  height: 18px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #44A3C0;
  cursor: pointer;
  line-height: 1;
}
.cookie-modal-close:hover { color: #174672; }

/* Microanimations for interactive elements */
.btn-primary, .cookie-btn {
  transition: background 0.19s, box-shadow 0.19s, color 0.18s, transform 0.19s;
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s, background 0.19s;
}
.card:active, .feature-grid > div:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* FORMS, INPUTS (for contact form if present) */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.5px solid #BFDFFC;
  border-radius: 10px;
  background: #FCFCFF;
  color: #1A2641;
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  border-color: #44A3C0;
  outline: none;
  background: #F2FAFF;
}
label { font-family: 'Montserrat', Arial, sans-serif; font-size: 0.99rem; color: #1C273C; }

/* ---- Misc & Utility Classes ---- */
.privacy-statement {
  font-size: 0.92rem;
  color: #7a86a6;
  margin-top: 12px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

hr {
  border: none;
  border-top: 1px solid #E1E7F5;
  margin: 24px 0;
}

/* Hide visually, leave accessible to screen readers */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* End of CSS */
