:root {
  --green-dark: #293731;
  --green-mid: #4a7c59;
  --green-light: #6baf7a;
  --beige: #f5f1eb;
  --white: #ffffff;
  --black: #1a1a1a;
  --line: rgba(41, 55, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--beige);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(245, 241, 235, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: clamp(170px, 18vw, 245px);
  height: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green-mid);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switch button {
  min-width: 35px;
  height: 34px;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.language-switch .is-active {
  color: var(--white);
  background: var(--green-dark);
}

.language-switch .is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: var(--green-mid);
  border: 1px solid var(--green-mid);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 13px;
}

.button-light {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.84);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(245, 241, 235, 0.98) 0%, rgba(245, 241, 235, 0.82) 38%, rgba(245, 241, 235, 0.18) 74%),
    linear-gradient(0deg, rgba(41, 55, 49, 0.16), rgba(41, 55, 49, 0.04));
}

.hero-content {
  position: relative;
  width: min(650px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-mid);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  color: var(--green-dark);
  font-size: 20px;
}

.hero-text {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.proof-points,
.category-tags,
.market-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-bottom: 30px;
}

.proof-points span,
.category-tags span,
.market-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(41, 55, 49, 0.12);
  border-radius: 8px;
  font-weight: 800;
}

.b2b-band {
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--green-dark);
  text-align: center;
}

.section {
  padding: clamp(60px, 8vw, 106px) clamp(28px, 6vw, 96px);
}

.intro-grid,
.categories,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.35fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.section-copy p,
.section-heading p,
.cards-grid p,
.offer-grid p,
.contact-copy p {
  color: rgba(26, 26, 26, 0.74);
}

.cards-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cards-grid article,
.offer-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(41, 55, 49, 0.07);
}

.cards-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--green-dark);
  background: rgba(107, 175, 122, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.offer,
.markets {
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid article {
  min-height: 185px;
  background: var(--beige);
}

.category-tags span {
  background: var(--white);
}

.market-grid {
  justify-content: center;
  max-width: 980px;
  margin: 24px auto 0;
}

.market-grid span {
  min-width: 150px;
  justify-content: center;
  background: var(--beige);
  gap: 8px;
}

.mapdata-card {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(41, 55, 49, 0.08);
}

.map-brand {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.map-brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.varredo-map {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(520px, 62vw, 720px);
  background: var(--beige);
  overflow: hidden;
}

.varredo-map .leaflet-pane,
.varredo-map .leaflet-map-pane,
.varredo-map .leaflet-tile-pane,
.varredo-map .leaflet-overlay-pane,
.varredo-map .leaflet-shadow-pane,
.varredo-map .leaflet-marker-pane,
.varredo-map .leaflet-tooltip-pane,
.varredo-map .leaflet-popup-pane {
  position: absolute;
  top: 0;
  left: 0;
}

.leaflet-container {
  position: relative;
  overflow: hidden;
  background: var(--beige);
  outline: 0;
  touch-action: pan-x pan-y;
}

.leaflet-container img,
.leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-tile {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px !important;
  height: 256px !important;
  user-select: none;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  position: absolute;
  display: block;
}

.leaflet-zoom-animated {
  transform-origin: 0 0;
}

.leaflet-zoom-hide {
  visibility: hidden;
}

.leaflet-tile-container,
.leaflet-marker-pane,
.leaflet-shadow-pane,
.leaflet-overlay-pane,
.leaflet-tooltip-pane,
.leaflet-popup-pane {
  position: absolute;
  top: 0;
  left: 0;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 900;
  pointer-events: none;
}

.leaflet-top {
  top: 10px;
}

.leaflet-bottom {
  bottom: 10px;
}

.leaflet-left {
  left: 10px;
}

.leaflet-right {
  right: 10px;
}

.leaflet-top .leaflet-control {
  margin-top: 0;
}

.leaflet-left .leaflet-control {
  margin-left: 0;
}

.leaflet-right .leaflet-control {
  margin-right: 0;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 0;
}

.leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(41, 55, 49, 0.18);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(41, 55, 49, 0.12);
}

.leaflet-control-zoom a {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--green-dark);
  background: var(--white);
  border-bottom: 1px solid rgba(41, 55, 49, 0.12);
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  line-height: 32px;
}

.leaflet-control-zoom a:last-child {
  border-bottom: 0;
}

.leaflet-control-zoom a:hover {
  background: var(--beige);
}

.leaflet-control-attribution {
  padding: 4px 7px;
  color: rgba(41, 55, 49, 0.74);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 6px;
  font-size: 11px;
}

.leaflet-control-attribution a {
  color: var(--green-dark);
}

.leaflet-container {
  font: inherit;
}

.leaflet-control-attribution {
  font-size: 11px;
}

.varredo-marker-shell {
  background: transparent;
  border: 0;
}

.varredo-marker-shell {
  display: grid;
  place-items: center;
}

.varredo-marker {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.market-dot {
  width: 14px;
  height: 14px;
  background: var(--green-mid);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.16);
}

.varredo-marker-shell:hover .market-dot,
.varredo-marker-shell:focus-visible .market-dot {
  background: var(--green-dark);
  box-shadow: 0 0 0 6px rgba(74, 124, 89, 0.24);
}

.varredo-marker-shell:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 2px;
  border-radius: 50%;
}

