:root {
  --primary: #5aae20;
  --primary-dark: #438c13;
  --dark-green: #123d18;
  --text: #102214;
  --muted: #5f6b61;
  --background: #f7f9f5;
  --white: #ffffff;
  --container: 1240px;
  --radius: 10px;
  --shadow: 0 14px 34px rgba(12, 48, 18, 0.13);
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(18, 61, 24, 0.09);
  backdrop-filter: blur(12px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; box-shadow: 0 5px 16px rgba(46, 107, 17, .17); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { color: var(--primary-dark); font-size: 19px; letter-spacing: -.45px; }
.brand-copy span { margin-top: 4px; color: #444e45; font-size: 10px; font-weight: 600; white-space: nowrap; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 27px; margin-left: auto; }
.nav-link { position: relative; padding-block: 30px 28px; font-size: 13px; font-weight: 700; transition: color .2s ease; white-space: nowrap; }
.nav-link::after { position: absolute; right: 50%; bottom: 20px; left: 50%; height: 2px; content: ""; background: var(--primary); transition: inset .25s ease; }
.nav-link:hover, .nav-link.active { color: var(--primary-dark); }
.nav-link:hover::after, .nav-link.active::after { right: 15%; left: 15%; }
.header-phone { display: inline-flex; min-height: 48px; align-items: center; gap: 9px; padding: 0 18px; color: var(--white); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 8px; box-shadow: 0 8px 20px rgba(71, 145, 20, .22); font-size: 13px; font-weight: 800; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease; }
.header-phone svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.header-phone:hover { transform: translateY(-2px); box-shadow: 0 11px 25px rgba(71, 145, 20, .3); }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 12px; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--dark-green); border-radius: 2px; transition: transform .25s, opacity .2s; }

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--white);
  background: url("../assets/images/slider.webp") center 53% / cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4, 22, 8, .88) 0%, rgba(5, 25, 9, .72) 35%, rgba(5, 22, 8, .18) 67%, rgba(5, 22, 8, .03) 100%); }
