/* ================================================
   DREVE HAUS- & GARTENSERVICE – REDESIGN V2
   Structural rebuild with premium aesthetics
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  --green-deep:     #132e24;
  --green-dark:     #1a3d32;
  --green-mid:      #245545;
  --green-cta:      #2d7a5f;
  --green-cta-hover:#35926f;
  --green-light:    #e8f0ec;

  --gold:           #c8a96e;
  --gold-soft:      rgba(200,169,110,0.10);

  --text:           #1a1f22;
  --text-secondary: #4a5258;
  --muted:          #6b7580;
  --white:          #ffffff;
  --off-white:      #fafbfa;
  --soft-bg:        #f4f7f5;
  --line:           #e2e8e4;
  --line-soft:      #eaf0ec;

  --dark-bg:        #0f1a16;
  --dark-surface:   rgba(255,255,255,0.05);

  --shadow-sm:      0 2px 8px rgba(15,26,22,0.04);
  --shadow:         0 8px 30px rgba(15,26,22,0.07);
  --shadow-lg:      0 20px 60px rgba(15,26,22,0.10);
  --shadow-glow:    0 0 28px rgba(45,122,95,0.18);

  --container:      1260px;
  --radius:         20px;
  --radius-sm:      14px;
  --radius-xs:      10px;

  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --duration:       0.35s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
ul { list-style: none; }

.container {
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,228,0.5);
  transition: box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 20px rgba(15,26,22,0.06);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--duration) var(--ease);
}
.logo:hover { opacity: 0.8; }

.logo-image {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }
.logo-text strong { font-size: 0.95rem; font-weight: 700; color: var(--green-dark); }
.logo-text small { color: var(--muted); font-size: 0.78rem; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-xs);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.main-nav a:not(.nav-cta):hover {
  background: var(--green-light); color: var(--green-dark);
}
.main-nav .nav-cta {
  background: var(--green-cta); color: white;
  padding: 10px 22px; border-radius: 999px;
  font-weight: 600; margin-left: 8px;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.main-nav .nav-cta:hover {
  background: var(--green-cta-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: var(--radius-xs);
  background: white; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

/* Floating Buttons */
.sticky-call-btn,
.sticky-whatsapp-btn {
  position: fixed;
  z-index: 1200;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s var(--ease);
  pointer-events: none;
}

.sticky-call-btn.visible,
.sticky-whatsapp-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-call-btn {
  right: 16px;
  bottom: 76px;
  background: var(--green-cta);
  color: white;
  box-shadow: 0 8px 28px rgba(45,122,95,0.35);
}
.sticky-call-btn:hover {
  background: var(--green-cta-hover);
  box-shadow: 0 12px 36px rgba(45,122,95,0.45);
  transform: translateY(-2px);
}

.sticky-whatsapp-btn {
  right: 16px;
  bottom: 16px;
  background: #25d366;
  color: white;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}
.sticky-whatsapp-btn:hover {
  background: #1ebe5b;
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
  transform: translateY(-2px);
}

.sticky-whatsapp-btn svg,
.sticky-call-btn svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

@media (max-width: 860px) {
  .sticky-call-btn,
  .sticky-whatsapp-btn { display: inline-flex; }
}

/* ================================================
   HERO – Clean & Centered
   ================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-bg-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,16,0.7) 0%,
    rgba(10,20,16,0.55) 50%,
    rgba(10,20,16,0.8) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 140px 0 120px;
}

.hero-inner .eyebrow,
.hero-inner h1,
.hero-inner .hero-sub,
.hero-inner .hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease) forwards;
}
.hero-inner .eyebrow     { animation-delay: 0.1s; }
.hero-inner h1           { animation-delay: 0.25s; }
.hero-inner .hero-sub    { animation-delay: 0.4s; }
.hero-inner .hero-actions{ animation-delay: 0.55s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-dark { color: var(--muted); }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-sub {
  margin-top: 24px;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 28px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
}

.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }

@media (max-width: 640px) {
  .hero-trust { gap: 8px 14px; }
  .hero-trust-item { font-size: 0.78rem; }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 26px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.92rem;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: all var(--duration) var(--ease);
}

.btn-accent {
  background: var(--green-cta); color: white;
}
.btn-accent:hover {
  background: var(--green-cta-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
}

.btn-full { width: 100%; }

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  background: var(--green-deep);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.stat-suffix {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ================================================
   SECTIONS – General
   ================================================ */
.section { padding: 96px 0; }
.section-soft { background: var(--soft-bg); }
.section-dark { background: var(--dark-bg); color: white; }

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}

.section-head p,
.service-body p,
.about-content p,
.b2b-content p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-top: 14px;
}

.section-dark .b2b-content p { color: rgba(255,255,255,0.72); }

/* ================================================
   SERVICES – Featured + Grid
   ================================================ */

/* Featured (big) card */
.service-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.service-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-featured-media {
  overflow: hidden;
  min-height: 380px;
}
.service-featured-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-featured:hover .service-featured-media img {
  transform: scale(1.04);
}

