/* 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, 
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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #14313b;
  min-height: 100vh;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: #f7f8f9;
}
::-webkit-scrollbar-thumb {
  background: #e2e5e9;
  border-radius: 8px;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400italic,700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #14313b;
  font-size: 16px;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #226179;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem;   margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
h5, h6 { font-size: 1rem; }
p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #14313b;
}
strong { font-weight: 700; }
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 16px;
}
ul li, ol li { margin-bottom: 8px; }

/* Layout Containers & Spacing */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

/* Cards & Flex Utilities */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(34, 97, 121, 0.06);
  padding: 28px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s cubic-bezier(.4,0,.2,1), transform 0.20s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 20px rgba(34, 97, 121, 0.09);
  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;
}
.text-image-section img { border-radius: 10px; }
/* Responsive Tweaks */
@media (max-width: 900px) {
  .container, .section {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .text-image-section { flex-direction: column; }
  .card, .content-wrapper { width: 100%; }
  .section { padding: 32px 8px; }
}

/* Main Navigation */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f1f2f3;
  box-shadow: 0 4px 14px rgba(66, 161, 139, 0.03);
  position: sticky;
  top: 0; left: 0;
  z-index: 101;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 20px 14px 20px;
}
.main-navigation a img { display: block; height: 34px; }
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-navigation ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #226179;
  letter-spacing: 0.01em;
  padding: 4px 0;
  position: relative;
  text-decoration: none;
  transition: color 0.18s;
}
.main-navigation ul li a:hover,
.main-navigation ul li a:focus {
  color: #42A18B;
}
.cta-button,
.content-wrapper .cta-button,
.section .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #226179;
  color: #fff;
  border: 0;
  padding: 13px 24px;
  border-radius: 26px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(34, 97, 121, 0.10);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  text-decoration: none;
  margin-left: 24px;
  outline: none;
}
.cta-button:hover,
.cta-button:focus {
  background: #42A18B;
  color: #fff;
  box-shadow: 0 4px 20px rgba(66, 161, 139, 0.15);
  transform: translateY(-2px) scale(1.015);
}

/* Hide burger on desktop, hide main nav on mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #226179;
  cursor: pointer;
}
@media (max-width: 950px) {
  .main-navigation ul {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    z-index: 200;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #f7f8f9;
    text-align: center;
    transition: background 0.2s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus { background: #e6ece7; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 97, 121, 0.96);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(100%);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 32px 24px 16px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 36px;
  display: block;
  width: 100%;
  outline: none;
  border-radius: 0 20px 20px 0;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #42A18B;
  color: #fff;
}
@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* HERO SECTION */
.hero {
  background: #F7F8F9;
  padding: 70px 0 56px 0;
  margin-bottom: 48px;
}
.hero .container { display: flex; flex-direction: column; align-items: flex-start; }
.hero h1 {
  color: #226179;
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.hero p {
  color: #14313b;
  font-size: 1.18rem;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .hero {
    padding: 36px 0 32px 0;
    margin-bottom: 24px;
  }
  .hero h1 { font-size: 2.0rem; }
  .hero p { font-size: 1.05rem; }
}

/* Lists: Features & Services */
.features-list, .services-list, .clients-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.features-list li, .clients-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(34,97,121,0.03);
  font-size: 1.08rem;
  color: #226179;
  margin-bottom: 0;
  min-width: 210px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.services-list li,
.services-list > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 7px rgba(34,97,121,0.025);
  padding: 26px 20px 22px 20px;
  min-width: 210px;
  margin-bottom: 0;
  transition: box-shadow .17s, transform .17s;
  margin-right: 0;
}
.services-list li:hover,
.services-list > div:hover {
  box-shadow: 0 6px 22px rgba(66,161,139,0.09);
  transform: translateY(-3px);
}
.services-list h3 {
  color: #226179;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.services-list p { margin-bottom: 0; color: #14313b; }
@media (max-width: 800px) {
  .features-list, .services-list, .clients-list {
    flex-direction: column;
    gap: 12px;
  }
  .services-list li,
  .services-list > div,
  .features-list li {
    min-width: unset;
    width: 100%;
    flex: 1 1 100%;
  }
}

/* TESTIMONIALS */
.testimonials .content-wrapper { gap: 30px; align-items: flex-start; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px 18px 30px;
  background: #fff;
  border-radius: 11px;
  min-width: 220px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(34, 97, 121, 0.07);
  color: #14313b;
  font-size: 1.03rem;
  transition: box-shadow .18s, transform .16s;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1.03rem;
  color: #14313b;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #226179;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px rgba(34, 97, 121, 0.13);
  transform: translateY(-3px);
}
@media (max-width: 700px) {
  .testimonial-card {
    padding: 16px 12px;
  }
}

/* CTA SECTIONS */
.cta {
  background: #226179;
  color: #fff;
  padding: 56px 0 48px;
  box-shadow: 0 2px 14px rgba(34,97,121,0.04);
  margin-bottom: 0;
}
.cta .content-wrapper h2, .cta .content-wrapper p {
  color: #fff;
}
.cta .cta-button {
  background: #42A18B;
  color: #fff;
  border: none;
  margin: 0;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #fff;
  color: #226179;
}

/* PRICING TABLE */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}
.pricing-table > div {
  background: #fff;
  flex: 1 1 210px;
  border-radius: 12px;
  padding: 25px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 210px;
  box-shadow: 0 2px 9px rgba(34,97,121,0.05);
  transition: box-shadow .16s, transform .16s;
}
.pricing-table > div:hover {
  box-shadow: 0 8px 36px rgba(66,161,139, 0.11);
  transform: translateY(-4px);
}
.pricing-table h3 {
  color: #226179;
  font-size: 1.1rem;
}
.pricing-table p {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #42A18B;
}
.pricing-table ul {
  margin: 0 0 0 1em;
}
.pricing-notes {
  font-size: 0.98rem;
  color: #14313b;
}
@media (max-width: 800px) {
  .pricing-table {
    flex-direction: column;
    gap: 12px;
  }
  .pricing-table > div {
    min-width: unset;
    width: 100%;
  }
}

