/* 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, 
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 {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #EFEFEF;
  color: #184157;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #184157;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.5,0,.5,1);
}
a:hover, a:focus {
  color: #E8A317;
}
ul, ol {
  padding-left: 24px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* TYPOGRAPHY - GEOMETRIC STRUCTURED */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #184157;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.18; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.05rem; margin-bottom: 10px; }
p, li, blockquote {
  font-size: 1rem;
  color: #184157;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #E8A317;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #184157;
}
.text-section {
  margin-bottom: 16px;
}

/* STRUCTURE & LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24,65,87,0.08);
  padding: 26px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #EFEFEF;
  transition: box-shadow 0.28s cubic-bezier(.5,0,.5,1);
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 16px 0 rgba(24,65,87,0.14);
  border-color: #E8A317;
  z-index: 2;
}
.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 {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(24,65,87, 0.06);
  border-left: 6px solid #184157;
  transition: box-shadow 0.2s;
}
.testimonial-card blockquote {
  color: #184157;
  margin: 0;
  font-size: 1.1rem;
}
.testimonial-card p {
  margin: 0;
  font-weight: 500;
  color: #184157;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
  align-items: center;
}
.trust-badges span {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #EFEFEF;
  padding: 6px 16px 6px 8px;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #184157;
  box-shadow: 0 2px 4px 0 rgba(24,65,87, 0.02);
  gap: 10px;
}

/* NAVIGATION HEADER */
header {
  background: #fff;
  border-bottom: 2px solid #ECECEC;
  position: relative;
  z-index: 1001;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 16px 0;
}
header nav img {
  height: 36px;
  margin-right: 32px;
  border-radius: 4px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 9px;
  transition: background 0.16s, color 0.22s;
}
header nav a.cta.primary {
  background: #184157;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(24,65,87, 0.09);
  border: none;
}
header nav a.cta.primary:hover,
header nav a.cta.primary:focus {
  background: #E8A317;
  color: #184157;
}
header nav a:hover, header nav a:focus {
  color: #E8A317;
  background: #f5f5f5;
}

/* HAMBURGER MENU (mobile) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 18px;
  width: 42px;
  height: 42px;
  background: #EFEFEF;
  border: none;
  border-radius: 9px;
  font-size: 2.1rem;
  color: #184157;
  cursor: pointer;
  z-index: 1202;
  transition: background 0.25s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E8A317;
  color: #184157;
  outline: 2px solid #E8A317;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #184157;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.5,0,.3,1);
  box-shadow: 8px 0 34px rgba(24,65,87,0.21);
  padding-top: 0;
  padding-bottom: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.42s cubic-bezier(.6,0,.4,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  padding: 18px 22px 0 0;
  margin-bottom: 8px;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.22s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #E8A317;
  text-shadow: 0 0 3px #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 40px 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  padding: 13px 0 13px 7px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E8A317;
  color: #184157;
}

/* MAIN LAYOUT SPACING (mobile-first) */
main {
  padding-bottom: 40px;
  padding-top: 14px;
  min-height: 60vh;
}
.section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(24,65,87, 0.07), 0 1.5px 2px 0 rgba(24,65,87,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper ul, .content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}

.container > .content-wrapper > .cta, .container > .content-wrapper > .cta.primary {
  margin-top: 5px;
}

/* CTA BUTTONS */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.032em;
  font-size: 1.05rem;
  padding: 13px 32px;
  border-radius: 9px;
  background: #E8A317;
  color: #184157;
  box-shadow: 0 2px 8px 0 rgba(24,65,87,0.14);
  border: none;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.16s, color 0.18s, box-shadow 0.16s;
  position: relative;
  z-index: 1;
}
.cta.primary {
  background: #184157;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #E8A317;
  color: #184157;
  box-shadow: 0 4px 18px 0 rgba(232,163,23, 0.12);
  outline: 2px solid #E8A317;
}
.cta:hover, .cta:focus {
  background: #184157;
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(24,65,87,0.16);
  outline: 2px solid #184157;
}

