/*-----------------------------------------------------------------
  CSS RESET & BASE STYLES
-----------------------------------------------------------------*/
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*,*:before,*:after { box-sizing: inherit; }
body {
  background: #fff;
  color: #1B2836;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.68;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B2836;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #6CA0B6;
  outline-offset: 2px;
}

/*-----------------------------------------------------------------
  TYPOGRAPHY
-----------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.38rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 12px;
}
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
b, strong {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

/*-----------------------------------------------------------------
  CONTAINER & LAYOUT
-----------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1020px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(27,40,54,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 18px rgba(27,40,54,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(108,160,182,0.16);
}
.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 > * { flex: 1 1 300px; }

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(27,40,54,0.06);
  margin-bottom: 20px;
  color: #1B2836;
  font-size: 1.07rem;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(108,160,182,0.12);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.map-snippet {
  background: #E6E6E6;
  border-radius: 12px;
  padding: 15px 20px;
  margin-top: 18px;
  font-size: 0.99rem;
}

/* List icons */
ul li > img,
ol li > img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
}
ul,
ol {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 10px;
}

/*-----------------------------------------------------------------
  HEADER & NAVIGATION
-----------------------------------------------------------------*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(27,40,54,0.043);
  position: sticky;
  top: 0; left: 0; z-index: 80;
}
header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  justify-content: space-between;
}
header img {
  height: 36px;
  width: auto;
  padding: 9px 0;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1B2836;
  letter-spacing: 0.01em;
  padding: 6px 4px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E6E6E6;
  color: #6CA0B6;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #6CA0B6;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px 0 rgba(108,160,182,0.10);
  transition: background 0.18s, box-shadow 0.18s, color 0.15s, transform 0.12s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #1B2836;
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(27,40,54,0.13);
  transform: translateY(-2px) scale(1.03);
}
button.mobile-menu-toggle {
  display: none;
  font-size: 2.15rem;
  color: #1B2836;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 14px 5px 8px;
  margin-left: 3px;
  margin-right: -8px;
  border-radius: 6px;
  line-height: 1;
  transition: background 0.12s;
}
button.mobile-menu-toggle:focus,
button.mobile-menu-toggle:hover {
  background: #E6E6E6;
}

/*-----------------------------------------------------------------
  MOBILE MENU (SLIDE OVERLAY)
-----------------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 40px 0 rgba(27,40,54,0.11);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.59,0,0.4,1);
  will-change: transform;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 8px 56px 0 rgba(27,40,54,0.21);
}
.mobile-menu-close {
  font-size: 2.25rem;
  color: #1B2836;
  background: none;
  border: none;
  padding: 12px 18px 6px 16px;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 7px;
  margin: 14px 12px 0 0;
  transition: background 0.14s;
  z-index: 222;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #E6E6E6;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 0;
  margin-top: 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20rem;
  color: #1B2836;
  padding: 18px 32px 18px 32px;
  border-bottom: 1px solid #E6E6E6;
  transition: background 0.17s, color 0.17s;
  width: 100%;
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E6E6E6;
  color: #6CA0B6;
}

/* Hide desktop nav, show burger on mobile */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  button.mobile-menu-toggle { display: block; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none!important; }
}

/*-----------------------------------------------------------------
  FOOTER
-----------------------------------------------------------------*/
footer {
  background: #fff;
  color: #1B2836;
  border-top: 1.5px solid #E6E6E6;
  margin-top: 30px;
  padding: 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 37px 20px 18px 20px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #6CA0B6;
  font-size: 0.98rem;
  padding: 4px 2px;
  border-radius: 5px;
  transition: background 0.15s, color 0.12s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #1B2836;
  background: #E6E6E6;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.97rem;
  flex-wrap: wrap;
}
.footer-info img {
  height: 28px; width: auto;
}
footer address {
  font-style: normal;
  color: #1B2836;
  opacity: 0.82;
  margin-left: 3px;
}