.varredo-marker.origin {
  width: 34px;
  height: 34px;
  background: var(--white);
  border: 2px solid var(--green-dark);
  box-shadow: 0 3px 10px rgba(41, 55, 49, 0.18);
}

.varredo-marker.origin img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.leaflet-tooltip {
  color: var(--green-dark);
  border: 1px solid rgba(41, 55, 49, 0.14);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(41, 55, 49, 0.14);
  font-weight: 800;
}

.contact {
  color: var(--white);
  background: var(--green-dark);
  padding-inline: clamp(28px, 6vw, 96px);
}

.contact h2,
.contact .eyebrow {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-copy a {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  text-decoration-color: var(--green-light);
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: clamp(20px, 3vw, 34px);
  color: var(--green-dark);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(26, 26, 26, 0.16);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--black);
  background: var(--beige);
  border: 1px solid rgba(41, 55, 49, 0.2);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-check-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.privacy {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: rgba(26, 26, 26, 0.72);
  font-size: 13px;
  font-weight: 400;
}

.privacy input {
  min-height: auto;
  margin-top: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 50px clamp(34px, 7vw, 112px);
  background: #1f2c27;
}

.site-footer img {
  width: 180px;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-copy {
  display: grid;
  gap: 8px;
  max-width: 920px;
  text-align: right;
}

.company-details {
  font-size: 12px;
  line-height: 1.5;
}

.footer-links a,
.legal-content a {
  color: inherit;
  text-underline-offset: 4px;
}

.legal-page {
  padding: clamp(54px, 8vw, 92px) clamp(28px, 6vw, 96px);
  background: var(--beige);
}

.legal-hero {
  max-width: 880px;
  margin: 0 auto 28px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: clamp(40px, 6vw, 68px);
}

.legal-hero p {
  color: rgba(26, 26, 26, 0.74);
  font-size: 18px;
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(41, 55, 49, 0.07);
}

.legal-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: rgba(26, 26, 26, 0.76);
}

.legal-updated {
  margin-top: 32px;
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 50;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100vw - 32px));
  padding: 18px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(41, 55, 49, 0.18);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner strong,
.cookie-banner p {
  margin: 0;
}

.cookie-banner p {
  margin-top: 4px;
  color: rgba(26, 26, 26, 0.76);
  font-size: 14px;
}

.cookie-banner a {
  color: var(--green-mid);
  font-weight: 800;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .intro-grid,
  .categories,
  .contact {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .varredo-map {
    height: 600px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 176px;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(245, 241, 235, 0.96) 0%, rgba(245, 241, 235, 0.86) 52%, rgba(245, 241, 235, 0.45) 100%),
      linear-gradient(0deg, rgba(41, 55, 49, 0.16), rgba(41, 55, 49, 0.04));
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid article,
  .offer-grid article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
    gap: 18px;
    padding-block: 42px;
  }

  .footer-copy {
    text-align: left;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner .button {
    width: 100%;
  }

  .mapdata-card {
    padding: 18px;
  }

  .map-brand {
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 32px);
    white-space: nowrap;
  }

  .varredo-map {
    height: 520px;
  }
}
