/* =========================
   MAIN / GLOBAL
   - shared base styles
   - navbar
   - landing
   - trust
   - map + footer
   - right section dots
========================= */
@font-face{
  font-family: "Montserrat";
  src: url("fonts/Montserrat-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face{
  font-family: "Montserrat";
  src: url("fonts/Montserrat-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face{
  font-family: "Montserrat";
  src: url("fonts/Montserrat-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face{
  font-family: "Montserrat";
  src: url("fonts/Montserrat-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face{
  font-family: "Montserrat";
  src: url("fonts/Montserrat-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root{
  --bg: #e6efee;
  --surface: #ffffff;
  --surface-soft: #f5f8f7;
  --green: #009e8b;
  --green-dark: #0a5c54;
  --green-deep: #083d38;
  --ink: #182120;
  --ink-soft: #44504d;
  --header-bg: rgba(13, 20, 19, 0.82);
  --line: rgba(10, 92, 84, 0.12);
  --shadow-lg: 0 22px 60px rgba(8, 28, 26, 0.16);
  --shadow-md: 0 12px 32px rgba(8, 28, 26, 0.1);
  --radius-md: 4px;
  --radius-sm: 4px;
  --container: 1300px;
  --header-h: 82px;
  --footerSlopeH: 90px;
  --section-space: 4.8rem;
}

html{
  scroll-behavior: smooth;
}

html, body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body{
  font-family: "Montserrat", "Aptos", "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  font-size: 100%;
}

body.nav-open{
  overflow: hidden;
}

body.consent-lock{
  overflow: hidden;
}

body:not(.fontawesome-ready) i.fa-solid{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  font-style: normal;
}

body:not(.fontawesome-ready) i.fa-solid::before{
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
}

body:not(.fontawesome-ready) .fa-circle-check,
body:not(.fontawesome-ready) .fa-arrow-right,
body:not(.fontawesome-ready) .fa-arrow-right-long,
body:not(.fontawesome-ready) .fa-chevron-left,
body:not(.fontawesome-ready) .fa-chevron-right{
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body:not(.fontawesome-ready) .fa-circle-check::before,
body:not(.fontawesome-ready) .fa-arrow-right::before,
body:not(.fontawesome-ready) .fa-arrow-right-long::before,
body:not(.fontawesome-ready) .fa-play::before,
body:not(.fontawesome-ready) .fa-pause::before,
body:not(.fontawesome-ready) .fa-chevron-left::before,
body:not(.fontawesome-ready) .fa-chevron-right::before{
  content: "";
}

body:not(.fontawesome-ready) .fa-phone::before{
  content: "☎";
  font-size: 0.88em;
}

body:not(.fontawesome-ready) .fa-circle-check{
  width: 1.05em;
  min-width: 1.05em;
  height: 1.05em;
  background-image: url("Checkmark.svg");
}

body:not(.fontawesome-ready) .fa-arrow-right,
body:not(.fontawesome-ready) .fa-arrow-right-long,
body:not(.fontawesome-ready) .fa-chevron-left,
body:not(.fontawesome-ready) .fa-chevron-right{
  width: 0.92em;
  min-width: 0.92em;
  height: 1.05em;
  background-image: url("Arrow.svg");
}

body:not(.fontawesome-ready) .fa-play,
body:not(.fontawesome-ready) .fa-pause{
  width: 1.1em;
  min-width: 1.1em;
  height: 1.1em;
  background-image: none;
  line-height: 1;
}

body:not(.fontawesome-ready) .fa-chevron-left{
  transform: scaleX(-1);
}

body:not(.fontawesome-ready) .fa-play::before{
  content: "▶";
  font-size: 1.02em;
  transform: translateX(0.03em);
}

body:not(.fontawesome-ready) .fa-pause::before{
  content: "❚❚";
  letter-spacing: 0.08em;
  font-size: 0.98em;
  transform: translateX(0.03em);
}

body:not(.fontawesome-ready) .fa-arrow-right-long{
  width: 1.05em;
  min-width: 1.05em;
}

body:not(.fontawesome-ready) .fa-envelope::before{
  content: "✉";
}

main{
  width: 100%;
  margin: 0 auto;
}

section{
  padding: 0;
  text-align: center;
}

section h2{
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
}

.section-inner{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before{
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}

.twoThird{
  min-height: auto;
  display: block;
}

.twoThird .section-inner{
  padding: var(--section-space) 0;
}

#top{
  position: absolute;
  top: 0;
  left: 0;
}

/* =========================
   NAVBAR
========================= */
header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  --nav-solid: 1;
  --nav-hero-expand: 0;
  background: #0a0f0f;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  transition: transform .28s ease, background-color .25s ease, box-shadow .25s ease;
}

header.nav--top{
  background: rgba(10, 15, 15, calc(var(--nav-solid) * 0.74));
  box-shadow: 0 8px 24px rgba(0,0,0, calc(var(--nav-solid) * 0.12));
}

header.nav--hidden{
  transform: translateY(-110%);
}

header .nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 14px 0 8px;
  display: grid;
  grid-template-columns:
    minmax(calc(220px + var(--nav-hero-expand) * 110px), calc(320px + var(--nav-hero-expand) * 120px))
    minmax(0, 1fr)
    auto;
  align-items: center;
  gap: 18px;
}

header .logo{
  display: flex;
  align-items: center;
}

header .logo img{
  height: 48px;
  display: block;
  transform:
    translate(
      calc(var(--nav-hero-expand) * 16px),
      calc(var(--nav-hero-expand) * 11px)
    )
    scale(calc(1 + var(--nav-hero-expand) * 0.5));
  transform-origin: left center;
  transition: transform .12s linear;
}

.site-nav{
  justify-self: end;
  margin-left: auto;
  transform:
    translateY(calc(var(--nav-hero-expand) * 11px))
    scale(calc(1 + var(--nav-hero-expand) * 0.08));
  transform-origin: right center;
  transition: transform .12s linear;
}

.site-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a{
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  line-height: 1;
  transition: color .2s ease;
}

.site-nav a::after{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible{
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after{
  transform: scaleX(1);
}

.nav-cta{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  padding: 12px 18px 11px;
  border-radius: 999px;
  border: 1.5px solid #009E8B;
  background: #009E8B;
  line-height: 1;
  margin-left: calc(var(--nav-hero-expand) * 10px);
  transform:
    translateY(calc(var(--nav-hero-expand) * 11px))
    scale(calc(1 + var(--nav-hero-expand) * 0.08));
  transform-origin: right center;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible{
  transform:
    translateY(calc(var(--nav-hero-expand) * 11px - 1px))
    scale(calc(1 + var(--nav-hero-expand) * 0.08));
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.nav-cta i{
  font-size: 0.9rem;
}

.nav-toggle{
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  padding: 0;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================
   LANDING
========================= */
.landing{
  position: relative;
  min-height: 112vh;
  display: flex;
  align-items: center;
  background-blend-mode: color;
  background-image: linear-gradient(to bottom, rgb(6 35 35 / 72%), rgb(0 79 79)), url(VIA_FH3D_opt.jpg);
  background-size: 118%;
  background-position: center 0px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.landing::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(4 10 10 / 52%), rgb(7 19 19 / 78%) 100%);
  pointer-events: none;
}

.landing::before{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: none;
  pointer-events: none;
}

.landing-content{
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 72px) 0 260px;
  display: grid;
  grid-template-columns: minmax(0, 840px);
  justify-content: start;
  padding-left: 3.4rem;
}

.landing .left{
  text-align: left;
}

.landing .left > *{
  opacity: 0;
  transform: translateY(18px);
  animation: landingFadeUp .68s ease forwards;
}

.landing h1{
  animation-delay: 0.08s;
}

.landing p{
  animation-delay: 0.16s;
}

.landing .icon-table{
  animation-delay: 0.24s;
}

.landing .cta-button{
  animation-delay: 0.34s;
}

.landing .landing-stats{
  animation-delay: 0.46s;
}

.landing h1{
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.25rem);
  line-height: 1.05;
  max-width: none;
}

.landing p{
  margin: 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.65vw, 1.12rem);
  color: rgba(255,255,255,0.92);
}

.landing p strong{
  color: #fff;
  font-weight: 800;
}

.icon-table{
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 220px));
  gap: 14px 24px;
  margin-top: 30px;
}

.icon-cell{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

.icon-cell i{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  flex: 0 0 1.15em;
  color: #fff;
  font-size: 1.2rem;
}

.cta-button{
  margin-top: 34px;
  border: 0;
  border-radius: 999px;
  box-sizing: border-box;
  background: var(--green);
  color: #fff;
  padding: 15px 28px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 14px 32px rgba(0, 158, 139, 0.22);
}

.cta-button i,
.nav-cta i{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05em;
  flex: 0 0 1.05em;
}

.cta-button:hover{
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 158, 139, 0.2);
}

.landing-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  max-width: 980px;
}

.landing-stat{
  padding: 0;
  text-align: left;
}

.landing-stat strong{
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

.landing-stat span{
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

@keyframes landingFadeUp{
  from{
    opacity: 0;
    transform: translateY(18px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .landing .left > *{
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* =========================
   TRUST
========================= */
.trust-section{
  position: relative;
  margin-top: 0;
  scroll-margin-top: calc(var(--header-h) + 20px);
  z-index: 5;
  padding: var(--section-space) 0;
  background: var(--surface-soft);
}

.trust-panel{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 38px;
  align-items: start;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.trust-main{
  min-width: 0;
}

.trust-main--left{
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 28px;
}

.trust-main--right{
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.trust-header{
  text-align: left;
}

.trust-header .eyebrow{
  margin-bottom: 10px;
}

.trust-header h2{
  text-align: left;
  margin-bottom: 0;
  max-width: 18ch;
}

.trust-copy{
  text-align: left;
}

.trust-copy p{
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.trust-copy p strong,
.service-text p strong,
.sysIntro p strong,
#contact .contact-left p strong,
#contact .contact-card-text p strong{
  color: var(--green-dark);
  font-weight: 800;
}

.hero-band__text p strong{
  color: #fff;
  font-weight: 800;
}

.trust-facts{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  align-items: stretch;
}

.trust-fact{
  padding: 18px 16px;
  background: #dcebea;
  border-radius: 8px;
  text-align: left;
  min-height: 112px;
}

.trust-fact strong{
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1rem;
}

.trust-fact span{
  display: block;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.trust-gallery{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px 196px;
  gap: 14px;
  width: 100%;
  max-width: none;
  margin-top: 48px;
  min-height: 536px;
}

.trust-media{
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #dbe7e6;
  height: 100%;
}

.trust-media--large{
  grid-column: 1 / -1;
  grid-row: 1;
}

.trust-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

/* =========================
   REFERENCES
========================= */
.references-track-wrap{
  width: calc(100% + 24px);
  margin-left: -12px;
  overflow: hidden;
}

#about .references-track-wrap{
  padding-top: 0.2rem;
}

.references-viewport{
  overflow: hidden;
}

.references-track{
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 12px 10px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.42s ease;
  will-change: transform;
}

.reference-item{
  width: 300px;
  flex: 0 0 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 28, 26, 0.06);
}

.reference-item img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.reference-caption{
  padding: 14px 14px 16px;
  text-align: left;
}

.references-controls{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.reference-controls{
  display: none;
}

#aboutRefsToggle i{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  min-width: 1.1em;
  height: 1.1em;
  font-size: 1.08rem;
  line-height: 1;
}

.reference-caption strong{
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 0.96rem;
}

.reference-caption span{
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}


/* =========================
   3D VIEWER
========================= */
.product-viewer{
  overflow: hidden;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 1;
}

.product-viewer--js-press-active{
  cursor: grabbing;
}

.pv-loader{
  background: url('loader.gif') no-repeat center center white;
  opacity: 0;
  transition: opacity .4s ease-out;
  pointer-events: none;
}

.pv-loader--js-visible{
  opacity: 1;
}

.product-viewer__image{
  max-width: 50%;
  height: auto;
}

/* =========================
   MAP
========================= */
#map-strip{
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 620px;
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 -18px 28px -24px rgba(8, 28, 26, 0.28),
    0 18px 28px -24px rgba(8, 28, 26, 0.28);
}

#map{
  width: 100%;
  height: 100%;
}

.leaflet-container{
  filter: saturate(0.9) contrast(1.05);
}

.leaflet-container img{
  max-width: none !important;
}

.leaflet-bottom.leaflet-right{
  top: 10px;
  bottom: auto;
}

.leaflet-control-attribution{
  margin: 0 !important;
  background: rgba(255,255,255,0.78) !important;
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.footer-slope{
  position: relative;
  height: 0;
  margin-top: 48px;
  background: transparent;
  clip-path: none;
  z-index: 3;
}

/* =========================
   FOOTER
========================= */
footer{
  position: relative;
  margin-top: -1px;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 0 0 0.7rem;
}

#footer-columns{
  padding: 1.55rem 0;
  text-align: left;
}

.footer-container{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.footer-column{
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

footer p{
  margin: 0;
}

.footer-logo{
  width: 220px;
  height: auto;
  margin-top: 1.35rem;
  margin-bottom: 0.2rem;
}

.company-name{
  font-size: 1rem;
  font-style: italic;
}

.footer-heading{
  font-size: 1.05rem;
  margin: 1.45rem 0 0.8rem;
  color: #fff;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
}

.footer-links li{
  margin-bottom: 0.5rem;
}

.footer-links a{
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-button{
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.footer-links a:hover{
  color: #c7efe8;
}

.footer-link-button:hover{
  color: #c7efe8;
}

.legal-mini-footer{
  background: var(--green-dark);
  color: #fff;
  padding: 20px 24px 28px;
}

.legal-mini-footer__inner{
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-mini-footer__links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-mini-footer__links a{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.legal-mini-footer__links a:hover{
  color: #c7efe8;
}

/* =========================
   CONSENT MODAL
========================= */
.consent-modal{
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 14, 14, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.consent-modal.is-visible{
  opacity: 1;
  pointer-events: auto;
}

.consent-modal__panel{
  width: min(720px, calc(100vw - 32px));
  padding: 28px 28px 24px;
  border: 1px solid rgba(10, 92, 84, 0.18);
  background: rgba(247, 250, 249, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  border-radius: 8px;
  color: var(--ink);
}

.consent-modal__kicker{
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent-modal h2{
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-align: left;
}

.consent-modal p{
  margin: 0;
  color: rgba(24, 33, 32, 0.82);
  font-size: 1rem;
  text-align: left;
}

.consent-modal__actions{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.consent-btn{
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.consent-btn--primary{
  background: var(--green);
  color: #fff;
}

.consent-btn--secondary{
  background: #d6dddc;
  color: #16201f;
}

.consent-btn--ghost{
  background: #eef3f2;
  color: #16201f;
}

.consent-settings{
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 92, 84, 0.12);
}

.consent-settings.is-open{
  display: block;
}

.consent-option{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 92, 84, 0.08);
}

.consent-option:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.consent-option input{
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.consent-option strong{
  display: block;
  margin-bottom: 4px;
  color: #111;
}

.consent-option span{
  display: block;
  color: rgba(24, 33, 32, 0.78);
  font-size: 0.95rem;
}

.consent-modal__link{
  color: var(--green-dark);
  font-weight: 700;
}

.map-placeholder{
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(8, 61, 56, 0.18), rgba(8, 61, 56, 0.08)),
    linear-gradient(135deg, #dce7e5, #eef4f3);
  color: #13201f;
  text-align: center;
}

.map-placeholder__inner{
  max-width: 560px;
}

.map-placeholder h3{
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.map-placeholder p{
  margin: 0;
  color: rgba(19, 32, 31, 0.82);
}

/* =========================
   RIGHT SECTION DOTS
========================= */
.section-dots{
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px 0;
  width: 18px;
  min-height: 132px;
  border-radius: 999px;
  background: rgba(230, 239, 238, 0.9);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.section-dots.is-visible{
  opacity: 1;
  pointer-events: auto;
}

.dot-item{
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0d1413;
  opacity: 0.9;
  transition: transform .22s ease, background .22s ease, opacity .22s ease;
}

.dot-item.is-active .dot{
  background: var(--green);
  transform: scale(2.05);
  opacity: 1;
}

.dot-label{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  opacity: 0;
  pointer-events: none;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(230, 239, 238, 0.95);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
  backdrop-filter: blur(6px);
  color: #0d1413;
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: opacity .18s ease, transform .18s ease;
}

.dot-item:hover .dot-label{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
  header .nav-inner{
    padding: 0 8px;
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr) auto;
    gap: 12px;
  }

  .landing-content{
    grid-template-columns: minmax(0, 760px);
    padding-left: 2.4rem;
    padding-bottom: 220px;
  }

  .landing p{
    max-width: 700px;
  }

  .landing-stats{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .site-nav a{
    padding-inline: 8px;
    font-size: 0.88rem;
  }

  .trust-panel{
    grid-template-columns: 1fr;
  }

  .trust-facts{
    grid-template-columns: 1fr;
  }

  .trust-main--left{
    gap: 22px;
  }

  .trust-main--right{
    display: block;
  }
}

@media (max-width: 900px){
  header{
    --nav-solid: 1;
    --nav-hero-expand: 0;
  }

  header.nav--top{
    background: #0a0f0f;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  header .nav-inner{
    grid-template-columns: auto auto;
    padding: 0 16px;
  }

  .nav-toggle{
    display: inline-block;
  }

  .nav-cta{
    display: none;
  }

  .site-nav{
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    justify-self: stretch;
    padding: 14px;
    background: rgba(13, 20, 19, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.is-open{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul{
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav a{
    justify-content: space-between;
    padding: 14px 12px;
  }

  .landing{
    min-height: auto;
    background-attachment: scroll;
    background-size: cover;
  }

  .landing-content{
    width: min(var(--container), calc(100% - 32px));
    padding: calc(var(--header-h) + 54px) 0 170px;
    padding-left: 1.4rem;
  }

  .landing-stats{
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .landing h1{
    max-width: none;
  }

  .icon-table{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-section{
    margin-top: 0;
    padding-top: 4rem;
  }

  .trust-panel{
    gap: 24px;
  }

  .trust-header h2{
    max-width: none;
  }

  .trust-gallery{
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding-top: 0;
    max-width: none;
    justify-self: stretch;
  }

  .reference-item{
    width: 260px;
    flex-basis: 260px;
  }

  .trust-gallery img:first-child{
    grid-column: auto;
    grid-row: auto;
  }

  .section-dots{
    display: none;
  }

  .legal-mini-footer__inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px){
  :root{
    --header-h: 74px;
    --section-space: 4rem;
  }

  .section-inner{
    width: min(var(--container), calc(100% - 24px));
  }

  header .nav-inner{
    min-height: var(--header-h);
    padding: 0 18px 0 14px;
  }

  header .logo img{
    height: 34px;
  }

  .landing-content{
    width: calc(100% - 24px);
    padding: calc(var(--header-h) + 46px) 0 130px;
    padding-left: 0;
  }

  .landing p{
    font-size: 1rem;
  }

  .landing-stat{
    padding: 16px 16px 14px;
  }

  .landing-stat strong{
    font-size: 1.22rem;
  }

  .cta-button{
    width: 100%;
    justify-content: center;
    margin-inline: 0;
    display: inline-flex;
  }

  .reference-item{
    width: 220px;
    flex-basis: 220px;
  }

  .reference-item img{
    height: auto;
  }

  .trust-panel{
    padding: 0;
  }

  .trust-copy p{
    margin-bottom: 18px;
  }

  .trust-facts{
    margin-top: 18px;
    gap: 12px;
  }

  .trust-fact{
    min-height: auto;
    padding: 16px 16px 14px;
  }

  .trust-fact strong{
    margin-bottom: 4px;
  }

  #map-strip{
    height: 460px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .footer-container{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column{
    max-width: none;
  }

  .footer-logo{
    width: 180px;
  }

  .consent-modal{
    padding: 12px;
  }

  .consent-modal__panel{
    width: calc(100vw - 24px);
    padding: 22px 18px 18px;
  }

  .consent-modal__actions{
    flex-direction: column;
  }

  .consent-btn{
    width: 100%;
  }
}