/*-----------------------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
-----------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 30px 0 rgba(27,40,54,0.11);
  color: #1B2836;
  z-index: 900;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 32px;
  border-radius: 18px 18px 0 0;
  font-size: 0.99rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.25s, transform 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: #6CA0B6;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.16s, color 0.16s;
  box-shadow: 0 2px 10px 0 rgba(108,160,182,0.10);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #1B2836;
  color: #fff;
}
.cookie-btn.cookie-btn-secondary {
  background: #E6E6E6;
  color: #1B2836;
  border: 1px solid #6CA0B6;
  font-weight: 500;
}
.cookie-btn.cookie-btn-secondary:hover,
.cookie-btn.cookie-btn-secondary:focus {
  background: #6CA0B6;
  color: #fff;
  border-color: #6CA0B6;
}
.cookie-btn.cookie-btn-light {
  background: transparent;
  color: #1B2836;
  border: 1px solid #E6E6E6;
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1400;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(27,40,54,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.21s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px 0 rgba(27,40,54,0.13);
  padding: 36px 30px 26px 30px;
  max-width: 480px;
  min-width: 330px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2000;
  animation: popup-fadein 0.28s cubic-bezier(0.52,0,0.48,1);
}
@keyframes popup-fadein {
  0% { transform: scale(0.93) translateY(22px); opacity:0; }
  100% { transform: scale(1) translateY(0px); opacity:1; }
}
.cookie-modal-title {
  font-size: 1.33rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1B2836;
  margin-bottom: 0px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.cookie-modal-category input[type=checkbox] {
  width: 20px; height: 20px;
}
.cookie-modal-category--essential input[type=checkbox] {
  accent-color: #6CA0B6;
}
.cookie-modal-category--essential label {
  opacity: 0.6;
}
.cookie-modal-description {
  font-size: 0.98rem;
  margin-bottom: 0;
  color: #445269;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #1B2836;
  cursor: pointer;
  padding: 2px 6px;
}

/*-----------------------------------------------------------------
  RESPONSIVE DESIGN (MOBILE-FIRST)
-----------------------------------------------------------------*/
@media (max-width: 768px) {
  h1 { font-size: 1.72rem; margin-bottom: 18px; }
  h2 { font-size: 1.33rem; margin-bottom: 14px; }
  .container {
    padding: 0 10px;
    max-width: 100vw;
  }
  .content-wrapper, .section {
    padding: 26px 7px;
    margin-bottom: 32px;
    border-radius: 11px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card {
    padding: 18px 10px;
    margin-bottom: 16px;
    min-width: 0;
    border-radius: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    padding: 13px 10px;
    border-radius: 10px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 58px;
    padding: 7px 7px 7px 10px;
    gap: 7px;
  }
  .footer-nav {
    gap: 11px;
    font-size: 0.93rem;
  }
  footer .container {
    padding: 18px 10px 10px 10px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-info img { height: 22px; }
  .footer-info { gap: 8px; font-size: 0.94rem; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 14px 10px 12px 10px;
    font-size: 0.95rem;
    border-radius: 10px 10px 0 0;
  }
  .cookie-modal {
    padding: 19px 10px 9px 10px;
    border-radius: 9px;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .content-wrapper, .section {
    padding: 15px 3px;
  }
  .card {
    padding: 12px 3px;
  }
  .cookie-modal {
    min-width: 0;
    max-width: 96vw;
  }
}

/*-----------------------------------------------------------------
  MICRO-INTERACTIONS, EFFECTS
-----------------------------------------------------------------*/
.card,
.testimonial-card,
.content-wrapper {
  transition: box-shadow 0.18s, border-color 0.17s, background-color 0.16s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(108,160,182,0.16);
}

.cta-btn,
.cookie-btn {
  transition: background 0.18s, color 0.13s, transform 0.12s;
}
.cta-btn:active,
.cookie-btn:active {
  transform: scale(0.97);
}

/* Custom focus outlines for better a11y */
.cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid #1B2836;
  outline-offset: 2px;
}

/*-----------------------------------------------------------------
  FORMS & MISC
-----------------------------------------------------------------*/
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #E6E6E6;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  margin-bottom: 17px;
  outline: none;
  transition: border-color 0.16s;
  width: 100%;
  color: #1B2836;
}
input:focus, select:focus, textarea:focus {
  border-color: #6CA0B6;
}

/*-----------------------------------------------------------------
  UTILITY CLASSES
-----------------------------------------------------------------*/
.mt-1 { margin-top: 8px!important; }
.mt-2 { margin-top: 20px!important; }
.mb-1 { margin-bottom: 12px!important; }
.mb-2 { margin-bottom: 30px!important; }
.space-between { justify-content: space-between!important; }
.text-center { text-align: center!important; }
.text-left { text-align: left!important; }
.flex { display: flex!important; }
.flex-col { flex-direction: column!important; }
.flex-row { flex-direction: row!important; }
.align-center { align-items: center!important; }
.align-start { align-items: flex-start!important; }
.gap-2 { gap: 16px!important; }
.gap-3 { gap: 24px!important; }

/*-----------------------------------------------------------------
  DARK MODE SUPPORT (optional)
-----------------------------------------------------------------*/
@media (prefers-color-scheme: dark) {
  body {
    background: #161a20;
    color: #E6E6E6;
  }
  header, .content-wrapper, .section, .card, .testimonial-card, .cookie-banner, .cookie-modal {
    background: #1B2836;
    color: #E6E6E6;
    box-shadow: 0 6px 30px 0 rgba(27,40,54,0.17);
  }
  .main-nav a, .footer-nav a, .footer-info, .cta-btn {
    color: #E6E6E6;
  }
  .cta-btn {
    background: #445269;
  }
  .cta-btn:hover, .cta-btn:focus {
    background: #E6E6E6;
    color: #1B2836;
  }
  .cookie-btn.cookie-btn-light {
    background: transparent;
    color: #E6E6E6;
    border: 1px solid #445269;
  }
  .cookie-btn.cookie-btn-secondary {
    background: #445269;
    color: #E6E6E6;
    border: 1px solid #6CA0B6;
  }
  .footer-nav a:hover,
  .footer-nav a:focus {
    background: #445269;
    color: #E6E6E6;
  }
}
