/*=============== 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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #232323;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.03em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  background: none;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

/*=============== TYPOGRAPHY ===============*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.6em;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.18; }
h2 { font-size: 2rem; line-height: 1.22; }
h3 { font-size: 1.3rem; line-height: 1.23; }
h4 { font-size: 1.15rem; line-height: 1.25; }
h5, h6 { font-size: 1rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 1.25em; }
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.11rem;
  color: #404040;
  font-weight: 400;
  margin-bottom: 1.2em;
  line-height: 1.68;
}
strong, b {
  font-weight: 700;
}

/* Typography utility */
.text-center { text-align: center !important; }

/*=============== LAYOUT ===============*/
.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 18px;
  padding-right: 18px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 6px 24px 0 rgba(32,32,32,0.07);
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.26s;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(32,32,32,0.11);
}
.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: #f8f8f8;
  border-radius: 14px;
  box-shadow: 0 7px 18px 0 rgba(85,85,85,0.10);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 320px;
}
.testimonial-meta {
  font-size: 0.98em;
  color: #222;
  margin-top: 8px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.map-dummy {
  background: #eaeaea;
  border-radius: 12px;
  padding: 32px 18px;
  color: #737373;
  min-height: 90px;
}

/*=============== HEADER & NAVIGATION ===============*/
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: relative;
  z-index: 80;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 78px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
  color: #28313a;
  transition: color 0.15s;
  line-height: 1.32;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #32424A;
}
.button-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 34px;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.09);
  cursor: pointer;
  letter-spacing: 0.07em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.button-primary:hover, .button-primary:focus {
  background: #32424A;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(32,32,32,0.15);
}
.button-secondary {
  display: inline-block;
  background: #fff;
  color: #111;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  border: 1.5px solid #111;
  border-radius: 8px;
  padding: 10px 28px;
  box-shadow: 0 1.5px 6px 0 rgba(60,60,60,0.07);
  cursor: pointer;
  position: relative;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, border 0.16s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #32424A;
  color: #fff;
  border: 1.5px solid #32424A;
  box-shadow: 0 5px 18px 0 rgba(32,32,32,0.13);
}
.button-link {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #32424A;
  border-bottom: 1.5px solid #32424A;
  font-weight: 600;
  padding: 3px 0;
  font-size: 1.03rem;
  border-radius: 0;
  background: none;
  transition: color 0.2s, border-color 0.2s;
}
.button-link:hover, .button-link:focus {
  color: #111;
  border-bottom: 1.5px solid #111;
}

/* Hamburger mobile toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
  margin-left: 9px;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background 0.15s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ededed;
}

/*=============== MOBILE MENU ===============*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 9px 36px 0 rgba(50,66,74,0.17);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.55,.01,.50,1), opacity 0.19s;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.45rem;
  background: none;
  border: none;
  color: #111;
  margin: 16px 18px 0 0;
  padding: 0 7px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #efefef;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 32px 30px 0 30px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.19rem;
  font-weight: 600;
  padding: 14px 4px;
  color: #222;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eee;
  color: #32424A;
}

/*=============== SECTION STYLES ===============*/
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

/*=============== FOOTER ===============*/
footer {
  background: #232323;
  color: #eee;
  padding: 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 18px;
}
.footer-brand {
  margin-bottom: 4px;
}
.footer-brand img { height: 42px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1.04rem;
  color: #ddd;
  justify-content: center;
}
.footer-nav a {
  color: #eee;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  position: relative;
  transition: color 0.18s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #8FB8A6;
}
.footer-contact {
  color: #c7c7c7;
  font-size: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0.7em;
}
.footer-contact img {
  height: 1.31em;
  margin-right: 6px;
  transform: translateY(2px);
}
.footer-cta {
  margin: 6px 0 0 0;
}
.footer-copy {
  font-size: 0.96em;
  color: #b7b7b7;
  margin: 16px 0 0 0;
}

