/* ==================== HERO ==================== */
.section-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  margin-bottom: -4vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 26, 0.72) 0%,
    rgba(10, 30, 26, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-16);
  padding-bottom: var(--space-24);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--text-hero);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: var(--space-8);
}

.hero-title em {
  font-style: normal;
  color: #5EFDE5;
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: var(--space-12);
}

.break-desktop {
  display: none;
}

@media (min-width: 900px) {
  .break-desktop {
    display: inline;
  }
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: color var(--dur-base) var(--ease-out);
  animation: bob 2s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll-hint:hover,
.hero-scroll-hint:focus-visible {
  color: #5EFDE5;
}

.hero-scroll-hint:focus-visible {
  outline: 2px solid #5EFDE5;
  outline-offset: 2px;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint {
    animation: none;
  }
}

/* ==================== SERVICES ==================== */
.section-services {
  padding-top: calc(var(--space-32) + 4vw);
  padding-bottom: var(--space-24);
  background: var(--color-surface);
}

.section-services .section-title {
  margin-bottom: var(--space-16);
  color: var(--color-fg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== VORHER / NACHHER ==================== */
.section-compare {
  padding: var(--space-24) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-compare .section-title {
  margin-bottom: var(--space-4);
  color: var(--color-fg);
}

.section-compare .section-sub {
  color: var(--color-fg-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-12);
  max-width: 560px;
}

.compare-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.compare-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.compare-before,
.compare-after {
  position: absolute;
  inset: 0;
}

.compare-before img,
.compare-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.compare-after {
  clip-path: inset(0 calc(100% - var(--compare-pos, 50%)) 0 0);
}

.compare-label {
  position: absolute;
  bottom: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  pointer-events: none;
}

.compare-before .compare-label { left: var(--space-4); }
.compare-after  .compare-label { right: var(--space-4); }

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: col-resize;
  z-index: 10;
  margin: 0;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos, 50%);
  transform: translateX(-50%);
  width: 3px;
  background: #fff;
  pointer-events: none;
  z-index: 9;
}

.compare-handle::before,
.compare-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.compare-handle::before { top: calc(50% - 20px); }
.compare-handle::after  { display: none; }

.compare-hint {
  text-align: center;
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-fg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

/* ==================== USPs ==================== */
.section-usps {
  background: var(--color-section-alt);
  padding: var(--space-24) 0;
  clip-path: polygon(0 4vw, 100% 0, 100% 96%, 0 100%);
  margin: -2vw 0;
}

.section-usps .section-label {
  color: #5EFDE5;
}

.section-usps .section-label::before {
  background: #5EFDE5;
}

.section-usps .section-title {
  margin-bottom: var(--space-16);
  color: var(--color-white);
}

.usps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 900px) {
  .usps-layout {
    grid-template-columns: 1fr;
  }
}

.usps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 540px) {
  .usps-grid {
    grid-template-columns: 1fr;
  }
}

.usp-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.usp-block:nth-child(2n) {
  border-right: none;
}

@media (max-width: 540px) {
  .usp-block {
    border-right: none;
  }
}

.usps-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.usps-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.usps-photo-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--text-xl);
  line-height: 1;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
}

/* ==================== CONTACT ==================== */
.section-contact {
  padding-top: calc(var(--space-24) + 2vw);
  padding-bottom: var(--space-24);
  background: var(--color-bg);
}

.section-contact .section-title {
  margin-bottom: var(--space-16);
  color: var(--color-fg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

.contact-info__lead {
  color: var(--color-fg-muted);
  font-size: var(--text-lg);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  max-width: 360px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-style: normal;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  background: var(--color-surface);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--color-section-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-12) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur-base) var(--ease-out);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #5EFDE5;
}

.footer-links a:focus-visible {
  outline: 2px solid #5EFDE5;
  outline-offset: 2px;
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.site-footer .nav-logo__jg {
  color: var(--color-white);
}

.site-footer .nav-logo__sep {
  color: #5EFDE5;
}

.site-footer .nav-logo__cleaning {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-tagline {
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 540px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
