/* --- 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, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr, th, td, main, aside, figure, figcaption, footer, header, nav, section, article {
  margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; font: inherit; vertical-align: baseline; box-sizing: border-box;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #E8F0F5;
  color: #243846;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
  padding-left: 0;
}
a {
  color: #42B8B2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1b6c67;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #243846;
  font-weight: 700;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 20px; letter-spacing: -0.5px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
p, li, .text-section, .subheadline {
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #42B8B2;
  margin-bottom: 12px;
  font-weight: 500;
}
.tagline {
  font-size: 1.3rem;
  color: #243846;
  margin-bottom: 24px;
}
strong, b { font-weight: bold; }

/* --- GRADIENT MODERN BACKGROUNDS --- */
.hero-section {
  background: linear-gradient(100deg, #E8F0F5 40%, #42B8B2 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 16px rgba(36,56,70, 0.06);
  margin-bottom: 60px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(36,56,70, 0.05);
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

/* --- FLEXBOX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(36,56,70, 0.08);
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 24px 18px;
  position: relative;
  transition: box-shadow 0.24s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 20px 0 rgba(36,56,70, 0.14);
  transform: translateY(-3px) scale(1.015);
}
.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: #E8F0F5;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,56,70, 0.09);
  margin-bottom: 20px;
  flex: 1 1 320px;
  color: #243846;
  min-width: 280px;
  max-width: 430px;
}
.testimonial-author {
  color: #42B8B2;
  font-weight: 500;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,56,70, 0.09);
  padding: 24px 18px;
  flex: 1 1 222px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}
.feature:hover, .feature:focus {
  box-shadow: 0 6px 24px rgba(66,184,178, 0.12);
  transform: translateY(-2px) scale(1.03);
}

/* --- TEAM GRID --- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,56,70, 0.09);
  padding: 20px 16px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* --- REVIEW LIST --- */
.review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.review-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,56,70,0.09);
  padding: 20px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s;
}
.review-item:hover {
  box-shadow: 0 5px 20px rgba(66,184,178,0.12);
}

