/* CSS RESET & NORMALIZATION */
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.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F1F8FC;
  color: #17395B;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: #17395B; margin-bottom: 16px; line-height: 1.15; }
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.1rem; }
p, ul, ol, li, a, span, label, strong, em { font-family: 'Roboto', Arial, sans-serif; }
p { font-size: 1.0625rem; margin-bottom: 16px; }
ul, ol { margin-bottom: 16px; padding-left: 24px; }
li { margin-bottom: 8px; font-size: 1rem; }
a { color: #17395B; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #7AC1D8; }
strong { font-weight: 700; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

/* NAVIGATION HEADER */
header {
  background: linear-gradient(90deg, #17395B 60%, #7AC1D8 100%);
  box-shadow: 0 2px 10px rgba(23, 57, 91, 0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #F1F8FC;
  position: relative;
  padding: 4px 0;
}
header nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #7AC1D8;
  transition: width 0.2s;
  position: absolute;
  left: 0; bottom: 0;
}
header nav a:hover::after, header nav a:focus::after {
  width: 100%;
}
/* CTA Button */
.cta-button {
  background: linear-gradient(90deg, #7AC1D8 40%, #17395B 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  box-shadow: 0 2px 8px rgba(122, 193, 216, 0.08);
  transition: background 0.18s, transform 0.16s, box-shadow 0.18s;
  margin-left: 18px;
  cursor: pointer;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #17395B 20%, #7AC1D8 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(122, 193, 216, 0.18);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: transparent;
  border: none;
  color: #F1F8FC;
  cursor: pointer;
  margin-left: 22px;
  transition: color 0.16s;
  z-index: 1021;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #17395B;
  color: #F1F8FC;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #F1F8FC;
  font-size: 2.1rem;
  padding: 18px 28px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #7AC1D8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 18px;
  padding: 14px 32px 24px 32px;
}
.mobile-nav a {
  color: #F1F8FC;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0;
  width: 100%;
  transition: color 0.18s, background 0.15s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #7AC1D8;
  background: rgba(241,248,252,0.06);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #7AC1D8 0%, #F1F8FC 60%);
  padding: 70px 0 70px 0;
  margin-bottom: 56px;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.hero h1 {
  background: linear-gradient(90deg, #17395B 60%, #7AC1D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero p {
  color: #17395B;
  font-size: 1.15rem;
}

/* FEATURES GRID */
.features-grid, .services-list, .solutions-grid, .pricing-table, .blog-post-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  justify-content: flex-start;
}
.features-grid > div, .services-list > div, .solutions-grid > div, .pricing-table > div, .faq-list > div, .blog-post-list > article {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(23,57,91,0.06);
  border-radius: 18px;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.14s;
}
.features-grid > div:hover, .services-list > div:hover, .solutions-grid > div:hover, .pricing-table > div:hover, .faq-list > div:hover, .blog-post-list > article:hover {
  box-shadow: 0 8px 36px rgba(23,57,91,0.14), 0 2px 8px rgba(122,193,216,0.09);
  transform: translateY(-3px) scale(1.012);
}
.features-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
}
.solutions-grid h3, .features-grid h3, .services-list h3, .pricing-table h3 {
  font-size: 1.18rem;
  color: #17395B;
  margin-bottom: 4px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  gap: 28px;
  justify-content: center;
  margin-bottom: 36px;
}
.pricing-table > div {
  border: 1.5px solid #7AC1D8;
  background: #fff;
  min-width: 240px;
  padding-top: 35px;
  min-height: 350px;
  box-shadow: 0 4px 22px rgba(122,193,216,0.06);
  border-radius: 20px;
  align-items: flex-start;
  position: relative;
}
.pricing-table > div:nth-child(2) {
  border: 2px solid #17395B;
  box-shadow: 0 6px 32px rgba(23,57,91,.18);
  z-index: 1;
}
.pricing-table h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.pricing-table p {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17395B;
  margin-bottom: 16px;
}
.pricing-table ul {
  padding-left: 18px;
  margin-bottom: 0;
}

/* BLOG LISTING */
.blog-post-list {
  gap: 20px;
  margin-bottom: 36px;
}
.blog-post-list article {
  padding-bottom: 10px;
  border-bottom: 1.5px solid #A6D0E4;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.blog-post-list h3 a {
  color: #17395B;
  transition: color 0.16s;
}
.blog-post-list h3 a:hover, .blog-post-list h3 a:focus { color: #7AC1D8; }
.blog-post-list span {
  font-size: 0.98rem;
  color: #809BB8;
}

/* FAQ */
.faq-list > div {
  background: #f6fcfe;
  border: 1.2px solid #A6D0E4;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(122,193,216,0.052);
}

/* BUTTONS GENERIC */
button, .cta-button, input[type="submit"] {
  outline: none;
  border: none;
}
button:active, .cta-button:active, input[type="submit"]:active {
  outline: none;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(90deg, #F1F8FC 85%, #7AC1D8 100%);
  padding: 50px 0 42px 0;
  margin-bottom: 56px;
}
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-left: 5px solid #7AC1D8;
  box-shadow: 0 4px 18px rgba(23,57,91,0.08);
  padding: 20px 30px 16px 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  min-width: 220px;
  max-width: 480px;
  color: #17395B;
  font-size: 1.09rem;
}
.testimonial-card p {
  color: #17395B;
  font-size: 1.09rem;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #17395B;
  font-weight: 600;
  font-size: 1rem;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  align-items: center;
}
.client-logos img {
  height: 44px;
  filter: grayscale(70%) brightness(1.15);
  opacity: 0.85;
}

/* CONTACT DETAILS */
.contact-details, .map-embed {
  font-size: 1.02rem;
  color: #17395B;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.contact-details img { height: 18px; margin-right: 6px; vertical-align: middle; display: inline; }

/* FOOTER */
footer {
  background: #17395B;
  color: #F1F8FC;
  padding: 36px 0 16px 0;
  margin-top: 56px;
}
footer .container {
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 18px;
  align-items: center;
  width: 100%;
}
footer nav {
  display: flex;
  gap: 20px;
}
footer nav a {
  color: #F1F8FC;
  font-size: 1rem;
  transition: color 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a:hover, footer nav a:focus { color: #7AC1D8; }
footer .contact-details {
  color: #F1F8FC;
  font-size: 1rem;
  gap: 10px;
}
footer .contact-details img {
  height: 17px;
  margin-right: 5px;
  vertical-align: middle;
  display: inline;
}
footer .social-links {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}
footer .social-links a img {
  height: 28px;
  opacity: 0.83;
  transition: opacity 0.2s, filter 0.22s;
  filter: grayscale(70%) brightness(1.14);
}
footer .social-links a:hover img {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}
footer .copyright {
  margin-top: 18px;
  color: #B6CAE2;
  font-size: 0.98rem;
  text-align: center;
}

/* TEXT-IMAGE & FLEX PATTERNS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(122,193,216,0.09);
  padding: 26px 20px 18px 20px;
  flex: 1 1 260px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #17395B;
  color: #F1F8FC;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 24px 20px;
  box-shadow: 0 -3px 18px rgba(23, 57, 91, .17);
  z-index: 1200;
  transition: transform 0.28s cubic-bezier(.7,0,.3,1), opacity 0.2s;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(130%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 62vw;
  font-size: 1.07rem;
  color: #F1F8FC;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 11px 22px;
  margin: 0;
  transition: background 0.17s, color 0.13s, box-shadow 0.18s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #7AC1D8;
  color: #17395B;
}
.cookie-banner .accept:focus, .cookie-banner .accept:hover {
  background: #61adc9;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #17395B;
  border: 1.7px solid #7AC1D8;
}
.cookie-banner .reject:focus, .cookie-banner .reject:hover {
  color: #7AC1D8;
  border-color: #17395B;
}
.cookie-banner .settings {
  background: #7AC1D8;
  color: #17395B;
}
.cookie-banner .settings:focus, .cookie-banner .settings:hover {
  background: #17395B;
  color: #7AC1D8;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(23, 57, 91, 0.40);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hidden { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  color: #17395B;
  border-radius: 18px;
  box-shadow: 0 8px 38px rgba(23,57,91,.19);
  padding: 36px 36px 28px 36px;
  max-width: 430px;
  min-width: 300px;
  width: 93vw;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp .38s cubic-bezier(.6,0,.4,1);
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.24rem;
  margin-bottom: 0px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #7AC1D8;
  width: 20px;
  height: 20px;
}
.cookie-modal .essential {
  color: #17395B;
  font-size: 1.05rem;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .close-modal {
  position: absolute; top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #17395B;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #7AC1D8;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FORM ELEMENTS */
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 8px;
  border: 1.2px solid #A6D0E4;
  font-size: 1rem;
  padding: 10px 12px;
  background: #fff;
  margin-bottom: 14px;
}
input[type="search"] {
  width: 100%;
  max-width: 350px;
  border: 1.5px solid #7AC1D8;
  font-size: 1.05rem;
  margin: 12px 0 20px 0;
  background: #f6fcfe;
}
input[type="search"]:focus {
  border-color: #17395B;
  outline: none;
  background: #fff;
}

/* UTILITY */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }

/* RESPONSIVE DESIGN */
@media (max-width: 1080px) {
  .container { padding: 0 10px; }
}
@media (max-width: 900px) {
  .features-grid > div, .services-list > div, .solutions-grid > div, .pricing-table > div, .faq-list > div, .blog-post-list > article  {
    min-width: 170px; flex-basis: 48%;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  header nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 46px 0 42px 0;
  }
  .features-grid, .services-list, .solutions-grid, .pricing-table, .blog-post-list, .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div, .services-list > div, .solutions-grid > div, .pricing-table > div, .faq-list > div, .blog-post-list > article {
    min-width: unset; flex-basis: 100%;
  }
  .testimonial-card {
    max-width: 100%;
    padding-right: 8px;
    font-size: 1rem;
  }
  .client-logos {
    gap: 16px;
  }
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .section { padding: 28px 8px; }
  footer .container { padding: 0 2px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 8px 20px 16px;
    gap: 14px;
  }
  .cookie-banner .cookie-text { max-width: 93vw; }
}
@media (max-width: 550px) {
  h1 { font-size: 2.03rem; }
  h2 { font-size: 1.28rem; }
  .hero { padding: 26px 0 18px 0; }
  .footer .container { padding: 0 2px; }
}

/* HIGHLIGHTS, MARK, ETC */
mark, .highlight {
  background-color: #7AC1D8;
  color: #17395B;
  border-radius: 3px;
  padding: 2px 6px;
  font-weight: 600;
}

/* Accessibility - Focus States */
a:focus, button:focus, input:focus {
  outline: 2px solid #7AC1D8;
  outline-offset: 2px;
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  top: auto;
  overflow: hidden;
}

/* Animations */
.cta-button, .testimonial-card, .features-grid > div, .pricing-table > div, .services-list > div, .solutions-grid > div, .faq-list > div {
  transition: box-shadow 0.18s, transform 0.15s;
}

/* Ensure min spacing between all cards/sections (20px) */
.section, .card, .testimonial-card, .features-grid > div, .services-list > div, .solutions-grid > div, .pricing-table > div, .faq-list > div, .blog-post-list > article {
  margin-bottom: 20px;
}

/* Prevent overlapping, preserve separation */
.section > *, main > section, .features-grid > div, .services-list > div, .solutions-grid > div, .pricing-table > div, .faq-list > div, .testimonial-card, .blog-post-list > article, .card, .card-container > * {
  margin-bottom: 20px;
}

/* ENDS */
