/* 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,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; }
*, *:before, *:after { box-sizing: inherit; }
body {line-height:1;}
menu,ol,ul { list-style:none; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; height:auto; display:block; border:0; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* FONT FACE --------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(180deg, #F5F8FA 0%, #e7f9fa 100%);
  color: #173954;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #134266;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.32rem; margin-bottom: 10px; }
h4 { font-size: 1.16rem; margin-bottom: 8px; }

p, ul, ol, dl {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #173954;
  margin-bottom: 18px;
}

strong, b { font-weight: 600; color: #134266; }
em, i { font-style: italic; color: #48A9A6; }

/* LAYOUT: CONTAINER & SECTIONS ---------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
}
.text-section {
  max-width:780px;
  margin:0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.7);
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(60,89,115,0.08), 0 0.5px 2px 0 rgba(19,66,102,0.08);
}

/* HERO & CTA SECTIONS ----------------------------------- */
.hero-section {
  padding: 70px 0 45px 0;
  background: linear-gradient(120deg, #e5ecfa 0%, #e3ffe9 100%);
  border-bottom-left-radius: 54px;
  border-bottom-right-radius: 54px;
  margin-bottom: 48px;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  color: #134266;
}
.hero-section p {
  color: #4092A8;
  font-size: 1.22rem;
}
.cta-section {
  padding: 32px 0;
  background: #f7fbfa;
  border-radius: 18px;
  margin: 46px 0 0 0;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 12px;
  text-align: center;
}
.cta-section p {
  font-size: 1.16rem;
}

/* FLEXBOX CARDS & FEATURES ------------------------------------ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(72,169,166,0.07), 0 1.5px 6px 0 rgba(19,66,102,0.04);
  padding: 28px;
  min-width: 240px;
  flex:1 1 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.feature-card:hover {
  box-shadow: 0 7px 32px rgba(72,169,166,0.15), 0 2.5px 10px 0 rgba(19,66,102,0.08);
  transform: translateY(-5px) scale(1.025);
}
.feature-card img {
  height: 36px;
  width: 36px;
  margin-bottom: 5px;
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.product-card {
  background: #f2fcfb;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(72,169,166,0.07), 0 1px 4px 0 rgba(19,66,102,0.04);
  padding: 24px;
  flex:1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.product-card:hover {
  box-shadow: 0 8px 20px rgba(72,169,166,0.16), 0 3.5px 13px 0 rgba(19,66,102,0.10);
  transform: translateY(-2.5px) scale(1.02);
}
.product-card h2 { font-size: 1.34rem; }
.product-card ul {
  padding-left: 16px;
  list-style: disc inside;
}

/* SERVICE/FEATURE LISTS ---------------------------------------- */
.service-list, .faq-list, .faq-snippet {
  margin: 14px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-list li {
  background: #f9fafd;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(19,66,102,0.08);
  font-size: 1.01rem;
  color: #173954;
  line-height: 1.5;
}

/* FLEX RESPONSIVE UTILITIES ---------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  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;
}

/* TESTIMONIALS ------------------------------------------ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6FBFE;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(60,89,115,0.11);
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.18s;
  color: #134266;
  font-size: 1rem;
}
.testimonial-card strong {
  color: #48A9A6;
  font-size: 1.01em;
  padding-left: 6px;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px 0 rgba(72,169,166,0.18), 0 2px 8px rgba(19,66,102,0.10);
  transform: translateY(-3px) scale(1.01);
}

/* FAQ LISTS --------------------------------------------------- */
dt, dd { margin-bottom: 7px; }
.faq-list dt {
  font-weight: 600;
  color: #134266;
  margin-top: 18px;
  font-size: 1.13rem;
}
.faq-list dd {
  margin-left: 18px;
  margin-bottom: 8px;
  color: #225773;
  font-size: 1.01rem;
}
.faq-snippet dt {
  color: #134266;
  font-weight: bold;
  margin-top: 12px;
}
.faq-snippet dd {
  margin-left: 14px;
  margin-bottom: 4px;
  color: #48A9A6;
}

/* HEADER + NAVIGATION -------------------------------------- */
header {
  width: 100%;
  background: #fafdff;
  box-shadow: 0 2px 14px 0 rgba(72,169,166,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 14px 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
header img {
  height: 48px;
  margin-right: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  padding: 6px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #134266;
  border-radius: 7px;
  transition: background 0.12s, color 0.12s;
}
header nav a:hover, header nav a:focus {
  background: #e4f1fd;
  color: #2b779b;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #48A9A6 0%, #8fd3e8 100%);
  color: #134266;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 16px;
  padding: 11px 30px;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(72,169,166,0.07);
  cursor: pointer;
  transition: background 0.19s, color 0.17s, box-shadow 0.13s, transform 0.12s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #8fd3e8 0%, #48A9A6 100%);
  color: #173954;
  box-shadow: 0 5px 20px rgba(72,169,166,0.19);
  transform: translateY(-2px) scale(1.03);
}

/* FOOTER -------------------------------------------------- */
footer {
  background: #e9fbfa;
  border-top: 3px solid #B5e6e5;
  padding: 40px 0 18px 0;
  margin-top: 70px;
  font-size: 1rem;
}
footer .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 8px;
}
footer nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.98rem;
}
footer nav a {
  color: #307a9f;
  opacity: 0.88;
  transition: color 0.13s;
}
footer nav a:hover{ color: #48A9A6; }
footer p {
  color: #183f4a;
  font-size: 1rem;
}

/* BUTTONS & LINKS ------------------------------------------- */
button, .cta-button {
  transition: background 0.18s, color 0.14s, box-shadow 0.12s;
  outline: none;
}
button:active, .cta-button:active {
  transform: scale(0.99);
}

/* MOBILE MENU BURGER ------------------------------------------ */
.mobile-menu-toggle {
  position:fixed;
  top:18px;
  right:18px;
  z-index:120;
  width: 46px;
  height: 46px;
  background: #fff;
  color: #134266;
  border-radius: 50%;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0f3f3;
  box-shadow: 0 2px 8px 0 rgba(72,169,166,0.08);
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.11s;
  /* default hidden; show via media query only on small screens */
  opacity:0;
  pointer-events:none;
}
.mobile-menu-toggle.active { opacity:1; pointer-events:auto; }

.mobile-menu {
  position:fixed;
  top:0; left:0;
  width:100vw; height:100vh;
  background:rgba(244,249,255,0.98);
  z-index:200;
  display:flex;
  flex-direction:column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-105vw);
  transition:transform 0.42s cubic-bezier(0.69,0.09,0.39,0.94);
  box-shadow: 2px 0 45px 0 rgba(72,169,166,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 21px 21px 0 0;
  background: none;
  color: #134266;
  font-size: 2.3rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: #e6fafe;
  border:1px solid #b3e6ee;
  box-shadow: 0 0.5px 10px rgba(72,169,166,0.10);
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #48A9A6;
  color: #fff;
}
.mobile-nav {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #134266;
  background: #e3f6fa;
  border-radius: 11px;
  padding: 14px 24px;
  margin-left: 16px;
  width: 85vw;
  max-width:400px;
  box-shadow: 0 1.5px 12px rgba(72,169,166,0.10);
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #b8e6f0;
  color: #48A9A6;
}

/* SHOW/HIDE MENU LOGIC ----------------------------------- */
@media (max-width: 1024px) {
  header nav,
  header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    opacity:1;
    pointer-events:auto;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* FLEX RESPONSIVE LAYOUT ADAPTATIONS --------------------------- */
@media (max-width: 900px) {
  .features-grid,.content-grid, .product-cards,.card-container {
    gap:18px;
  }
  .container {
    padding: 0 7px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 3vw;
  }
  .hero-section {
    padding: 35px 0 30px 0;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }
  .features-grid,.content-grid,.product-cards {
    flex-direction: column;
    gap:14px;
  }
  .feature-card, .product-card {
    min-width: 0;
    width:100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }
  .service-list li {
    padding: 12px 12px;
  }
  .section {
    padding: 28px 5px;
    margin-bottom: 37px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size:1.36rem; }
  .cta-section {
    padding:18px 0;
  }
  .card-container { gap: 12px; }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap:16px;
  }
}

@media (max-width: 500px) {
  header {
    padding: 8px 0 7px 0;
  }
  .mobile-menu-toggle {
    width:38px; height:38px; font-size:1.5rem; right:7px; top:7px;
  }
  .section {
    padding: 14px 2px;
  }
  .card, .product-card, .testimonial-card {
    padding-left:8px;
    padding-right:8px;
  }
}

/* COOKIE CONSENT BANNER ---------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #eaf5fc 60%, #fafff6 100%);
  box-shadow: 0 -6px 35px rgba(19,66,102,0.08);
  padding: 24px 14px 20px 18px;
  border-radius: 18px 18px 0 0;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  animation: cookieFadeIn 0.9s;
}
@keyframes cookieFadeIn { from { opacity: 0; transform: translateY(80px);} to {opacity:1; transform:none;} }
.cookie-banner__text{
  flex:1 1 320px;
  color: #134266;
  font-size: 1.07rem;
  line-height: 1.4;
}
.cookie-banner__actions{
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #48A9A6;
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 9px 22px;
  box-shadow: 0 1px 5px rgba(72,169,166,0.10);
  cursor: pointer;
  font-size:1rem;
  transition: background 0.13s, color 0.13s, transform 0.11s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #134266;
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: #C7DAEF;
  color: #134266;
  border: 1px solid #48A9A6;
}
.cookie-btn.cookie-settings:hover {
  background: #48A9A6;
  color: #fff;
}

/* COOKIE MODAL POPUP ---------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(19,66,102,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.35s;
}
@keyframes cookieModalFadeIn { from {opacity:0;} to {opacity:1;} }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 26px rgba(72,169,166,0.14), 0 1.5px 8px rgba(19,66,102,0.07);
  padding: 34px 28px 25px 28px;
  max-width: 396px;
  min-width:250px;
  width:95%;
  font-size:1rem;
  color: #134266;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalPop 0.27s;
}
@keyframes cookieModalPop {
  from {opacity:0; transform:scale(0.90) translateY(40px);}
  to {opacity:1; transform:none;}
}
.cookie-modal h3{
  font-size:1.18rem;
  margin-bottom:2px;
  color:#134266;
}
.cookie-modal label{
  display:flex; align-items:center; gap:9px;
  font-size:1.01rem;
  margin-bottom:4px;
}
.cookie-toggle {
  width: 38px; height: 22px; background: #e3f6fa;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
  -webkit-tap-highlight-color:transparent;
}
.cookie-toggle input { display:none; }
.cookie-toggle span {
  position: absolute;
  left:2px; top:2px;
  width:18px; height:18px;
  border-radius:50%;
  background:#b1e4eb;
  transition: all 0.21s;
}
.cookie-toggle input:checked + span {
  left:18px; background: #48A9A6;
}
.cookie-modal__actions{
  display:flex; gap:12px; justify-content:flex-end;
}
.cookie-modal__desc{
  font-size:0.98em; opacity:0.95; color:#3e5b7f;
}
.cookie-close-btn{
  background: none;
  color: #48A9A6;
  border-radius: 8px;
  font-size: 1.6rem;
  position: absolute;
  top:18px; right:12px;
  cursor:pointer;
  padding: 3px 7px;
  border:none;
}
.cookie-close-btn:hover { background: #e3f6fa; color:#134266; }

@media (max-width: 500px) {
  .cookie-modal {
    padding:18px 7px 16px 7px;
    min-width:160px;
    max-width:99vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding:13px 2.5vw;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS ---------------------------- */
.section, .feature-card, .product-card, .testimonial-card, .cta-button, .cookie-btn, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s, background 0.14s, color 0.13s, transform 0.11s;
}

/* UTILITIES & HELPER CLASSES ---------------------------------- */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-24 { margin-top: 24px !important; }

/* ACCESSIBILITY & FOCUS VISIBLE ----------------------------- */
a:focus, button:focus, .cta-button:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 2px solid #8fd3e8;
  outline-offset:2px;
}

/* SOFT PASTEL COLOR PALETTE
Primary: #134266 (blue)
Secondary: #48A9A6 (aqua/turquoise)
Accent: #F5F8FA (cloud)
Pastels: #e5ecfa (lavender), #e3ffe9 (mint), #f2fcfb (aqua), #b8e6f0 (sky), #e9fbfa (mint cloud)
*/
