/* --- CSS RESET & BASE --- */
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,
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F8FB;
  color: #273147;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #273147;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #7FB3D5;
  text-decoration: underline;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6, .cta-primary {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 26px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, ul, ol {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 600;
}

/* --- SPACING & LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(39,49,71,0.045);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px 0 rgba(39,49,71,0.09);
}
.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;
}
.text-section {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(39,49,71,0.06);
  margin-bottom: 20px;
  max-width: 600px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 16px 0 rgba(127,179,213,0.10);
  transform: translateY(-2px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
ul {
  list-style: none;
  margin-bottom: 14px;
}
ul li {
  margin-bottom: 12px;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1em;
}
ul li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.price {
  color: #7FB3D5;
  font-size: 1.1em;
  font-weight: 700;
  margin-left: 8px;
}

/* --- BUTTONS & CTA --- */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 34px;
  height: 48px;
  background: #273147;
  color: #fff;
  border: none;
  border-radius: 32px;
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px 0 rgba(39,49,71,0.05);
  cursor: pointer;
  transition: background 0.2s, color 0.18s, box-shadow 0.19s, transform 0.16s;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #7FB3D5;
  color: #273147;
  box-shadow: 0 6px 18px 0 rgba(127,179,213,0.17);
  text-decoration: none;
  transform: translateY(-2px) scale(1.03);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #e8ecf0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #273147;
  padding: 6px 12px;
  border-radius: 18px;
  transition: background 0.18s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: #E5EDF4;
  color: #7FB3D5;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #273147;
  padding: 8px 4px;
  cursor: pointer;
  z-index: 103;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EAF5F8;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(244,248,251,0.97);
  box-shadow: 0 4px 38px 0 rgba(39,49,71,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 32px;
  z-index: 90;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.59,0.13,0.32,1.05);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 24px;
  margin-bottom: 12px;
  background: transparent;
  border: none;
  color: #273147;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EAF5F8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 95%;
  align-items: center;
  margin-top: 18px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #273147;
  padding: 10px 18px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 6px;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5EDF4;
  color: #7FB3D5;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1px solid #e8ecf0;
  padding: 36px 0 24px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}
footer nav a {
  color: #8CA5BD;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #273147;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #C7D1DB;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-brand img {
  height: 26px;
  width: auto;
}

/* --- FORMS (if used) --- */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
}
input, textarea, select {
  border: 1px solid #c3cfe2;
  background: #f7fafc;
  padding: 10px 14px;
  margin-bottom: 12px;
  transition: border-color 0.15s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #7FB3D5;
  box-shadow: 0 2px 6px 0 rgba(127,179,213,0.07);
  outline: none;
}
button {
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #e8ecf0;
  box-shadow: 0 -2px 18px 0 rgba(127,179,213,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  z-index: 2000;
  transition: transform 0.36s, opacity 0.2s;
  gap: 24px;
}
.cookie-banner.hide {
  transform: translateY(100px);
  ;
  pointer-events: none;
}
.cookie-banner-text {
  font-size: 1rem;
  color: #273147;
  flex: 2 1 300px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button, .cookie-banner .cta-primary {
  min-width: 100px;
  min-height: 40px;
  padding: 0 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.17s, color 0.12s, box-shadow 0.14s;
}
.cookie-accept {
  background: #273147;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #7FB3D5;
  color: #273147;
}
.cookie-reject {
  background: #e8ecf0;
  color: #273147;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #e2f1fa;
  color: #273147;
}
.cookie-settings {
  background: #fff;
  color: #273147;
  border: 1px solid #b7c5d9;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #f3f6f9;
  color: #273147;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,49,71,0.14);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(39,49,71,0.19);
  max-width: 380px;
  min-width: 270px;
  padding: 32px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  animation: fadeInScale 0.5s cubic-bezier(.46,.03,.52,.96);
}
@keyframes fadeInScale {
  0% { transform: scale(0.93);}
  100%{opacity: 1; transform: scale(1);}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}
.cookie-category-label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-switch {
  appearance: none;
  width: 40px;
  height: 20px;
  background: #e8ecf0;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #7FB3D5;
}
.cookie-switch:before {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-switch:checked:before {
  left: 22px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal-actions button {
  flex: 1 1 90px;
  min-width: 90px;
}

/* --- OTHER UI ELEMENTS --- */
hr {
  height: 1px;
  background: #e8ecf0;
  border: none;
  margin: 28px 0;
}

em {
  color: #7FB3D5;
  font-style: italic;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
  p, ul, ol {
    font-size: 1rem;
  }
  .card, .testimonial-card {
    padding: 18px 12px;
  }
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .section {
    padding: 22px 0 38px 0;
    margin-bottom: 24px;
  }
  .testimonial-card {
    max-width: 98vw;
  }
  header .container {
    gap: 4px;
  }
}
@media (max-width: 600px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item {
    gap: 7px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}

/* --- MOBILE NAVIGATION BREAKPOINT --- */
@media (max-width: 910px) {
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 911px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- PRINT ADJUSTMENTS --- */
@media print {
  header, footer, .mobile-menu, .cta-primary, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
    display: none !important;
  }
  .section {
    background: none !important;
    box-shadow: none !important;
  }
}

/* --- MICRO-INTERACTIONS --- */
.card, .testimonial-card, .cta-primary {
  will-change: box-shadow, transform;
}

/* --- UNIQUE PAGE ELEMENTS (for clarity) --- */
.text-section {
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(127,179,213,0.04);
  padding: 22px 16px;
  margin-bottom: 18px;
}
.text-section:last-child {
  margin-bottom: 0;
}
/* --- MODAL FOCUS/ACCESSIBILITY (if shown by JS) --- */
.cookie-modal:focus {
  outline: 2px solid #7FB3D5;
}

/* --- UTILITY CLASSES --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

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