/* ACCORDION STYLES (FAQ, Services) */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 8px;
}
.accordion > div {
  background: #F6F6F7;
  border-radius: 12px;
  border: 1.5px solid #EFEFEF;
  box-shadow: 0 2px 5px 0 rgba(24,65,87,0.04);
  padding: 20px 18px 16px 18px;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.accordion > div:hover, .accordion > div:focus-within {
  border-color: #E8A317;
  box-shadow: 0 6px 18px 0 rgba(24,65,87,0.12);
}
.accordion h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.accordion p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* FOOTER */
footer {
  background: #EFEFEF;
  border-top: 2px solid #d8dee2;
  font-size: 0.97rem;
  padding: 34px 0 20px 0;
  margin-top: 30px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
footer img {
  height: 38px;
  border-radius: 6px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #184157;
  opacity: 0.87;
  font-weight: 500;
  background: transparent;
  border-radius: 7px;
  padding: 4px 9px;
  transition: background 0.18s, color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: #184157;
  color: #fff;
}
footer .text-section a {
  color: #184157;
  text-decoration: underline;
}

/*------ COOKIE CONSENT BANNER -------*/
.cookie-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  background: #184157;
  color: #fff;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 18px;
  z-index: 20000;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(24,65,87, 0.21);
  padding: 24px 20px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(32px);
  transition: opacity 0.34s, transform 0.32s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-text {
  flex: 2 2 240px;
  margin-bottom: 2px;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: #E8A317;
  color: #184157;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffd56f;
  box-shadow: 0 1.5px 10px #E8A31733;
}
.cookie-btn.reject {
  background: #fff;
  color: #184157;
  border: 1.5px solid #E8A317;
}
.cookie-btn.reject:hover,.cookie-btn.reject:focus {
  background: #ECECEC;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #184157;
  color: #E8A317;
  border-color: #E8A317;
}

/* COOKIE CONSENT MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 20200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,65,87,0.36);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #fff;
  color: #184157;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 40px 0 rgba(24,65,87,0.22);
  max-width: 420px;
  width: 100vw;
  padding: 32px 26px 22px 26px;
  position: relative;
  margin-bottom: 0;
  animation: appearModal 0.32s cubic-bezier(.72,0,.22,1);
}
@keyframes appearModal {
  0% { transform: translateY(50vh); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 1rem;
  font-size: 1.36rem;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cookie-category span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
}
.cookie-switch {
  width: 44px;
  height: 22px;
  border-radius: 22px;
  background: #EFEFEF;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
  border: 1.4px solid #184157;
  margin-left: 8px;
  flex-shrink: 0;
}
.cookie-switch.enabled {
  background: #E8A317;
  border-color: #E8A317;
}
.cookie-switch-knob {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.18s, background 0.22s;
  box-shadow: 0 1.5px 4px 0 rgba(24,65,87,0.09);
}
.cookie-switch.enabled .cookie-switch-knob {
  left: 23px;
  background: #FFF6E8;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.38rem;
  color: #184157;
  cursor: pointer;
}
.cookie-modal-close:hover{
  color: #E8A317;
}
.cookie-category label[disabled], .cookie-category .cookie-switch[disabled] {
  opacity: 0.65;
  pointer-events: none;
  filter: grayscale(0.12);
}

/*--- CARD AND LIST STYLES ---*/
.feature-item > img {
  width: 38px;
  height: 38px;
  margin-bottom: 11px;
  border-radius: 12px;
  background: #EFEFEF;
}
ul, ol {
  margin-bottom: 10px;
}
.content-wrapper ul li, .content-wrapper ol li {
  font-size: 1.05rem;
  color: #184157;
  background: none;
  padding-left: 0;
  margin-left: 0;
  border: none;
}
ol > li {
  font-weight: 500;
  margin-bottom: 7px;
}
ul > li {
  margin-bottom: 4px;
}

/*--- RESPONSIVE DESIGN ---*/
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section { padding: 32px 10px; }
}
@media (max-width: 950px) {
  .content-wrapper {
    gap: 18px;
  }
  .trust-badges { gap: 14px; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section, .trust-badges, .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .section {
    padding: 28px 6vw;
    margin-bottom: 39px;
  }
  main {
    padding: 0 0 24px 0;
  }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.33rem; }
  .card {
    min-width: 0;
    padding: 17px 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 12px 18px 12px;
    left: 4px; right: 4px; bottom: 6px;
    font-size: 0.98rem;
  }
  footer .container {
    gap: 12px;
    font-size: 0.94rem;
  }
  .cookie-modal {
    max-width: 99vw;
    padding: 22px 8vw 18px 8vw;
  }
}
@media (max-width: 500px) {
  .section { padding: 16px 3vw; border-radius: 8px; }
  h1 { font-size: 1.23rem; }
  h2, h3 { font-size: 1.08rem; }
  .testimonial-card blockquote { font-size: 0.98rem; }
  .cta, .cta.primary { padding: 10px 14px; font-size: 0.97rem; }
  .cookie-modal { padding: 13px 2vw 8px 2vw; }
}

/* MICRO-INTERACTIONS */
.testimonial-card {
  transition: box-shadow 0.18s, border-color 0.17s;
}
.testimonial-card:hover { box-shadow: 0 4px 22px #E8A31755; border-left: 6px solid #E8A317; }

.card:after {
  content: '';
  display: block;
  position: absolute;
  right: 14px;
  top: 18px;
  width: 42px;
  height: 21px;
  background: rgba(232,163,23,0.04);
  border-radius: 8px 30px 20px 5px / 10px 30px 10px 35px;
  z-index: 0;
  pointer-events: none;
}
.card:hover:after { background: rgba(232,163,23,0.12); }

/* VISUAL GEOMETRIC DETAILS */
.section {
  position: relative;
  overflow: hidden;
}
.section:before {
  content: '';
  position: absolute;
  right: -40px;
  top: -50px;
  width: 140px;
  height: 130px;
  background: rgba(24,65,87,0.07);
  border-radius: 26px 18px 44px 110px / 70px 60px 100px 110px;
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -70px;
  width: 110px;
  height: 77px;
  background: rgba(232,163,23,0.09);
  border-radius: 60px 18px 88px 35px / 50px 50px 80px 110px;
  z-index: 0;
  pointer-events: none;
}
.content-wrapper, .section > * { position: relative; z-index: 1; }

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 12px;
  background: #EFEFEF;
}
::-webkit-scrollbar-thumb {
  background: #CCE1F5;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #E8A31766;
}

/* ACCESSIBILITY: FOCUS STYLES */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px solid #E8A317;
  outline-offset: 2px;
  background: #E8A31722;
  color: #184157;
}

/* NO OVERLAPPING FOR CARD/LISTS */
.card, .testimonial-card, .accordion > div, .feature-item, .content-wrapper > ul > li, .content-wrapper > ol > li {
  margin-bottom: 20px !important;
}
.card:last-child, .testimonial-card:last-child, .accordion > div:last-child, .feature-item:last-child,
.content-wrapper > ul > li:last-child, .content-wrapper > ol > li:last-child {
  margin-bottom: 0 !important;
}

/* ENSURE ADEQUATE GAPS */
.content-wrapper > * + * {
  margin-top: 0 !important;
}
