/* CSS RESET & BASE TYPOGRAPHY - SCANDINAVIAN CLEAN */
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, 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; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; }
body { 
  line-height: 1.6;
  background: #F8FAF9;
  color: #232E30;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { 
  max-width: 100%;
  height: auto;
  display: block;
}
a { 
  color: #175C6C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #388E96; text-decoration: underline; }
ul, ol { list-style: none; }

table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 16px; text-align: left; }
th { background: #F1F5F4; font-weight: 600; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600|Roboto:400,400italic,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #175C6C;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -1px; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p, ul, ol, dl, blockquote {
  font-size: 1.05rem; color: #232E30;
  margin-bottom: 16px;
}
.subheadline {
  color: #567071;
  font-size: 1.2rem;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.note {
  color: #7B8688;
  font-size: 0.97rem;
  margin-top: 12px;
}

.thanks-msg { color: #175C6C; font-size: 1.1rem; margin: 24px 0 32px; }

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(23,92,108,0.05);
}
@media (max-width: 900px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 36px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 18px 0;
    margin-bottom: 24px;
    border-radius: 10px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 16px 0 rgba(23,92,108,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #175C6C;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 6px 9px;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #E5F3EE;
  color: #388E96;
}
header nav .cta {
  background: #175C6C;
  color: #FFF;
  padding: 8px 20px 8px 20px;
  border-radius: 22px;
  font-weight: 700;
  margin-left: 16px;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 8px 0 rgba(23,92,108,0.09);
}
header nav .cta:hover,
header nav .cta:focus {
  background: #388E96;
  color: #FFFFFF;
  box-shadow: 0 2px 16px 0 rgba(23,92,108,0.18);
}
header img {
  height: 44px;
  width: auto;
  margin-right: 13px;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #175C6C;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.14s;
  z-index: 2200;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E5F3EE;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 92, 108, 0.97);
  color: #fff;
  z-index: 2600;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.82,.01,.58,1.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 26px 0 10px 20px;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #FFFFFF;
  cursor: pointer;
  align-self: flex-start;
  border-radius: 7px;
  padding: 2px 10px;
  transition: background 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #437C9A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  padding-left: 20px;
  gap: 20px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 3px;
  transition: color 0.16s, background 0.16s;
  padding: 7px 14px 7px 4px;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7FC29B;
  color: #175C6C;
}
@media (max-width: 1040px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1041px) {
  .mobile-menu { display: none !important; }
}

/* MAIN LAYOUT & FLEXBOX RESPONSIVE */
main {
  width: 100%;
  margin-top: 0;
  min-height: 56vh;
}

.feature-grid, .usp-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature-grid > div, .usp-grid > div, .service-grid > div {
  background: #F8FAF9;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(140,180,175,0.07);
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 24px 22px 24px;
  margin-bottom: 20px;
  border: 1px solid #EDF3F2;
  transition: box-shadow 0.18s, border 0.14s;
}
.feature-grid > div:hover, .usp-grid > div:hover, .service-grid > div:hover {
  box-shadow: 0 7px 28px 0 rgba(140,180,175,0.17);
  border: 1.5px solid #7FC29B;
}
.feature-grid img, .usp-grid img, .service-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 2px 18px 0 rgba(140,180,175,0.09);
  margin-bottom: 20px;
  padding: 18px 22px;
  position: relative;
  flex: 1 1 260px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(143, 193, 155, 0.13);
}

.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;
}

@media (max-width: 900px) {
  .feature-grid, .usp-grid, .service-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .usp-grid > div, .service-grid > div {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 20px; }
  .content-wrapper { gap: 17px; }
}

/* BUTTONS & LINKS */
.cta {
  background: #7FC29B;
  color: #175C6C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1px;
  border: none;
  padding: 13px 30px;
  border-radius: 26px;
  font-size: 1.12rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
  box-shadow: 0 1px 11px 0 rgba(140,180,175,0.11);
  display: inline-block;
  margin-top: 7px;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #175C6C;
  color: #FFF;
  box-shadow: 0 7px 29px 0 rgba(23,92,108,0.18);
}
button.cta {
  border: none;
}