/* FAQ LIST */
.faq-list h3 {
  color: #226179;
  font-size: 1.08rem;
  margin-top: 16px;
  margin-bottom: 6px;
}
.faq-list p {
  margin-bottom: 16px;
  color: #14313b;
}

/* Footer */
footer {
  background: #f7f8f9;
  color: #226179;
  font-size: 1rem;
  padding: 0 0 0 0;
}
.footer-columns {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 0 28px 0;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 210px;
  max-width: 260px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 4px;
}
.footer-logo p {
  margin-top: 0;
  font-size: 1rem;
  color: #14313b;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-navigation a {
  color: #226179;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-navigation a:hover,
.footer-navigation a:focus {
  color: #42A18B;
}
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.99rem;
}
.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #14313b;
}
.footer-contact ul li img {
  height: 19px;
  width: 19px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.17s;
}
.footer-social a:hover,
.footer-social a:focus {
  background: #42A18B;
}
.footer-social img {
  width: 19px; height: 19px;
}
@media (max-width: 950px) {
  .footer-columns {
    flex-direction: column;
    gap: 24px;
    padding: 28px 0 18px 0;
  }
  .footer-logo,
  .footer-contact,
  .footer-navigation {
    max-width: 100%;
  }
}

/* Forms & Inputs (for future extensibility) */
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e8edef;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f7f8f9;
  color: #14313b;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(34,97,121,0.03);
  outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #42A18B;
  background: #fff;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #226179;
  margin-bottom: 7px;
}

/* Links */
a {
  color: #42A18B;
  text-decoration: underline;
  transition: color 0.17s;
  outline: none;
}
a:hover, a:focus {
  color: #226179;
}

/* Misc Utilities */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.map-section {
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10999;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  border-top: 1px solid #e6ece7;
  box-shadow: 0 -2px 14px rgba(34,97,121,.08);
  padding: 18px 42px 18px 22px;
  width: 100%;
  gap: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), opacity 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-text {
  font-size: 0.98rem;
  color: #14313b;
  max-width: 680px;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  background: #226179;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 9px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.14s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #42A18B;
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: #F7F8F9;
  color: #226179;
  border: 1px solid #226179;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #42A18B;
  color: #fff;
  border-color: #42A18B;
}

/* COOKIE MODAL (Preferences) */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(34,97,121, 0.42);
  z-index: 11001;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-60%) scale(1.02);
  min-width: 340px;
  max-width: 96vw;
  max-height: 96vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 52px rgba(34, 97, 121,  0.18);
  padding: 38px 28px 30px 28px;
  z-index: 11010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.20s;
}
.cookie-modal.open {
  opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1.0);
}
.cookie-modal h2 {
  margin-top: 0;
  font-size: 1.4rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 20px 0;
}
.cookie-modal .category-info {
  flex: 1;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #e9eeec;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: #42A18B;
}
.cookie-modal .cookie-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 100%;
  transition: left 0.19s;
}
.cookie-modal .cookie-switch:checked:before {
  left: 19px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 22px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #226179;
  cursor: pointer;
  z-index: 11011;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; padding: 13px 8px; gap: 14px; }
  .cookie-modal { padding: 18px 6px 18px 10px; min-width: 220px; }
  .cookie-modal h2 { font-size: 1.08rem; }
}

/* Accessibility & :focus states */
a:focus, button:focus, .cta-button:focus, .cookie-btn:focus, .mobile-menu-close:focus, .cookie-modal-close:focus {
  outline: 2px solid #42A18B;
  outline-offset: 2px;
}

/* Transitions */
.card, .testimonial-card, .pricing-table > div, .cta-button, .cookie-btn, .footer-social a {
  transition: box-shadow 0.19s, background 0.18s, transform 0.16s, color 0.17s;
}

/* Z-Index utility */
.z-1 { z-index: 1; }
.z-99 { z-index: 99; }

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