.hero::before { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(0deg, rgba(4, 22, 8, .18), transparent 38%); }
.hero-inner { display: flex; align-items: center; min-height: inherit; padding-block: 58px 70px; }
.hero-content { max-width: 650px; animation: hero-in .75s cubic-bezier(.2,.7,.2,1) both; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 19px; color: rgba(255,255,255,.88); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-eyebrow span { width: 28px; height: 2px; background: var(--primary); }
.hero h1 { margin: 0; font-size: clamp(54px, 5vw, 67px); font-weight: 800; letter-spacing: -2.8px; line-height: 1.08; text-wrap: balance; text-shadow: 0 3px 22px rgba(0,0,0,.17); }
.hero h1 span { color: #79c936; }
.hero-description { max-width: 590px; margin: 25px 0 0; color: rgba(255,255,255,.92); font-size: 18px; font-weight: 500; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 12px; padding: 0 23px; border: 1px solid transparent; border-radius: var(--radius); font-size: 14px; font-weight: 800; transition: transform .22s ease, background .22s ease, box-shadow .22s ease; }
.button svg { width: 18px; height: 18px; }
.button-primary { color: var(--white); background: linear-gradient(135deg, #67bb26, #469711); box-shadow: 0 12px 25px rgba(47, 108, 12, .35); }
.button-primary svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-secondary { color: var(--primary-dark); background: var(--white); box-shadow: 0 12px 25px rgba(0, 0, 0, .16); }
.button-secondary svg { fill: currentColor; }
.button:hover { transform: translateY(-3px); }
.button-primary:hover { box-shadow: 0 16px 32px rgba(47, 108, 12, .44); }
.button-secondary:hover { background: #f4faef; box-shadow: 0 16px 31px rgba(0, 0, 0, .2); }
.hero-scroll { position: absolute; bottom: 18px; left: 50%; width: 25px; height: 40px; border: 2px solid rgba(255,255,255,.55); border-radius: 16px; transform: translateX(-50%); }
.hero-scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 7px; background: var(--white); border-radius: 4px; transform: translateX(-50%); animation: scroll-cue 1.8s infinite; }
@keyframes hero-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-cue { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 13px); } }

.trust-bar { color: var(--white); background: #103819; }
.trust-grid { min-height: 108px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-item { min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 10px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 43px; height: 43px; flex: 0 0 auto; fill: none; stroke: #78c832; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.trust-item strong { font-size: 15px; line-height: 1.45; }

.services { padding: 104px 0 112px; background: linear-gradient(180deg, #fbfcfa 0%, #f6f8f4 100%); }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-eyebrow { margin: 0 0 9px; color: var(--primary-dark) !important; font-size: 13px !important; font-weight: 800 !important; letter-spacing: .1em; text-transform: uppercase; }
.section-heading h2 { margin: 0; color: var(--text); font-size: 40px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.2; }
.section-heading > p:last-child { margin: 17px auto 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card { min-height: 184px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 25px 18px 23px; background: var(--white); border: 1px solid rgba(25, 72, 31, .08); border-radius: 12px; box-shadow: 0 8px 28px rgba(18, 61, 24, .07); text-align: center; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(90, 174, 32, .24); box-shadow: 0 18px 38px rgba(18, 61, 24, .13); }
.service-icon { width: 76px; height: 76px; margin-bottom: 12px; object-fit: contain; transition: transform .25s ease, filter .25s ease; }
.service-card:hover .service-icon { transform: scale(1.04); filter: saturate(1.08) contrast(1.03); }
.service-card h3 { margin: 0; color: var(--text); font-size: 15px; font-weight: 800; line-height: 1.38; }

.about { padding: 108px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: 78px; }
.about-media { position: relative; height: 650px; }
.about-collage { width: 100%; height: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 3px; padding: 3px; overflow: hidden; background: var(--white); border-radius: 16px; box-shadow: 0 24px 55px rgba(17, 56, 22, .17); }
.about-collage > a { min-width: 0; min-height: 0; display: block; overflow: hidden; cursor: zoom-in; }
.about-collage img { width: 100%; height: 100%; min-width: 0; min-height: 0; display: block; object-fit: cover; transition: transform .4s ease; }
.about-collage > a:hover img { transform: scale(1.045); }
.about-badge { position: absolute; right: -25px; bottom: 34px; display: flex; align-items: center; gap: 12px; padding: 15px 19px 15px 14px; color: var(--white); background: var(--dark-green); border: 5px solid var(--white); border-radius: 12px; box-shadow: var(--shadow); }
.about-badge img { width: 47px; height: 47px; object-fit: contain; }
.about-badge span { font-size: 12px; line-height: 1.35; }
.about-badge strong { font-size: 14px; }
.about-content > .section-eyebrow { margin-bottom: 10px; }
.about-content > h2 { max-width: 610px; margin: 0; color: var(--text); font-size: 42px; font-weight: 800; letter-spacing: -1.7px; line-height: 1.18; }
.about-content > p { margin: 17px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.about-content > .about-lead { margin-top: 24px; color: #344538; font-size: 16px; font-weight: 600; }
.benefit-list { display: grid; gap: 12px; margin-top: 27px; }
.benefit-item { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 15px; padding: 13px 16px 13px 12px; background: #f7faf5; border: 1px solid rgba(38, 90, 28, .08); border-radius: 11px; }
.benefit-item > img { width: 56px; height: 56px; object-fit: contain; }
.benefit-item h3 { margin: 0 0 3px; color: var(--text); font-size: 14px; font-weight: 800; }
.benefit-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.about-button { margin-top: 26px; }

.process { padding: 102px 0 112px; background: #f3f7f0; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.process-grid::before { position: absolute; top: 52px; right: 12%; left: 12%; height: 2px; content: ""; background: rgba(90, 174, 32, .25); }
.process-card { position: relative; min-height: 286px; display: flex; flex-direction: column; align-items: center; padding: 52px 23px 26px; background: var(--white); border: 1px solid rgba(25, 72, 31, .08); border-radius: 13px; box-shadow: 0 9px 28px rgba(18, 61, 24, .07); text-align: center; transition: transform .25s ease, box-shadow .25s ease; }
.process-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(18, 61, 24, .12); }
.process-number { position: absolute; top: -18px; left: 50%; z-index: 1; min-width: 50px; height: 40px; display: grid; place-items: center; color: var(--white); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border: 4px solid #f3f7f0; border-radius: 20px; font-size: 14px; font-weight: 800; transform: translateX(-50%); }
.process-icon { width: 76px; height: 76px; margin-bottom: 13px; object-fit: contain; }
.process-card h3 { margin: 0; color: var(--text); font-size: 17px; font-weight: 800; }
.process-card p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.garden-care { padding: 108px 0; background: var(--white); }
.garden-care-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: 76px; }
.garden-care-content h2 { max-width: 570px; margin: 0; color: var(--text); font-size: 44px; font-weight: 800; letter-spacing: -1.8px; line-height: 1.17; }
.garden-care-content h2 span { color: var(--primary-dark); }
.garden-care-lead { max-width: 585px; margin: 23px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.garden-care-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 29px; }
.care-point { min-height: 75px; display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: #f6f9f4; border: 1px solid rgba(39, 91, 29, .08); border-radius: 10px; }
.care-point img { width: 55px; height: 55px; flex: 0 0 auto; object-fit: contain; }
.care-point span { font-size: 13px; font-weight: 800; line-height: 1.4; }
.garden-care-action { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
.garden-care-action > span { color: var(--muted); font-size: 12px; font-weight: 600; }
.garden-care-media { position: relative; height: 560px; }
.garden-care-media > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; border-radius: 16px; box-shadow: 0 24px 55px rgba(17, 56, 22, .17); }
.care-media-label { position: absolute; right: 22px; bottom: 22px; display: flex; flex-direction: column; padding: 13px 17px; color: var(--white); background: rgba(18, 61, 24, .92); border: 3px solid rgba(255,255,255,.85); border-radius: 10px; box-shadow: var(--shadow); }
.care-media-label strong { font-size: 14px; }
.care-media-label span { margin-top: 2px; font-size: 11px; }

.projects { padding: 104px 0 114px; background: #f3f7f0; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.project-card { overflow: hidden; background: var(--white); border-radius: 14px; box-shadow: 0 10px 32px rgba(18, 61, 24, .09); transition: transform .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 43px rgba(18, 61, 24, .14); }
.project-image { position: relative; height: 325px; overflow: hidden; }
.project-image::after { position: absolute; inset: 55% 0 0; content: ""; background: linear-gradient(0deg, rgba(8, 36, 13, .55), transparent); pointer-events: none; }
.project-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.project-card:hover .project-image img { transform: scale(1.035); }
.project-image > span { position: absolute; bottom: 15px; left: 15px; z-index: 1; padding: 7px 10px; color: var(--white); background: rgba(18, 61, 24, .88); border-radius: 6px; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.project-caption { padding: 21px 22px 24px; }
.project-caption h3 { margin: 0; color: var(--text); font-size: 17px; font-weight: 800; }
.project-caption p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.comparison-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.comparison-card { grid-column: auto; }
.comparison-card:last-child { grid-column: 2; }
.comparison-card { overflow: hidden; background: var(--white); border-radius: 16px; box-shadow: 0 12px 34px rgba(18,61,24,.11); }
.comparison-slider { position: relative; height: 410px; overflow: hidden; isolation: isolate; background: #dfe8dc; cursor: ew-resize; user-select: none; touch-action: pan-y; }
.comparison-image { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; pointer-events: none; }
.comparison-after-wrap { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--position)); }
.comparison-after { position: absolute; inset: 0; }
.comparison-label { position: absolute; top: 17px; z-index: 3; padding: 8px 12px; color: var(--white); background: rgba(8,38,14,.84); border: 1px solid rgba(255,255,255,.32); border-radius: 7px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.comparison-label-before { left: 17px; }
.comparison-label-after { right: 17px; }
.comparison-divider { position: absolute; top: 0; bottom: 0; left: var(--position); z-index: 3; width: 3px; background: var(--white); box-shadow: 0 0 12px rgba(0,0,0,.28); transform: translateX(-50%); pointer-events: none; }
.comparison-divider > span { position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; display: grid; place-items: center; color: var(--primary-dark); background: var(--white); border-radius: 50%; box-shadow: 0 5px 18px rgba(0,0,0,.23); transform: translate(-50%,-50%); }
.comparison-divider > span::before { content: "↔"; font-size: 22px; font-weight: 900; line-height: 1; }
.comparison-slider input[type="range"] { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }

.project-videos { padding: 104px 0 114px; background: var(--white); }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: start; }
.video-card { padding: 7px; overflow: hidden; background: #e8efe5; border-radius: 16px; box-shadow: 0 12px 34px rgba(18,61,24,.11); }
.video-card video { width: 100%; aspect-ratio: 4 / 5; display: block; object-fit: cover; background: #07180b; border-radius: 11px; }

.more-work { padding: 104px 0 112px; overflow: hidden; background: var(--white); }
.work-swiper { overflow: visible; padding: 4px 2px 60px; }
.work-slide { position: relative; height: 365px; overflow: hidden; background: #eaf1e7; border-radius: 14px; box-shadow: 0 10px 28px rgba(18,61,24,.1); cursor: zoom-in; }
.work-slide::after { position: absolute; inset: 45% 0 0; content: ""; background: linear-gradient(0deg,rgba(6,31,11,.76),transparent); pointer-events: none; }
.work-slide img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.work-slide:hover img { transform: scale(1.055); }
.work-slide > span { position: absolute; right: 18px; bottom: 17px; left: 18px; z-index: 1; color: var(--white); font-size: 16px; font-weight: 800; }
.work-gallery-controls { position: absolute; right: 0; bottom: 0; left: 0; height: 42px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.work-prev,.work-next { position: relative; width: 40px; height: 40px; padding: 0; color: var(--white); background: var(--dark-green); border: 0; border-radius: 50%; cursor: pointer; transition: background .2s,transform .2s; }
.work-prev:hover,.work-next:hover { background: var(--primary-dark); transform: translateY(-2px); }
.work-prev::before,.work-next::before { position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; content: ""; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.work-prev::before { transform: translate(-35%,-50%) rotate(-135deg); }
.work-next::before { transform: translate(-65%,-50%) rotate(45deg); }
.work-swiper .swiper-pagination { position: static; width: auto; }
.work-swiper .swiper-pagination-bullet-active { background: var(--primary-dark); }
.work-swiper .swiper-button-disabled { opacity: .35; cursor: default; }

.customer-types { padding: 103px 0 114px; background: #f3f7f0; }
.customer-types-heading { margin-bottom: 41px; }
.customer-types-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.customer-card { min-height: 335px; display: grid; grid-template-columns: 118px 1fr; align-items: start; gap: 22px; padding: 43px 40px; overflow: hidden; background: var(--white); border-radius: 15px; box-shadow: 0 12px 36px rgba(18, 61, 24, .1); }
.customer-card > img { width: 104px; height: 104px; object-fit: contain; }
.customer-label { margin: 0 0 9px !important; color: var(--primary-dark) !important; font-size: 11px !important; font-weight: 800 !important; letter-spacing: .08em; text-transform: uppercase; }
.customer-card h3 { margin: 0; color: var(--text); font-size: 25px; font-weight: 800; letter-spacing: -.8px; line-height: 1.25; }
.customer-card-copy > p:not(.customer-label) { min-height: 70px; margin: 13px 0 21px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.customer-card-dark { color: var(--white); background: linear-gradient(140deg, #164a20, #0e3216); }
.customer-card-dark .customer-label { color: #80d13c !important; }
.customer-card-dark h3 { color: var(--white); }
.customer-card-dark .customer-card-copy > p:not(.customer-label) { color: rgba(255,255,255,.76); }

.seasonal-work { padding: 104px 0 114px; background: var(--white); }
.season-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 1fr; align-items: stretch; gap: 18px; }
.season-card { position: relative; min-height: 286px; height: 100%; display: grid; grid-template-rows: 82px 29px 1fr; align-items: start; row-gap: 12px; padding: 34px 24px 26px; overflow: hidden; background: #f8faf6; border: 1px solid rgba(34, 82, 27, .09); border-top: 4px solid #69ad38; border-radius: 13px; box-shadow: 0 9px 28px rgba(18, 61, 24, .07); transition: transform .25s ease, box-shadow .25s ease; }
.season-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(18, 61, 24, .12); }

.winter-service { padding: 0 0 108px; background: var(--white); }
.winter-service-card { display: grid; grid-template-columns: 110px minmax(0, 1fr) auto; align-items: center; gap: 28px; padding: 38px 42px; color: var(--white); background: linear-gradient(135deg, #174d21, #0a3013); border-radius: 17px; box-shadow: 0 18px 42px rgba(15,59,22,.18); }
.winter-service-icon { width: 96px; height: 96px; display: grid; place-items: center; background: var(--white); border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.17); }
.winter-service-icon img { width: 76px; height: 76px; object-fit: contain; }
.winter-service-content .section-eyebrow { margin-bottom: 7px; color: #8bdd45 !important; }
.winter-service-content h2 { margin: 0; color: var(--white); font-size: 31px; letter-spacing: -1px; }
.winter-service-content > p:not(.section-eyebrow) { max-width: 720px; margin: 10px 0 0; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.65; }
.winter-service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.winter-service-tags span { padding: 6px 10px; color: #eaf8df; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 10px; font-weight: 800; }
.winter-service-button { min-width: 196px; color: var(--dark-green); background: var(--white); box-shadow: 0 10px 25px rgba(0,0,0,.18); }
.season-card::after { position: absolute; top: -45px; right: -45px; width: 130px; height: 130px; content: ""; background: rgba(90,174,32,.055); border-radius: 50%; }
.season-card > img { width: 82px; height: 82px; display: block; margin: 0; object-fit: contain; }
.season-label { position: absolute; top: 17px; right: 18px; z-index: 1; color: rgba(18,61,24,.32); font-size: 13px; font-weight: 800; }
.season-card h3 { align-self: center; margin: 0; color: var(--text); font-size: 19px; font-weight: 800; line-height: 1.3; }
.season-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.season-summer { border-top-color: #4e9c1d; background: #f7faf4; }
.season-autumn { border-top-color: #769a3d; background: #f8f9f4; }
.season-winter { border-top-color: #557c58; background: #f5f8f5; }

.service-area { padding: 106px 0 116px; color: var(--white); background: linear-gradient(135deg, #0c3014 0%, #164b20 100%); }
.service-area-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); align-items: center; gap: 76px; }
.service-area .section-eyebrow { color: #86d541 !important; }
.service-area-content h2 { max-width: 570px; margin: 0; color: var(--white); font-size: 43px; font-weight: 800; letter-spacing: -1.7px; line-height: 1.18; }
.service-area-content > p:not(.section-eyebrow) { max-width: 560px; margin: 20px 0 0; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.72; }
.location-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 27px 0 30px; }
.location-list span { padding: 8px 12px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 7px; font-size: 12px; font-weight: 700; }
.area-visual { position: relative; min-height: 480px; overflow: hidden; background: radial-gradient(circle at 52% 48%, rgba(106,183,48,.19), transparent 43%), linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; box-shadow: 0 24px 55px rgba(0,0,0,.2); }
.area-visual::before, .area-visual::after { position: absolute; content: ""; background: rgba(255,255,255,.035); border-radius: 48%; transform: rotate(-14deg); }
.area-visual::before { top: -15%; right: 12%; width: 45%; height: 130%; }
.area-visual::after { top: 22%; left: -10%; width: 65%; height: 52%; }
.area-ring { position: absolute; top: 50%; left: 50%; border: 1px dashed rgba(128,209,60,.37); border-radius: 50%; transform: translate(-50%,-50%); }
.area-ring-one { width: 240px; height: 240px; }
.area-ring-two { width: 390px; height: 390px; }
.area-road { position: absolute; height: 2px; background: rgba(255,255,255,.16); transform-origin: left center; }
.area-road-one { top: 34%; left: 8%; width: 85%; transform: rotate(18deg); }
.area-road-two { top: 72%; left: 12%; width: 78%; transform: rotate(-24deg); }
.area-pin { position: absolute; top: 50%; left: 50%; z-index: 2; width: 108px; height: 108px; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.3)); transform: translate(-50%,-58%); }
.area-place { position: absolute; z-index: 2; padding: 6px 9px; color: rgba(255,255,255,.86); background: rgba(7,30,12,.72); border: 1px solid rgba(255,255,255,.12); border-radius: 5px; font-size: 10px; font-weight: 800; }
.place-garbsen { top: 21%; left: 25%; }
.place-hannover { right: 19%; bottom: 24%; }
.place-seelze { bottom: 19%; left: 18%; }
.place-langenhagen { top: 25%; right: 14%; }
.area-radius { position: absolute; right: 18px; bottom: 17px; z-index: 2; display: flex; flex-direction: column; padding: 10px 13px; background: rgba(255,255,255,.09); border-radius: 7px; }
.area-radius strong { color: #91df4a; font-size: 12px; }
.area-radius span { margin-top: 2px; color: rgba(255,255,255,.68); font-size: 10px; }

.reviews { padding: 104px 0 114px; overflow: hidden; background: var(--white); }
.reviews-swiper { overflow: visible; padding: 8px 0 66px; }
.review-card { width: 540px; height: auto; padding: 29px 27px 27px; background: #fbfcfa; border: 1px solid rgba(30,78,28,.08); border-radius: 14px; box-shadow: 0 10px 30px rgba(18,61,24,.08); opacity: .62; transform: scale(.94); transition: transform .4s ease, opacity .4s ease, box-shadow .4s ease; }
.review-card.swiper-slide-active { z-index: 2; opacity: 1; transform: scale(1); box-shadow: 0 18px 42px rgba(18,61,24,.14); }
.review-card.swiper-slide-prev,.review-card.swiper-slide-next { opacity: .82; }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.review-top img { width: 64px; height: 64px; object-fit: contain; }
.review-stars { color: #75b62d; font-size: 17px; letter-spacing: 2px; }
.review-card blockquote { min-height: 150px; margin: 22px 0 18px; color: #344538; font-size: 14px; font-weight: 600; line-height: 1.72; }
.review-card > p { margin: 0; padding-top: 17px; color: var(--primary-dark); border-top: 1px solid rgba(30,78,28,.1); font-size: 12px; font-weight: 800; }
.reviews-controls { position: absolute; right: 0; bottom: 0; left: 0; height: 42px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.reviews-prev,.reviews-next { position: relative; width: 40px; height: 40px; padding: 0; color: var(--white); background: var(--dark-green); border: 0; border-radius: 50%; cursor: pointer; transition: background .2s, transform .2s; }
.reviews-prev:hover,.reviews-next:hover { background: var(--primary-dark); transform: translateY(-2px); }
.reviews-prev::before,.reviews-next::before { position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; content: ""; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.reviews-prev::before { transform: translate(-35%,-50%) rotate(-135deg); }
.reviews-next::before { transform: translate(-65%,-50%) rotate(45deg); }
.reviews-pagination { width: auto !important; }
.reviews-pagination { display: flex; align-items: center; gap: 6px; }
.review-dot { width: 8px; height: 8px; display: block; background: #c5cec3; border-radius: 50%; transition: width .2s, background .2s; }
.review-dot.active { width: 18px; background: var(--primary-dark); border-radius: 5px; }

.faq-section { padding: 105px 0 114px; background: #f3f7f0; }
.faq-grid { display: grid; grid-template-columns: minmax(0,.68fr) minmax(0,1.32fr); align-items: start; gap: 74px; }
.faq-intro h2 { margin: 0; color: var(--text); font-size: 42px; font-weight: 800; letter-spacing: -1.6px; }
.faq-intro > p:not(.section-eyebrow) { margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-intro > img { width: 150px; height: 150px; margin-top: 24px; object-fit: contain; }
.faq-list { display: grid; gap: 11px; }
.faq-item { overflow: hidden; background: var(--white); border: 1px solid rgba(28,75,27,.09); border-radius: 11px; box-shadow: 0 6px 20px rgba(18,61,24,.055); }
.faq-item h3 { margin: 0; }
.faq-question { width: 100%; min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 18px 15px 21px; color: var(--text); background: transparent; border: 0; font: inherit; font-size: 14px; font-weight: 800; text-align: left; cursor: pointer; }
.faq-question:focus-visible { outline: 3px solid rgba(90,174,32,.35); outline-offset: -3px; }
.faq-symbol { width: 34px; height: 34px; display: grid; flex: 0 0 auto; place-items: center; color: var(--white); background: var(--primary-dark); border-radius: 50%; font-size: 20px; font-weight: 500; }
.faq-answer { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .28s ease; }
.faq-answer[hidden] { display: grid; grid-template-rows: 0fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 65px 19px 21px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.contact { padding: 106px 0 112px; color: var(--white); background: linear-gradient(130deg,#0b2f13 0%,#174d21 60%,#225f28 100%); }
.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.88fr); align-items: center; gap: 78px; }
.contact .section-eyebrow { color: #8bdd45 !important; }
.contact-content h2 { max-width: 650px; margin: 0; color: var(--white); font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1.15; }
.contact-content > p:not(.section-eyebrow) { max-width: 610px; margin: 21px 0 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.72; }
.contact-actions { display: flex; gap: 13px; margin-top: 30px; }
.contact-actions .button { min-height: 80px; padding-inline: 34px; font-size: 17px; }
.contact-actions img { width: 60px; height: 60px; box-sizing: border-box; padding: 7px; object-fit: contain; background: var(--white); border-radius: 50%; box-shadow: 0 4px 13px rgba(0,0,0,.14); }
.contact-whatsapp { color: var(--dark-green); background: var(--white); box-shadow: var(--shadow); }
.contact-call { color: var(--white); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.contact-details { display: grid; gap: 10px; margin: 0; padding: 29px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 15px; font-style: normal; box-shadow: 0 24px 50px rgba(0,0,0,.18); }
.contact-details h3 { margin: 0 0 8px; font-size: 18px; }
.contact-detail { display: flex; align-items: center; gap: 13px; padding: 10px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.055); border-radius: 9px; font-size: 13px; line-height: 1.45; }
.contact-detail img { width: 50px; height: 50px; box-sizing: border-box; flex: 0 0 auto; padding: 10px; object-fit: contain; background: var(--white); border-radius: 50%; box-shadow: 0 4px 13px rgba(0,0,0,.14); }
.contact-detail:not(:last-child) img { padding: 6px; }
.contact-detail.contact-social img { padding: 10px; }
.contact-detail span { display: flex; flex-direction: column; }
.contact-detail small { margin-bottom: 2px; color: #8bdd45; font-size: 10px; font-weight: 800; text-transform: uppercase; }

.mobile-contact-bar { display: none; }

.site-footer { color: rgba(255,255,255,.72); background: #071f0d; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1.2fr .75fr .7fr; gap: 55px; padding-top: 67px; padding-bottom: 54px; }
.footer-logo .brand-copy strong { color: #8bdd45; }
.footer-logo .brand-copy span { color: rgba(255,255,255,.7); }
.footer-brand > p { margin: 17px 0 0; font-size: 13px; }
.footer-brand .footer-slogan { margin-top: 8px; color: rgba(255,255,255,.46); font-size: 11px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 12px; line-height: 1.55; }
.footer-column h2 { margin: 0 0 8px; color: var(--white); font-size: 14px; }
.footer-column address { margin: 0 0 4px; font-style: normal; }
.footer-column a { transition: color .2s; }
.footer-column a:hover { color: #8bdd45; }
.footer-bottom { padding: 20px 0 24px; border-top: 1px solid rgba(255,255,255,.09); font-size: 11px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