/*=============== CARDS & FEATURE BLOCKS ===============*/
.feature-grid > div {
  flex: 1 1 220px;
  background: #fafbfc;
  border-radius: 12px;
  padding: 22px 20px 16px 20px;
  box-shadow: 0 3px 12px 0 rgba(35,35,35,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  min-width: 170px;
  max-width: 305px;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 28px 0 rgba(50,66,74,0.09);
}
.feature-grid img {
  height: 38px;
  margin-bottom: 9px;
}
.feature-grid h3 {
  font-size: 1.13rem;
  color: #171717;
  margin-bottom: 0.2em;
  margin-top: 0;
}
.feature-grid p {
  font-size: 0.97em;
  color: #404040;
}


/*=============== UTILITY CLASSES ===============*/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pb-32 { padding-bottom: 32px !important; }

/******************* SPECIAL CLASSES ********************/
/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #222;
  color: #fff;
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  z-index: 4000;
  box-shadow: 0 -3px 28px 0 rgba(34,34,34,0.21);
  font-size: 1rem;
  animation: cookiebanner-in 0.65s cubic-bezier(.65,.01,.40,1);
}
@keyframes cookiebanner-in {
  from { opacity: 0; transform: translateY(65px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-banner .button-cookie {
  background: #fff;
  color: #111;
  border: none;
  padding: 9px 22px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.07em;
  margin-right: 2px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 7px 0 rgba(60,60,60,0.08);
  cursor: pointer;
}
.button-cookie:hover, .button-cookie:focus {
  background: #8FB8A6;
  color: #fff;
}
.button-cookie-settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.button-cookie-settings:hover, .button-cookie-settings:focus {
  background: #232323;
  border: 1.5px solid #8FB8A6;
  color: #8FB8A6;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4100;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,34,34,0.54);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.21s cubic-bezier(.7,.13,.97,.51);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #232323;
  box-shadow: 0 8px 48px 0 rgba(34,34,34,0.22);
  border-radius: 12px;
  padding: 32px 24px 18px 24px;
  max-width: 420px;
  min-width: 290px;
  font-size: 1rem;
  animation: modal-in 0.33s cubic-bezier(.7,.08,.38,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(.7) translateY(60px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.29rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #32424A;
  margin-bottom: 0.7em;
}
.cookie-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 8px;
}
.cookie-category strong {
  font-size: 1.07rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 20px;
  background: #e2e2e2;
  border-radius: 10px;
  position: relative;
  transition: background 0.18s;
  outline: none;
  margin-left: 9px;
  cursor: pointer;
  display: inline-block;
}
.cookie-toggle:checked {
  background: #8FB8A6;
}
.cookie-toggle:disabled {
  opacity: 0.67;
  cursor: not-allowed;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.5px 3.5px 0 rgba(0,0,0,0.13);
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(17px);
}
.cookie-modal .button-cookie-modal-close {
  background: #232323;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 3px;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-modal .button-cookie-modal-close:hover, .cookie-modal .button-cookie-modal-close:focus {
  background: #8FB8A6;
  color: #fff;
}

/*=============== RESPONSIVE DESIGN ===============*/
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid > div { min-width: 180px; gap: 8px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.27rem; }
  h3 { font-size: 1.03rem; }
  .section {
    padding: 27px 7px;
    margin-bottom: 34px;
  }
  .footer-brand img { height: 36px; }
  .footer-nav {
    font-size: 0.97rem;
    gap: 9px;
  }
  .testimonials, .feature-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .main-nav {
    display: none;
  }
  .button-primary, .button-secondary {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 60px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    padding: 15px;
    min-width: 0;
    font-size: 0.98em;
  }
}
@media (max-width: 520px) {
  .container {
    padding-left: 0; padding-right: 0;
  }
  .footer-contact {
    font-size: 0.94rem;
  }
}

/************ GENERAL ELEMENTS ************/
hr {
  border: none; border-top: 1px solid #ececec;
  margin: 34px 0;
}
::-webkit-input-placeholder { color: #232323AA; }
::-moz-placeholder { color: #232323AA; }
:-ms-input-placeholder { color: #232323AA; }
::placeholder { color: #232323AA; }

/*================== PRINT STYLES ==================*/
@media print {
  * { color: #333 !important; background: #fff !important; box-shadow: none !important; text-shadow: none !important; }
  a, a:visited { color: #333 !important; text-decoration: underline; }
  header, nav, .mobile-menu, footer, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none!important; }
}