.service-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-tag {
  display: inline-block;
  width: fit-content;
  padding: 6px 14px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(200,169,110,0.15);
}

.service-featured-body h3 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-subtitle {
  color: var(--green-dark) !important;
  font-weight: 600;
  font-size: 0.88rem !important;
  margin-top: 8px !important;
}

.service-featured-body > p:last-of-type {
  margin-top: 12px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.92rem;
}

/* Shared service link */
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.88rem;
  color: var(--green-cta);
  margin-top: auto; padding-top: 16px;
  transition: gap var(--duration) var(--ease), color var(--duration) var(--ease);
}
.service-link::after { content: "→"; transition: transform var(--duration) var(--ease); }
.service-link:hover { color: var(--green-cta-hover); }
.service-link:hover::after { transform: translateX(4px); }

/* 2x2 grid cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  border: 1px solid var(--line-soft);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-media { overflow: hidden; }
.service-image {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-image { transform: scale(1.05); }

.service-body {
  padding: 24px;
  display: flex; flex-direction: column; flex: 1;
}
.service-body h3 {
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.01em;
}
.service-body p {
  margin-top: 8px;
  font-size: 0.88rem;
}

/* ================================================
   B2B
   ================================================ */
.b2b-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.b2b-content h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.b2b-checklist {
  display: grid; gap: 10px;
  margin: 28px 0;
}

.b2b-check {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem; font-weight: 500;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.b2b-check:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.b2b-check svg {
  width: 18px; height: 18px;
  color: var(--green-cta);
  flex-shrink: 0;
}

.b2b-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.b2b-visual img {
  width: 100%; height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.b2b-visual:hover img { transform: scale(1.03); }

/* ================================================
   ABOUT + TRUST (merged)
   ================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image {
  width: 100%; height: 520px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-visual:hover .about-image { transform: scale(1.03); }

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* Trust points within about */
.trust-points {
  display: grid; gap: 16px;
  margin-top: 28px;
}

.trust-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.trust-point:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.trust-point-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-xs);
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-cta);
}
.trust-point-icon svg { width: 20px; height: 20px; }

.trust-point strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.trust-point p {
  font-size: 0.85rem !important;
  margin-top: 0 !important;
  color: var(--muted) !important;
  line-height: 1.6 !important;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-top: 14px;
}

.contact-details {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 28px;
}

.contact-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--soft-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
  color: var(--green-dark);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.contact-detail:hover {
  background: var(--green-light);
  transform: translateX(4px);
}
.contact-detail svg {
  width: 20px; height: 20px;
  color: var(--green-cta);
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 13px 16px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--line);
  font: inherit; font-size: 0.9rem;
  outline: none;
  background: var(--off-white);
  color: var(--text);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green-cta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,122,95,0.08);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted); font-weight: 400;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 14px;
}
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

.form-privacy svg { color: var(--green-cta); margin-top: 1px; }
.form-privacy a { color: var(--green-cta); text-decoration: underline; text-underline-offset: 2px; }

.contact-form select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235a6368' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { max-width: 340px; }
.footer-logo {
  width: 180px; max-width: 100%;
  object-fit: contain; border-radius: 10px;
  margin-bottom: 16px;
}
.footer-tagline {
  color: rgba(255,255,255,0.5);
  line-height: 1.75; font-size: 0.85rem;
}

.footer-col {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-col h3 {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.footer-col a,
.footer-col span {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem; line-height: 1.6;
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0 28px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  transition: color var(--duration) var(--ease);
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-page { background: var(--soft-bg); min-height: 100vh; }
.legal-wrap { max-width: 920px; }
.legal-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.legal-card h2 { margin: 0 0 12px; font-size: 1.3rem; font-weight: 700; }
.legal-card p { margin: 0 0 22px; color: var(--text-secondary); line-height: 1.8; }
.legal-card a { color: var(--green-cta); font-weight: 600; }
.legal-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* ================================================
   RESPONSIVE – 1100px
   ================================================ */
@media (max-width: 1100px) {
  .service-featured { grid-template-columns: 1fr 1fr; }
  .service-featured-media { min-height: 320px; }
  .b2b-layout { gap: 40px; }
  .about-layout { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ================================================
   RESPONSIVE – 860px
   ================================================ */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 68px; left: 12px; right: 12px;
    display: none; flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow-lg); gap: 2px;
  }
  .main-nav.open {
    display: flex;
    animation: navIn 0.3s var(--ease);
  }
  @keyframes navIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .main-nav a { padding: 12px 16px; font-size: 0.92rem; }
  .main-nav .nav-cta { margin-left: 0; margin-top: 4px; text-align: center; border-radius: var(--radius-xs); }

  .sticky-call-btn {
    display: inline-flex; align-items: center; justify-content: center;
  }

  .hero { min-height: auto; }
  .hero-inner { padding: 100px 0 76px; }
  .hero h1 { font-size: clamp(2.2rem, 7vw, 3.2rem); }

  .stats-grid { flex-direction: column; gap: 24px; padding: 40px 0; }
  .stat-divider { width: 60px; height: 1px; }

  .service-featured { grid-template-columns: 1fr; }
  .service-featured-media { min-height: 240px; }
  .service-featured-body { padding: 28px; }
  .services-grid { grid-template-columns: 1fr; }

  .b2b-layout { grid-template-columns: 1fr; gap: 32px; }
  .b2b-visual img { min-height: 280px; }

  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-image { height: 360px; }

  .contact-layout { grid-template-columns: 1fr; gap: 32px; }

  .section { padding: 64px 0; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ================================================
   PROCESS – "In 3 Schritten"
   ================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: process-step;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-light) 0%, var(--green-cta) 50%, var(--green-light) 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  counter-increment: process-step;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.process-step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-deep);
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 4px 16px rgba(19,46,36,0.25);
}

.process-step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-light);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-grid::before { display: none; }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(6, 340px);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 8px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track:active { cursor: grabbing; }