/* --- TABLE GRID --- */
.table-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 28px;
}
.table-grid > h3 {
  width: 100%;
  margin-top: 0;
  margin-bottom: 8px;
}
.table-grid ul {
  background: #fff;
  padding: 14px 18px 10px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(36,56,70, 0.08);
  margin-bottom: 20px;
  gap: 12px;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  max-width: 320px;
}
.feature-highlights {
  margin-top: 16px;
}
.feature-highlights ul {
  list-style-type: disc;
  padding-left: 1.5em;
}
.feature-highlights li {
  margin-bottom: 10px;
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(90deg, #243846 60%, #42B8B2 100%);
  color: #fff;
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer-logo {
  margin-bottom: 24px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.footer-menu a {
  color: #fff;
  opacity: 0.84;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: opacity 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus { opacity: 1; }
.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.98rem;
}
.footer-contact a {
  color: #E8F0F5;
  text-decoration: underline;
}

/* --- BUTTONS --- */
.button, .button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  border: none;
  padding: 14px 32px;
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: linear-gradient(90deg,#42B8B2 60%,#243846 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(36,56,70,0.07);
  cursor: pointer;
  min-width: 56px;
  min-height: 48px;
  transition: background 0.22s, box-shadow 0.19s, color 0.19s;
}
.button.primary {
  background: linear-gradient(90deg,#243846 70%, #42B8B2 100%);
  color: #fff;
}
.button:hover, .button:focus {
  background: linear-gradient(90deg,#42B8B2 100%, #243846 0%);
  color: #fff;
  box-shadow: 0 8px 36px rgba(36,56,70,0.17);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.button:active {
  transform: scale(0.98);
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 4px 18px rgba(36,56,70,0.045);
  position: relative;
  z-index: 20;
  margin-bottom: 12px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img { height: 44px; }
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: 18px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #243846;
  font-size: 1.07rem;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.19s;
  border-radius: 8px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E8F0F5;
  color: #42B8B2;
}
header .button.primary {
  margin-left: 30px;
  min-width: 120px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #243846;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.15s;
  z-index: 1002;
}
.mobile-menu-toggle:focus {
  color: #42B8B2;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(136deg,#E8F0F5 70%, #42B8B2 100%);
  z-index: 1002;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.88,-0.01,.24,1.08);
  box-shadow: 0 12px 48px rgba(36,56,70,0.11);
  opacity: 0.98;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #243846;
  font-size: 2.4rem;
  align-self: flex-end;
  cursor: pointer;
  margin: 18px 30px 0 0;
  padding: 4px 12px;
  z-index: 1003;
  transition: color 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #42B8B2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 36px;
  padding-left: 36px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.36rem;
  color: #243846;
  padding: 8px 0;
  min-width: 80vw;
  transition: color 0.15s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: #42B8B2; background: #fff; }

@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-nav,
  header .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero-section {
    border-radius: 0 0 24px 24px;
    padding: 24px 0 16px 0;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 6px;
  }
  .feature-grid, .team-grid, .review-list, .card-container, .content-grid, .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .team-member, .review-item, .testimonial-card, .card {
    max-width: 100%;
    min-width: unset;
  }
  .footer-menu {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }
  .footer-contact p { font-size: 0.96rem; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .table-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- TESTIMONIAL GRID --- */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
}

/* --- UTILITY CLASSES --- */
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 14px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 14px; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #243846 70%, #42B8B2 100%);
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 32px;
  box-shadow: 0 -4px 32px rgba(36,56,70,0.12);
  z-index: 3000;
  transition: transform 0.3s, opacity 0.18s;
  gap: 22px;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1rem;
  max-width: 600px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  background: #42B8B2;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-right: 4px;
  transition: background 0.16s, color 0.17s;
}
.cookie-btn.settings {
  background: #fff;
  color: #243846;
}
.cookie-btn.reject {
  background: #243846;
  border: 1px solid #fff;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1b6c67;
  color: #fff;
}
.cookie-btn.settings:hover {
  background: #E8F0F5;
  color: #42B8B2;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 18px 8px;
    gap: 14px;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,56,70,0.45);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__box {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 20px 80px rgba(36,56,70,0.18);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal__header {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.6rem;
  color: #243846;
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-modal__close {
  position: absolute;
  top: 26px; right: 32px;
  background: none;
  border: none;
  color: #42B8B2;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 4001;
  transition: color 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #243846;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-category label {
  font-size: 1.08rem;
  color: #243846;
  font-weight: 600;
  margin-right: 12px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #42B8B2;
  width: 20px; height: 20px;
}
.cookie-category .essential-label {
  color: #42B8B2;
  font-weight: 700;
}
@media (max-width: 520px) {
  .cookie-modal__box {
    max-width: 95vw;
    padding: 24px 6vw 18px 6vw;
  }
  .cookie-modal__close {
    right: 10px; top: 14px;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.button, .card, .feature, .review-item, .testimonial-card, .feature {
  transition: box-shadow 0.19s, transform 0.15s, background 0.19s, color 0.2s, border 0.18s;
}

/* --- GRADIENT DECORATIVE LINES (optional class) --- */
.gradient-line {
  height: 4px;
  width: 60px;
  border-radius: 3px;
  background: linear-gradient(90deg,#42B8B2 10%, #243846 100%);
  margin-bottom: 16px;
}

/* --- INPUTS & FORMS (for potential contact forms) --- */
input[type="text"], input[type="email"], textarea {
  border: 1.5px solid #E8F0F5;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  margin-bottom: 12px;
  width: 100%;
  background: #fff;
  color: #243846;
  transition: border 0.16s, box-shadow 0.13s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #42B8B2;
  box-shadow: 0 0 0 2px #42b8b257;
}
label {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #243846;
  font-size: 1rem;
  font-weight: 500;
}

/* --- MISC --- */
::-webkit-scrollbar {
  width: 10px;
  background: #E8F0F5;
}
::-webkit-scrollbar-thumb {
  background: #42B8B2;
  border-radius: 6px;
}
section {
  padding: 15px;
}
/* --- END --- */