/* TABLE (PRICING) */
.pricing-table {
  overflow-x: auto;
  margin-bottom: 24px;
}
.pricing-table table {
  border: 1.2px solid #E5F3EE;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 8px;
}
.pricing-table th, .pricing-table td {
  font-size: 1rem;
  border-bottom: 1px solid #F0F4F3;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-features li {
  font-size: 1.04rem;
  padding: 7px 0 7px 18px;
  position: relative;
}
.pricing-features li:before {
  content: '\2022';
  margin-right: 10px;
  color: #7FC29B;
  font-size: 1.3em;
}

/* FAQ ACCORDION */
.faq-accordion dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  background: #EDF3F2;
  color: #175C6C;
  border-radius: 9px;
  padding: 14px 20px 14px 34px;
  cursor: pointer;
  position: relative;
  margin-top: 12px;
  transition: background 0.13s;
}
.faq-accordion dt:before {
  content: '\25BC';
  font-size: 0.79em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.27s;
}
.faq-accordion dt.open:before {
  transform: translateY(-50%) rotate(-180deg);
}
.faq-accordion dd {
  background: #F8FAF9;
  color: #232E30;
  border-radius: 0 0 9px 9px;
  margin-bottom: 8px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 12px 25px 15px 38px;
  font-size: 1rem;
  box-shadow: 0 2px 6px 0 rgba(140,180,175,0.06);
  display: none;
}
.faq-accordion dt.open + dd {
  display: block;
  animation: fadeinFAQ 0.2s;
}
@keyframes fadeinFAQ {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8FAF9;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(140,180,175,0.09);
  color: #232E30;
  font-size: 1.07rem;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px 0 rgba(143, 193, 155, 0.12);
}
.testimonial-card blockquote {
  margin: 0 0 0 0;
  font-style: italic;
  font-size: 1.12rem;
  color: #175C6C;
  line-height: 1.7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-card > div {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #567071;
  font-size: 1.03rem;
  font-weight: 500;
  margin-top: 2px;
}
.testimonial-card span {
  display: block;
  color: #7FC29B;
  font-size: 0.98rem;
  margin-top: 5px;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1.09rem;
  color: #175C6C;
  margin-bottom: 15px;
}
.contact-details img {
  vertical-align: bottom;
  margin-right: 8px;
}
.map-location {
  margin-top: 7px;
}
.map-location p {
  color: #232E30;
  background: #F1F5F4;
  border-radius: 8px;
  padding: 10px 15px;
}

/* ADDRESS BLOCKS */
address {
  font-size: 0.97rem;
  color: #567071;
  font-style: normal;
  line-height: 1.45;
  margin-top: 12px;
  margin-bottom: 8px;
  display: block;
}
address img {
  height: 19px;
  width: 19px;
  margin-right: 7px;
  vertical-align: middle;
}
address a {
  color: #175C6C;
}

/* FOOTER */
footer {
  background: #F8FAF9;
  border-top: 2px solid #EDF3F2;
  margin-top: 60px;
  padding: 40px 0 20px;
  box-shadow: 0 -1px 10px 0 rgba(140,180,175,0.03);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  font-size: 0.97rem;
  color: #567071;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus { color: #388E96; }
footer img {
  height: 38px;
}

@media (max-width: 900px) {
  footer .content-wrapper { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 600px) {
  footer { padding: 26px 0 9px; }
  footer .container { padding: 0 8px; }
}

/* STATISTICS SECTION */
.stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.stats li {
  background: #EAF5F0;
  border-radius: 13px;
  color: #175C6C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 17px 18px 13px 18px;
  font-size: 1.12rem;
  min-width: 175px;
}
@media (max-width: 600px) {
  .stats ul { flex-direction: column; gap: 15px; }
  .stats li { min-width: 0; padding: 14px; }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFFFFF;
  box-shadow: 0 -3px 22px 0 rgba(23,92,108,0.17);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px 18px 16px;
  z-index: 5000;
  font-size: 1rem;
  gap: 20px;
  transition: transform 0.34s cubic-bezier(.8,0,.58,1); 
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 17px;
}
.cookie-banner button {
  appearance: none;
  outline: none;
  border: none;
  border-radius: 22px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: #F1F5F4;
  color: #175C6C;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  margin-left: 0;
}
.cookie-banner button.accept {
  background: #7FC29B;
  color: #175C6C;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #175C6C;
  color: #FFFFFF;
  box-shadow: 0 6px 18px 0 rgba(23,92,108,0.13);
}
.cookie-banner button.reject {
  background: #F1F5F4;
  color: #567071;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #E5F3EE;
  color: #175C6C;
}
.cookie-banner button.settings {
  background: #175C6C;
  color: #fff;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #7FC29B;
  color: #175C6C;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 10px 13px 10px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-buttons { gap: 12px; }
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 5100;
  align-items: center;
  justify-content: center;
  background: rgba(23,92,108,0.42);
  transition: opacity 0.22s;
}
.cookie-modal.active {
  display: flex;
  animation: fadeinCookie 0.22s;
}
@keyframes fadeinCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-popup {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 44px 0 rgba(23,92,108,0.18);
  padding: 38px 40px 32px 40px;
  max-width: 380px;
  width: 98%;
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  font-size: 1.08rem;
}
.cookie-popup h3 {
  color: #175C6C;
  margin-bottom: 14px;
  font-size: 1.27rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  background: #EAF5F0;
  border-radius: 13px;
  transition: background 0.15s;
  margin-right: 5px;
  flex-shrink: 0;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .toggle-slider {
  position: absolute;
  left: 2px; top: 2px; width: 18px; height: 18px;
  border-radius: 50%;
  background: #C3DDD1;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle.on {
  background: #7FC29B;
}
.cookie-toggle.on .toggle-slider {
  background: #175C6C;
  left: 18px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
  color: #232E30;
}
.cookie-category .essential { color: #175C6C; font-weight: 700; }
.cookie-popup .close-modal {
  position: absolute;
  top: 9px;
  right: 18px;
  font-size: 1.9rem;
  background: none;
  border: none;
  color: #175C6C;
  border-radius: 6px;
  padding: 2px 8px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-popup .close-modal:hover,
.cookie-popup .close-modal:focus {
  background: #EAF5F0;
}
.cookie-popup .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-popup .modal-actions button {
  padding: 9px 18px;
  border-radius: 18px;
  background: #7FC29B;
  color: #175C6C;
  border: none;
  font-weight: 600;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-popup .modal-actions button.save {
  background: #175C6C;
  color: #fff;
}
.cookie-popup .modal-actions button.save:hover,
.cookie-popup .modal-actions button.save:focus {
  background: #7FC29B;
  color: #175C6C;
}
.cookie-popup .modal-actions button.cancel {
  background: #EAF5F0;
  color: #567071;
}
.cookie-popup .modal-actions button.cancel:hover,
.cookie-popup .modal-actions button.cancel:focus {
  background: #F1F5F4;
}
@media (max-width: 600px) {
  .cookie-popup {
    padding: 18px 8px 18px 10px;
    font-size: 1rem;
    max-width: 97vw;
  }
}

/* --- OTHER UTILITY --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}
.team-intro {
  background: #F8FAF9;
  border-radius: 11px;
  padding: 18px 18px 14px 23px;
  border-left: 6px solid #7FC29B;
  color: #175C6C;
}
@media (max-width: 540px) {
  .team-intro { padding: 12px 7px 12px 9px; font-size: 1rem; }
}

/* MEDIA QUERIES FOR SMALL DEVICES */
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1.07rem; }
  .cta { font-size: 1rem; padding: 10px 16px; }
}

/* SMOOTH TRANSITIONS FOR MICRO-INTERACTIONS */
*:focus {
  outline: 2px solid #7FC29B;
  outline-offset: 1px;
  transition: outline 0.14s;
}

/* ANIMATION UTILITIES */
.fade-in {
  animation: fadein 0.45s;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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