@media (min-width: 1200px) {
  .testimonials-track {
    grid-template-columns: repeat(6, calc((100% - 100px) / 3));
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-stars span {
  color: #f59e0b;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-text::before { content: '„'; }
.testimonial-text::after  { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.rating-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 1px;
}

.rating-score {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.rating-count {
  font-size: 0.82rem;
  color: var(--muted);
}

.testimonials-cta {
  text-align: center;
  margin-top: 32px;
}

.testimonials-cta p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}
.btn-google-reviews:hover {
  border-color: #4285F4;
  box-shadow: 0 4px 16px rgba(66,133,244,0.15);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .testimonials-track { grid-template-columns: repeat(3, 280px); }
}

/* ================================================
   FORM FEEDBACK
   ================================================ */
.form-message {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  animation: fadeUp 0.4s var(--ease);
}
.form-message--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-message--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ================================================
   COOKIE BANNER
   ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: min(640px, calc(100% - 32px));
  background: var(--green-deep);
  color: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  border: 1px solid rgba(255,255,255,0.08);
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  flex: 1;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.cookie-btn {
  padding: 10px 18px;
  border-radius: var(--radius-xs);
  font: 600 0.82rem/1 inherit;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
}

.cookie-btn--accept {
  background: var(--green-cta);
  color: white;
}
.cookie-btn--accept:hover {
  background: var(--green-cta-hover);
  box-shadow: var(--shadow-glow);
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn--decline:hover {
  color: white;
  border-color: rgba(255,255,255,0.35);
}

@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 16px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; padding: 12px; }
}

/* ================================================
   SERVICE SUB-LIST (auf Hauptseite)
   ================================================ */
.service-sublist {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-sublist li {
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-sublist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-cta);
  font-weight: 700;
}

.service-sublist-sm li { font-size: 0.85rem; }

.service-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

.service-link-secondary {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ================================================
   LEISTUNGSSEITEN – Hero
   ================================================ */
.service-page-hero {
  background: var(--soft-bg);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 48px;
}

.service-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--green-deep);
  margin: 10px 0 18px;
  line-height: 1.1;
}

.service-page-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--green-cta);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* ================================================
   LEISTUNGSSEITEN – Layout
   ================================================ */
.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.service-page-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-deep);
  margin-bottom: 16px;
}

.service-page-content > p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  font-size: 1rem;
}

.detail-services {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-service-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
}

.detail-service-item:last-child { border-bottom: none; }

.detail-service-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.detail-service-item p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ================================================
   LEISTUNGSSEITEN – Sidebar
   ================================================ */
.service-page-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

.aside-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.aside-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.aside-box p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.aside-box p:last-child { margin-bottom: 0; }

.aside-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aside-links a {
  color: var(--green-cta);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.aside-links a:hover { text-decoration: underline; }

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

@media (max-width: 900px) {
  .service-page-layout {
    grid-template-columns: 1fr;
  }
  .service-page-aside {
    position: static;
  }
}

/* ================================================
   FAQ
   ================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-cta);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer address */
.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}

.footer-address a {
  color: var(--muted);
  text-decoration: none;
}

.footer-address a:hover {
  color: var(--white);
}

/* ================================================
   RESPONSIVE – 640px
   ================================================ */
@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 32px)); }

  .section { padding: 48px 0; }

  .hero-inner { padding: 80px 0 56px; }
  .hero h1 { font-size: 1.85rem; line-height: 1.08; }
  .hero-sub { font-size: 0.92rem; margin-top: 18px; }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; min-height: 48px; font-size: 0.88rem; }

  .stat-number { font-size: 2rem; }

  .section-head h2,
  .contact-info h2,
  .about-content h2,
  .b2b-content h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .service-featured-body { padding: 22px; }
  .service-featured-body h3 { font-size: 1.35rem; }
  .service-image { height: 180px; }
  .service-body { padding: 20px; }

  .b2b-visual img { min-height: 220px; }
  .about-image { height: 280px; }

  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }

  .trust-point { padding: 14px 16px; }

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

  .logo-text small { display: none; }
  .logo-image { width: 40px; height: 40px; }
  .header-inner { min-height: 60px; }
}