/* ===================================================================
   AW Entrümpelung & Dienstleistungen – Styles
   =================================================================== */

:root {
  --green:        #1f7a45;
  --green-dark:   #166034;
  --green-darker: #0f4a28;
  --green-tint:   #eef5f0;
  --green-soft:   #dbe9e0;
  --ink:          #1e2a24;
  --body:         #4a554e;
  --muted:        #6f7a73;
  --white:        #ffffff;
  --off:          #f7f9f7;
  --line:         #e3e8e4;
  --radius:       14px;
  --radius-sm:    10px;
  --shadow:       0 10px 30px rgba(20, 45, 30, .08);
  --shadow-lg:    0 20px 50px rgba(20, 45, 30, .14);
  --maxw:         1140px;
  --header-h:     74px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--green); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; fill: currentColor; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(31,122,69,.28); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.7); backdrop-filter: blur(3px); }
.btn-ghost:hover { background: #fff; color: var(--green-dark); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--green-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .92rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 22px rgba(20,45,30,.09); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-weight: 500;
  color: var(--ink);
  font-size: .98rem;
  transition: color .15s ease;
}
.main-nav a:not(.btn):hover { color: var(--green); }
.nav-cta { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: url('../assets/hero.jpg') center 35% / cover no-repeat;
  padding: 90px 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(15,74,40,.92) 0%, rgba(15,74,40,.68) 45%, rgba(20,45,30,.35) 100%);
}
.hero-content { position: relative; max-width: 720px; color: #fff; }
.hero-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cdeed9;
  background: rgba(255,255,255,.12);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.95rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 18px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero h1 span { color: #8fe3ac; }
.hero-text {
  font-size: 1.15rem;
  color: #e8f1ea;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-weight: 500;
  color: #dff0e5;
  font-size: .97rem;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  margin-top: -52px;
  position: relative;
  z-index: 5;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.trust-item { display: flex; gap: 14px; align-items: center; }
.trust-item svg {
  width: 38px; height: 38px;
  fill: var(--green);
  flex-shrink: 0;
  background: var(--green-tint);
  padding: 7px;
  border-radius: 10px;
}
.trust-item strong { display: block; color: var(--ink); font-family: 'Poppins', sans-serif; font-size: 1rem; }
.trust-item span { font-size: .88rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-tint { background: var(--off); }
.section-head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.section-sub { font-size: 1.07rem; color: var(--body); }

/* ---------- Service cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-soft);
  z-index: 2;
}
.card-icon {
  width: 58px; height: 58px;
  border-radius: 13px;
  background: var(--green-tint);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 30px; height: 30px; fill: var(--green); }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { font-size: .97rem; }
.cards-note { text-align: center; margin-top: 36px; font-size: 1.03rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
}
.step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  background: var(--green);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 11px;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 7px; }
.step p { font-size: .94rem; }

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
}
.why-text h2 { margin-bottom: 16px; }
.check-list { list-style: none; margin: 22px 0 28px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='m20 6-11 11-5-5 1.4-1.4L9 14.2 18.6 4.6Z'/%3E%3C/svg%3E") center / 15px no-repeat;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat {
  background: var(--green-darker);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
}
.stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #8fe3ac;
  margin-bottom: 4px;
}
.stat span { font-size: .9rem; color: #d4e4d9; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  display: block;
}
.about-text h2 { margin-bottom: 14px; }
.about-text p { margin-bottom: 14px; }
.about-contact { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 22px; }
.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
}
.contact-line svg { width: 20px; height: 20px; fill: var(--green); }
.contact-line:hover { color: var(--green); }
.contact-line.big { font-size: 1.35rem; color: var(--green-dark); }
.contact-line.big svg { width: 26px; height: 26px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr .85fr;
  gap: 36px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .97rem;
  font-weight: 400;
  color: var(--ink);
  background: var(--off);
  transition: border-color .15s ease, background .15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.form-hint { font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.form-status { margin-top: 12px; font-weight: 600; font-size: .92rem; }
.form-status.error { color: #c0392b; }
.form-status.ok { color: var(--green); }
/* Honeypot-Feld – für Menschen unsichtbar, Bots füllen es aus */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-info {
  background: var(--green-darker);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
}
.contact-info h3 { color: #fff; font-size: 1.25rem; margin-bottom: 18px; }
.contact-info .contact-line { color: #fff; margin-bottom: 12px; }
.contact-info .contact-line svg { fill: #8fe3ac; }
.contact-info .contact-line.big { color: #fff; }
.contact-info .contact-line:hover { color: #8fe3ac; }
.info-block { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.info-block h4 { color: #8fe3ac; font-size: .92rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.info-block p { color: #d4e4d9; font-size: .97rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 56px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-inner p { color: #e3f1e8; margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9c4bd; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 56px 24px 40px;
}
.footer-logo {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.footer-logo img { height: 58px; width: auto; display: block; }
.footer-brand p { font-size: .95rem; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; color: #b9c4bd; font-size: .94rem; margin-bottom: 9px; }
.footer-col a:hover { color: #8fe3ac; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px;
  font-size: .88rem;
}
.footer-bottom-inner nav { display: flex; gap: 22px; }
.footer-bottom-inner a { color: #b9c4bd; }
.footer-bottom-inner a:hover { color: #8fe3ac; }

/* ---------- Floating call button ---------- */
.fab-call {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: none;
  place-items: center;
  box-shadow: 0 10px 24px rgba(31,122,69,.45);
  z-index: 90;
  animation: pulse 2.4s infinite;
}
.fab-call svg { width: 26px; height: 26px; fill: #fff; }
@keyframes pulse {
  0%   { box-shadow: 0 10px 24px rgba(31,122,69,.45), 0 0 0 0 rgba(31,122,69,.45); }
  70%  { box-shadow: 0 10px 24px rgba(31,122,69,.45), 0 0 0 16px rgba(31,122,69,0); }
  100% { box-shadow: 0 10px 24px rgba(31,122,69,.45), 0 0 0 0 rgba(31,122,69,0); }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 60px 0 80px; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 26px; }
.legal-page h2 { font-size: 1.3rem; margin: 34px 0 10px; }
.legal-page p, .legal-page li { margin-bottom: 10px; }
.legal-page ul { padding-left: 22px; }
.legal-page .container { max-width: 820px; }
.legal-page .placeholder {
  background: #fff6da;
  border: 1px dashed #d9b94a;
  color: #7a5d10;
  padding: 2px 7px;
  border-radius: 5px;
  font-weight: 600;
  font-size: .92em;
}
.back-link { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 24px; font-weight: 600; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(82vw, 320px);
    height: calc(100vh - var(--header-h));
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    box-shadow: -12px 0 40px rgba(20,45,30,.16);
    transform: translateX(110%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .main-nav .nav-cta {
    margin-top: 16px;
    border: 0;
    justify-content: center;
  }

  .logo-img { height: 46px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 38px; }
  .hero { padding: 70px 0; min-height: auto; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; margin-top: 0; }
  .trust-bar { margin-top: -40px; }
  .cards-grid, .steps, .why-stats, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form, .contact-info { padding: 24px; }
  .cta-inner { flex-direction: column; text-align: center; align-items: stretch; }
  .cta-inner .btn { justify-content: center; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .fab-call { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .fab-call { animation: none; }
}
