:root {
  --green: #2f7d32;
  --green-bright: #5daa3e;
  --green-dark: #174b25;
  --green-deep: #0f2e18;
  --green-light: #eaf6e9;
  --green-soft: #f4faf3;
  --text: #1e2a22;
  --muted: #5a6b5e;
  --white: #ffffff;
  --dark: #121a14;
  --shadow: 0 16px 48px rgba(15, 46, 24, 0.12);
  --radius: 16px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-overflow-scrolling: touch;
  overflow-x: clip;
}

@media (max-width: 640px) {
  html { scroll-padding-top: 86px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Flow animations (JS-driven) */
.flow-reveal,
.flow-slide-left,
.flow-slide-right,
.flow-scale,
.flow-fade {
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: no-preference) {
  .flow-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--flow-delay, 0s);
  }

  .flow-slide-left {
    opacity: 0;
    transform: translate3d(-36px, 0, 0);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--flow-delay, 0s);
  }

  .flow-slide-right {
    opacity: 0;
    transform: translate3d(36px, 0, 0);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--flow-delay, 0s);
  }

  .flow-scale {
    opacity: 0;
    transform: scale(0.94);
    transition:
      opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--flow-delay, 0s);
  }

  .flow-fade {
    opacity: 0;
    transition: opacity 0.65s ease;
    transition-delay: var(--flow-delay, 0s);
  }

  .flow-line {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--flow-delay, 0s);
  }

  .flow-visible.flow-reveal,
  .flow-visible.flow-slide-left,
  .flow-visible.flow-slide-right,
  .flow-visible.flow-scale {
    opacity: 1;
    transform: none;
  }

  .flow-visible.flow-fade { opacity: 1; }

  .flow-visible.flow-line { transform: scaleX(1); }

  .site-header {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(15, 46, 24, 0.08);
    border-bottom-color: #d4e6d4;
  }

  .nav-links a.is-active {
    color: var(--green);
  }

  .nav-links a.is-active::after { width: 100%; }

  .form-step.is-active {
    animation: flowStepIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .form-step.is-active.is-backward {
    animation-name: flowStepBack;
  }

  .form-success.is-visible {
    animation: flowSuccess 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .carousel-slide.is-active img {
    animation: flowCarouselIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 768px) {
  .flow-reveal { transform: translate3d(0, 20px, 0); }
  .flow-slide-left { transform: translate3d(-24px, 0, 0); }
  .flow-slide-right { transform: translate3d(24px, 0, 0); }
}

@keyframes flowStepIn {
  from {
    opacity: 0;
    transform: translateX(22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flowStepBack {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flowSuccess {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes flowCarouselIn {
  from {
    opacity: 0.85;
    transform: scale(1.03);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-reveal,
  .flow-slide-left,
  .flow-slide-right,
  .flow-scale,
  .flow-fade,
  .flow-line {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .form-step.is-active,
  .form-success.is-visible,
  .carousel-slide.is-active img {
    animation: none !important;
  }

  .hero-slash-panel {
    animation: none !important;
    background: var(--green-deep) !important;
  }

  .hero-slash.is-ready .hero-slash-media img {
    animation: none !important;
  }

  .hero-label-shimmer {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: rgba(141, 186, 120, 0.9);
    animation: none !important;
  }

  .hero-slash-bar-inner .hero-perk {
    opacity: 1 !important;
    animation: none !important;
  }

  .section-line-glow,
  .eyebrow-glow {
    animation: none !important;
    opacity: 1 !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }

  .service-cards:not(.is-in-view) .service-card,
  .service-cards .service-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .service-content {
    height: auto !important;
    transition: none !important;
  }

  .service-content-inner {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .service-details.is-expanded .service-content-inner ul li {
    animation: none !important;
  }

  .about-item.flow-visible,
  .about-item.flow-visible .check-icon {
    animation: none !important;
  }

  .form-next::after {
    animation: none !important;
    display: none;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.icon-img {
  flex-shrink: 0;
  display: block;
  width: 22px;
  height: 22px;
  max-width: none;
}

.icon-img-sm {
  width: 16px;
  height: 16px;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

.section-line {
  display: block;
  width: 120px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), var(--green), transparent);
}

.section-line-left { margin-left: 0; margin-right: auto; }

/* Top bar */
.top-bar {
  background: var(--green-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  transition: opacity 0.2s;
}

.top-bar-item:hover { opacity: 0.85; }

.top-bar-wa { font-weight: 700; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid #e3ece3;
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.brand img {
  height: 56px;
  width: auto;
  max-width: min(220px, 46vw);
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--green-bright);
  transition: width 0.2s;
}

.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border: none;
  box-shadow: 0 8px 24px rgba(47, 125, 50, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47, 125, 50, 0.32);
}

.btn-small { padding: 10px 20px; font-size: 13px; }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero */
.hero-slash {
  position: relative;
  min-height: clamp(520px, 82vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: 36px;
}

.hero-slash::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 38%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    var(--green-deep) 0%,
    rgba(15, 46, 24, 0.65) 20%,
    transparent 44%
  );
}

.hero-slash::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: #fff;
  z-index: 4;
  pointer-events: none;
  clip-path: ellipse(76% 85% at 50% 100%);
}

.hero-slash-media {
  position: absolute;
  inset: 0;
  left: 38%;
  z-index: 0;
}

.hero-slash-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slash-panel {
  position: relative;
  z-index: 2;
  width: min(62%, 720px);
  padding: clamp(56px, 9vw, 104px) 0 clamp(100px, 12vw, 140px);
  background: var(--green-deep);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.hero-slash-inner {
  max-width: 520px;
}

.hero-slash-label {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-label-shimmer {
  display: inline-block;
  color: rgba(141, 186, 120, 0.9);
  background: linear-gradient(
    105deg,
    rgba(141, 186, 120, 0.82) 0%,
    rgba(141, 186, 120, 0.82) 38%,
    rgba(220, 235, 210, 0.98) 50%,
    rgba(141, 186, 120, 0.82) 62%,
    rgba(141, 186, 120, 0.82) 100%
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-label-shimmer {
    color: transparent;
    animation: heroLabelShimmer 5s ease-in-out infinite;
  }
}

@keyframes heroLabelShimmer {
  0%, 100% { background-position: 100% center; }
  50% { background-position: 0% center; }
}

.hero-slash-panel h1 {
  color: #fff;
  margin-bottom: 18px;
}

.hero-slash-lead {
  margin: 0 0 28px;
  max-width: 480px;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.hero-slash-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 0 clamp(44px, 5vw, 56px);
}

.hero-slash-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 48px rgba(15, 46, 24, 0.18);
  border: 1px solid rgba(208, 228, 208, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-slash-bar-inner:not(.is-in-view) .hero-perk {
    opacity: 0;
  }

  .hero-slash-bar-inner:not(.is-in-view) .hero-perk:nth-child(1) {
    transform: translate3d(36px, 0, 0);
  }

  .hero-slash-bar-inner:not(.is-in-view) .hero-perk:nth-child(2) {
    transform: translate3d(-36px, 0, 0);
  }

  .hero-slash-bar-inner:not(.is-in-view) .hero-perk:nth-child(3) {
    transform: translate3d(36px, 0, 0);
  }

  .hero-slash-bar-inner.is-in-view .hero-perk:nth-child(1) {
    animation: heroPerkInRight 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0s;
  }

  .hero-slash-bar-inner.is-in-view .hero-perk:nth-child(2) {
    animation: heroPerkInLeft 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
  }

  .hero-slash-bar-inner.is-in-view .hero-perk:nth-child(3) {
    animation: heroPerkInRight 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.8s;
  }
}

@keyframes heroPerkInRight {
  from {
    opacity: 0;
    transform: translate3d(36px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroPerkInLeft {
  from {
    opacity: 0;
    transform: translate3d(-36px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-slash.is-ready .hero-slash-media img {
    animation: heroImageDrift 28s ease-in-out infinite alternate;
  }
}

@keyframes heroImageDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.04) translate3d(-0.6%, -0.4%, 0); }
}

@keyframes serviceLiIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Marquee banner */
.marquee-banner {
  overflow: hidden;
  background: var(--green-dark);
  padding: 14px 0;
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
}

.marquee-group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 22px;
}

.marquee-sep {
  color: var(--green-bright);
  font-size: 12px;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .marquee-track {
    animation: marqueeScroll 38s linear infinite;
  }

  .marquee-banner:hover .marquee-track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-banner { display: none; }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .marquee-banner { padding: 11px 0; }

  .marquee-item {
    font-size: 12px;
    padding: 0 16px;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #d0e4d0;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(15, 46, 24, 0.04);
}

.trust-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  flex-shrink: 0;
}

.tagline {
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 10px;
}

@media (prefers-reduced-motion: no-preference) {
  .section-head.flow-visible .section-line-glow {
    animation: sectionLineGlow 4.2s ease-in-out infinite;
  }

  .section-head.flow-visible .eyebrow-glow {
    animation: eyebrowGlowPulse 4.2s ease-in-out infinite;
  }
}

@keyframes sectionLineGlow {
  0%, 100% {
    opacity: 0.5;
    box-shadow: 0 0 0 rgba(93, 170, 62, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 14px rgba(93, 170, 62, 0.45);
  }
}

@keyframes eyebrowGlowPulse {
  0%, 100% {
    opacity: 0.72;
    color: var(--green-dark);
    text-shadow: 0 0 0 rgba(47, 125, 50, 0);
  }

  50% {
    opacity: 1;
    color: var(--green);
    text-shadow:
      0 0 10px rgba(47, 125, 50, 0.28),
      0 0 22px rgba(93, 170, 62, 0.14);
  }
}

h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--green-dark);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 28px;
  line-height: 1.65;
}

/* Services */
.section { padding: 84px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.services-section { background: #fff; }

.service-card {
  scroll-margin-top: 110px;
  background: #fff;
  border: 1px solid #e3ece3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 46, 24, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-desc {
  margin: 0;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (prefers-reduced-motion: no-preference) {
  .service-cards .service-card {
    opacity: 0;
    transition:
      opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--card-delay, 0s);
  }

  .service-cards.is-in-view .service-card {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .service-cards.is-in-view .service-card:nth-child(1) { --card-delay: 0s; }
  .service-cards.is-in-view .service-card:nth-child(2) { --card-delay: 0.38s; }
  .service-cards.is-in-view .service-card:nth-child(3) { --card-delay: 0.76s; }
  .service-cards.is-in-view .service-card:nth-child(4) { --card-delay: 1.14s; }

  .service-cards:not(.is-in-view) .service-card:nth-child(1) {
    transform: translate3d(64px, 0, 0);
    --card-delay: 1.14s;
  }

  .service-cards:not(.is-in-view) .service-card:nth-child(2) {
    transform: translate3d(-64px, 0, 0);
    --card-delay: 0.76s;
  }

  .service-cards:not(.is-in-view) .service-card:nth-child(3) {
    transform: translate3d(64px, 0, 0);
    --card-delay: 0.38s;
  }

  .service-cards:not(.is-in-view) .service-card:nth-child(4) {
    transform: translate3d(-64px, 0, 0);
    --card-delay: 0s;
  }
}

.service-details { height: 100%; }

.service-summary {
  display: none;
}

.service-title {
  margin: 0;
  padding: 22px 24px 0;
  font-size: 20px;
  color: var(--green-dark);
}

.service-img {
  height: 180px;
  overflow: hidden;
  border-bottom: 4px solid var(--green);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 46, 24, 0.1);
}

.service-card:hover .service-img img { transform: scale(1.04); }

.service-content ul {
  list-style: none;
  padding: 0 24px 26px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card li {
  margin: 7px 0;
  padding-left: 18px;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 55%, var(--green) 100%);
  color: #fff;
  padding: 20px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 16px 20px;
}

.cta-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
}

.cta-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.cta-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-brand-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.cta-brand-tag {
  font-size: 10px;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.2;
  white-space: nowrap;
}

.cta-content {
  flex: 1;
  min-width: 0;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(18px, 3vw, 24px);
  margin: 0 0 4px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.45;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cta-btn {
  padding: 11px 22px;
  font-size: 14px;
}

/* About */
.about-section { background: var(--green-soft); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-list { display: grid; gap: 20px; }

.about-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e3ece3;
}

@media (prefers-reduced-motion: no-preference) {
  .about-item.flow-visible {
    animation: aboutCardFloat 5.5s ease-in-out infinite;
  }

  .about-item.flow-visible:nth-child(2) {
    animation-delay: -1.8s;
  }

  .about-item.flow-visible:nth-child(3) {
    animation-delay: -3.6s;
  }

  .about-item.flow-visible .check-icon {
    animation: aboutCheckPulse 3.8s ease-in-out infinite;
  }

  .about-item.flow-visible:nth-child(2) .check-icon {
    animation-delay: 0.6s;
  }

  .about-item.flow-visible:nth-child(3) .check-icon {
    animation-delay: 1.2s;
  }
}

@keyframes aboutCardFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 0 rgba(47, 125, 50, 0);
  }

  50% {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 10px 28px rgba(47, 125, 50, 0.07);
  }
}

@keyframes aboutCheckPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(93, 170, 62, 0);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 7px rgba(93, 170, 62, 0.1);
  }
}

.check-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon .icon-img {
  width: 20px;
  height: 20px;
}

.about-item strong {
  display: block;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}

.about-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-image img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* Arbeiten / Bilder */
.arbeiten-section {
  background: #fff;
  padding-bottom: 64px;
}

.arbeiten-showcase {
  max-width: 820px;
  margin: 0 auto;
}

.arbeiten-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.arbeiten-filter {
  border: 1px solid #dceadc;
  background: #fff;
  color: var(--green-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.arbeiten-filter:hover,
.arbeiten-filter.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.arbeiten-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e3ece3;
  box-shadow: var(--shadow);
  background: #000;
  touch-action: pan-y pinch-zoom;
}

.carousel-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 46, 24, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.carousel-zoom-btn:hover {
  background: #fff;
  transform: scale(1.06);
}

.carousel-track {
  position: relative;
  height: clamp(240px, 42vw, 380px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide.is-active img {
  cursor: zoom-in;
}

.carousel-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(15, 46, 24, 0.9));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid #dceadc;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--green-light);
  border-color: var(--green);
}

.carousel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 0 4px;
}

.carousel-counter {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: #c8dcc8;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.carousel-dot.is-active {
  background: var(--green);
  transform: scale(1.25);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 46, 24, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(90vh - 56px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.lightbox-caption {
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* Anfrage */
.anfrage-section {
  background: var(--green-soft);
}

.anfrage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.anfrage-intro > p:not(.eyebrow) {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
}

.anfrage-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.anfrage-notes li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
}

.anfrage-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
}

.anfrage-form {
  background: #fff;
  border: 1px solid #dceadc;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.form-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.form-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dceadc;
  transition: background 0.2s, transform 0.2s;
}

.form-progress-dot.is-active {
  background: var(--green);
  transform: scale(1.15);
}

.form-step {
  display: none;
  gap: 16px;
}

.form-step.is-active {
  display: grid;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-actions .btn,
.form-step > .btn-full {
  width: 100%;
}

.form-step.is-active .form-row input:focus,
.form-step.is-active .form-row textarea:focus,
.form-step.is-active .form-row select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.12);
}

.form-row.is-invalid input,
.form-row.is-invalid textarea,
.form-row.is-invalid select {
  border-color: #c62828;
}

.form-error {
  margin: 0;
  font-size: 13px;
  color: #c62828;
  font-weight: 600;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1px solid #dceadc;
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
  margin-top: 4px;
}

.form-next {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (prefers-reduced-motion: no-preference) {
  .form-next::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 38%,
      rgba(255, 255, 255, 0.42) 50%,
      transparent 62%
    );
    transform: translateX(-130%);
    animation: formNextShine 3.2s ease-in-out infinite;
    pointer-events: none;
  }
}

@keyframes formNextShine {
  0%, 72%, 100% {
    transform: translateX(-130%);
  }

  38% {
    transform: translateX(130%);
  }
}

.form-hint {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.form-submit-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff2f2;
  border: 1px solid #f0b4b4;
  color: #8a1f1f;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-submit-error[hidden] {
  display: none;
}

.form-success {
  text-align: center;
  padding: 28px 12px 8px;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
}

.form-success h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--green-dark);
}

.form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.anfrage-form [type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* Contact */
.contact-section { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.contact-grid > div > p:not(.eyebrow):not(.small) {
  font-size: 17px;
  color: var(--muted);
}

.contact-card {
  background: var(--green-soft);
  border-radius: 20px;
  border: 1px solid #dceadc;
  padding: 28px;
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #dceadc;
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-link:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(47, 125, 50, 0.1);
}

.small {
  font-size: 14px !important;
  margin: 4px 0 0;
  color: var(--muted) !important;
}

/* Footer */
.footer {
  background: var(--green-deep);
  color: #c8dcc8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-logo img {
  height: 72px;
  width: auto;
  border-radius: 10px;
  margin-bottom: 14px;
}

.footer-tagline {
  margin: 0 0 10px;
  font-style: italic;
  font-size: 14px;
  color: #a8c4a8;
}

.footer-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #9bb89b;
  max-width: 280px;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #c8dcc8;
  transition: color 0.2s;
}

.footer-menu a:hover { color: #fff; }

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 13px;
  color: #9bb89b;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-legal a {
  color: #c8dcc8;
  transition: color 0.2s;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: #fff;
}

.form-row-checkbox {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-row.is-invalid .checkbox-label {
  color: #b42318;
}

.form-hint a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page .legal-nav-links {
  display: flex;
  gap: 20px;
}

.legal-main {
  padding: 48px 0 72px;
  background: var(--green-soft);
  min-height: 60vh;
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--green-deep);
}

.legal-updated {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 15px;
}

.legal-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #dceadc;
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--green-dark);
}

.legal-section p,
.legal-section li {
  margin: 0 0 12px;
  color: var(--text);
}

.legal-section ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.legal-section a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-note {
  font-size: 14px;
  color: var(--muted);
}

.legal-note-hidden {
  display: none;
}

.legal-missing-hint {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #b54708;
}

.legal-back {
  margin-top: 36px;
}

.legal-back a {
  color: var(--green-dark);
  font-weight: 700;
}

/* Floating buttons — each fixed to viewport (reliable on mobile) */
.back-to-top,
.float-wa {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s, opacity 0.2s, visibility 0.2s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.back-to-top {
  bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(47, 125, 50, 0.45);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-to-top:hover { transform: translateZ(0) translateY(-3px); }

.float-wa {
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.float-wa:hover { transform: translateZ(0) scale(1.06); }

.back-to-top svg,
.float-wa svg {
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .anfrage-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-image {
    display: none;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    box-shadow: none;
  }

  .service-card:hover {
    transform: none;
    box-shadow: none;
  }

  .service-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.35s ease;
  }

  .service-summary::-webkit-details-marker { display: none; }

  .service-summary::after {
    content: "";
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
  }

  .service-details[open] .service-summary {
    background: var(--green-soft);
    border-bottom: 1px solid #e3ece3;
  }

  .service-details[open] .service-summary::after {
    transform: rotate(-135deg);
  }

  .service-content {
    overflow: hidden;
    height: 0;
    transition: height 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .service-content-inner {
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .service-details.is-expanded .service-content-inner {
    opacity: 1;
    transform: translateY(0);
  }

  .service-details.is-expanded .service-content-inner ul li {
    animation: serviceLiIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .service-details.is-expanded .service-content-inner ul li:nth-child(1) { animation-delay: 0.08s; }
  .service-details.is-expanded .service-content-inner ul li:nth-child(2) { animation-delay: 0.16s; }
  .service-details.is-expanded .service-content-inner ul li:nth-child(3) { animation-delay: 0.24s; }

  .service-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--green);
  }

  .service-summary-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    text-align: left;
  }

  .service-summary-text strong {
    font-size: 15px;
    color: var(--dark);
  }

  .service-count {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
  }

  .service-desc {
    display: none;
  }

  .service-img,
  .service-title {
    display: none;
  }

  .service-content ul {
    padding: 12px 16px 16px;
    margin: 0;
  }

  .service-card li {
    margin: 6px 0;
    font-size: 14px;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 4%;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open { display: flex; }
  .site-header .nav { position: relative; }
  .nav .btn-small { display: none; }

  .cta-inner {
    flex-wrap: wrap;
  }

  .cta-brand {
    width: 100%;
    justify-content: center;
  }

  .cta-brand-tag {
    white-space: normal;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .arbeiten-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .section { padding: 60px 0; }

  .hero-slash {
    min-height: auto;
    display: block;
    padding-bottom: 0;
  }

  .hero-slash::before {
    left: 0;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(15, 46, 24, 0.2) 50%,
      rgba(15, 46, 24, 0.55) 100%
    );
  }

  .hero-slash::after {
    height: 40px;
    clip-path: ellipse(94% 78% at 50% 100%);
  }

  .hero-slash-media {
    position: relative;
    left: 0;
    height: 240px;
  }

  .hero-slash-panel {
    width: 100%;
    clip-path: none;
    padding: 40px 0 0;
  }

  .hero-slash-inner {
    max-width: none;
  }

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

  .hero-slash-bar {
    position: relative;
    padding: 24px 0 72px;
    background: var(--green-deep);
  }

  .hero-slash-bar-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 44px 0 32px;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .back-to-top {
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }

  .float-wa {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    width: 60px;
    height: 60px;
  }

  .float-wa svg {
    width: 32px;
    height: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand {
    padding: 0;
  }

  .brand img {
    height: 46px;
    max-width: min(200px, 52vw);
  }

  .nav { height: 78px; }
  .nav-links { top: 78px; }
  .service-cards { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .top-bar-inner { gap: 14px; }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

@media (hover: none) {
  .service-card:hover,
  .btn:hover {
    transform: none;
  }

  .back-to-top:hover,
  .float-wa:hover {
    transform: translateZ(0);
  }

  .service-card:hover .service-img img {
    transform: none;
  }
}
