/* ===== Design tokens ===== */
:root {
  --color-green-900: #17352A;
  --color-green-800: #1B3D2F;
  --color-green-700: #234A38;
  --color-orange-500: #E2762E;
  --color-orange-600: #CC6825;
  --color-white: #FFFFFF;
  --color-bg: #FBFAF8;
  --color-text: #1A1A1A;
  --color-text-muted: #5B5F5C;
  --color-border: #E7E5E0;

  --font-heading: "Poppins", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container-width: 1280px;
  --container-padding: 32px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--color-green-800);
  color: var(--color-white);
}

.btn-primary:hover { background: var(--color-green-900); }

.btn-secondary {
  background: var(--color-orange-500);
  color: var(--color-white);
}

.btn-secondary:hover { background: var(--color-orange-600); }

/* ===== Header ===== */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-word {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--color-green-800);
  letter-spacing: -0.01em;
}

.logo-dot { color: var(--color-orange-500); }

.logo-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-green-800);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 0.98rem;
}

.main-nav a {
  color: var(--color-text);
  transition: color 0.15s ease;
}

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

.header-cta { flex-shrink: 0; }

/* ===== Hero ===== */
.hero {
  padding: 64px 0 80px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--color-green-800);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 900px;
}

.accent-dot { color: var(--color-orange-500); }

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-top: 20px;
  margin-bottom: 48px;
}

/* ===== Service cards ===== */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  background-image:
    linear-gradient(to top, rgba(15, 25, 20, 0.92) 0%, rgba(15, 25, 20, 0.55) 38%, rgba(15, 25, 20, 0.05) 62%),
    var(--card-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.service-card-content {
  padding: 32px;
  color: var(--color-white);
  width: 100%;
}

.service-card-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  max-width: 420px;
}

.service-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 28px;
}

.service-checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  font-weight: 500;
}

.service-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-orange-500);
}

.service-checklist li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 6.5px;
  width: 8px;
  height: 4.5px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

/* ===== Trust bar ===== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.trust-bar li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  color: var(--color-green-800);
  flex-shrink: 0;
}

.trust-bar strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.trust-bar span {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ===== Mobile nav toggle ===== */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--color-green-800);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .header-inner { position: relative; flex-wrap: wrap; }
  .nav-toggle { display: flex; order: 3; }
  .header-cta { order: 2; }
  .main-nav {
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .main-nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    margin-top: 16px;
  }
  .main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--color-border);
  }
  .main-nav a:last-child { border-bottom: none; }
  .service-cards { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --container-padding: 20px; }
  .trust-bar { grid-template-columns: 1fr; }
  .service-checklist { grid-template-columns: 1fr; }
  .header-cta span { display: none; }
}

/* ===== Shared section elements ===== */
section { padding: 88px 0; }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-orange-500);
  margin-bottom: 14px;
}

.eyebrow-on-dark { color: var(--color-orange-500); }

h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--color-green-800);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h2.on-dark { color: var(--color-white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-top: 16px;
  max-width: 520px;
}

.section-sub.on-dark-muted { color: rgba(255,255,255,0.78); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-green-800);
  color: var(--color-green-800);
}

.btn-outline:hover { background: var(--color-green-800); color: var(--color-white); }

.btn-outline-on-dark {
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}

.btn-outline-on-dark:hover { background: var(--color-white); color: var(--color-green-800); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-orange-500);
}

.link-arrow-dark { color: var(--color-orange-500); }

.link-underline {
  font-weight: 600;
  color: var(--color-green-800);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== Portfolio ===== */
.portfolio { background: var(--color-bg); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-tab {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
}

.filter-tab.is-active {
  background: var(--color-green-800);
  border-color: var(--color-green-800);
  color: var(--color-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.portfolio-grid .is-hidden,
.portfolio-stack .is-hidden,
.blog-grid .is-hidden {
  display: none;
}

.portfolio-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.portfolio-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  background-image:
    linear-gradient(to top, rgba(10, 20, 15, 0.85) 0%, rgba(10, 20, 15, 0.15) 45%, rgba(10, 20, 15, 0) 65%),
    var(--card-image);
  background-size: cover;
  background-position: center;
}

.portfolio-card-large { min-height: 100%; }

.portfolio-card-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px;
  color: var(--color-white);
}

.portfolio-card-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
}

.portfolio-card-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  margin-top: 4px;
}

.portfolio-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.75);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ===== Audience (Passender Service) ===== */
.audience-section {
  background: var(--color-green-800);
  padding-bottom: 64px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  position: relative;
}

.audience-col {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 32px;
}

.audience-col:first-child { border-left: none; padding-left: 0; }

.audience-col img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 22px;
}

.audience-col h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.audience-col p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* ===== Was Sie erwarten koennen ===== */
.expect-section { background: var(--color-bg); }

.expect-section h2 { margin-bottom: 40px; }

.expect-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  max-width: 760px;
  margin-left: auto;
}

.expect-list li {
  position: relative;
  padding: 16px 0 16px 34px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}

.expect-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-orange-500);
}

.expect-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 23px;
  width: 9px; height: 5px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

/* ===== Ueber HSG ===== */
.about-section { background: var(--color-bg); }

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

.about-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.pill-list {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ===== Process ===== */
.process-section {
  background: #F1F0EC;
  padding-top: 64px;
}

.process-title {
  text-align: center;
  margin-bottom: 56px;
}

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  counter-reset: none;
}

.process-steps li {
  position: relative;
  text-align: center;
  padding-top: 8px;
}

.process-steps li::after {
  content: "";
  position: absolute;
  top: 33px;
  left: 55%;
  width: 100%;
  border-top: 2px dashed var(--color-border);
  z-index: 0;
}

.process-steps li:last-child::after { display: none; }

.process-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid var(--color-green-800);
  color: var(--color-green-800);
}

.process-steps strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-orange-500);
  margin-bottom: 6px;
}

.process-steps h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-green-800);
  margin-bottom: 6px;
}

.process-steps p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  max-width: 220px;
  margin: 0 auto;
}

/* ===== Hausverwaltungen split ===== */
.hv-section { background: var(--color-bg); padding-bottom: 0; }

.hv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hv-split img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.hv-panel {
  background: var(--color-green-800);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hv-panel .btn { align-self: flex-start; margin-top: 28px; margin-bottom: 18px; }

.check-list-dark {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list-dark li {
  position: relative;
  padding-left: 30px;
  color: var(--color-white);
  font-weight: 500;
}

.check-list-dark li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-orange-500);
}

.check-list-dark li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: 6px;
  width: 9px; height: 5px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

/* ===== Hausverwaltungen Typen ===== */
.hv-types-section { background: var(--color-bg); }

.hv-types-section h2 { margin-bottom: 48px; }

.hv-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hv-type {
  padding: 0 32px;
  border-left: 1px solid var(--color-border);
}

.hv-type:first-child { border-left: none; padding-left: 0; }

.hv-type strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-orange-500);
  margin-bottom: 10px;
}

.hv-type h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-green-800);
  margin-bottom: 8px;
}

.hv-type p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.hv-type a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-green-800);
  color: var(--color-green-800);
  align-items: center;
  justify-content: center;
}

/* ===== Einsatzgebiet ===== */
.area-section { background: var(--color-bg); }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.area-grid img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.area-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.area-blocks h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-green-800);
  margin-bottom: 4px;
}

.area-blocks p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ===== FAQ ===== */
.faq-section { background: #F1F0EC; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-green-800);
  cursor: pointer;
  list-style: none;
}

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

.faq-toggle {
  font-size: 1.3rem;
  color: var(--color-green-800);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item p {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 640px;
}

/* ===== Abschluss CTA ===== */
.final-cta {
  background: var(--color-green-900);
}

.final-cta-inner { text-align: center; }

.final-cta-inner .section-sub { margin-left: auto; margin-right: auto; max-width: 480px; }

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* ===== Responsive additions ===== */
@media (max-width: 960px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card-large { min-height: 320px; }
  .audience-grid { grid-template-columns: 1fr; gap: 32px; }
  .audience-col { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 24px; }
  .audience-col:first-child { border-top: none; padding-top: 0; }
  .expect-list { grid-template-columns: 1fr; margin-left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { height: 320px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps li::after { display: none; }
  .hv-split { grid-template-columns: 1fr; }
  .hv-split img { min-height: 280px; }
  .hv-types-grid { grid-template-columns: 1fr; gap: 28px; }
  .hv-type { border-left: none; padding-left: 0; }
  .area-grid { grid-template-columns: 1fr; }
  .area-grid img { height: 280px; order: -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-green-900);
  color: rgba(255,255,255,0.82);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo-word { color: var(--color-white); }
.footer-logo-tagline { color: rgba(255,255,255,0.7); }

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  max-width: 260px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}

.footer-col a:hover { color: var(--color-orange-500); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-legal { display: flex; gap: 20px; }

/* ===== Subpage: breadcrumb + page hero ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 20px 0 0;
}

.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-green-800); }
.breadcrumb span[aria-current] { color: var(--color-green-800); font-weight: 500; }

.page-hero {
  padding: 40px 0 64px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--color-green-800);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 760px;
}

.page-hero .section-sub { max-width: 640px; font-size: 1.1rem; }

.page-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.page-hero-image {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-hero-image img { width: 100%; height: 420px; object-fit: cover; }

/* ===== Subpage: content + sidebar checklist ===== */
.page-content {
  background: var(--color-bg);
  padding-top: 0;
}

.page-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.page-content-main p { color: var(--color-text); font-size: 1.02rem; margin-bottom: 18px; max-width: 620px; }
.page-content-main p:last-child { margin-bottom: 0; }

.included-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.included-box h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-green-800);
  margin-bottom: 18px;
}

.included-box ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.included-box li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
}

.included-box li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--color-orange-500);
}

.included-box li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: 6.5px;
  width: 8px; height: 4.5px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.included-box .btn { width: 100%; justify-content: center; }

/* ===== Subpage: related links ===== */
.related-section { background: #F1F0EC; }

.related-section h2 { margin-bottom: 32px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.related-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--color-border);
}

.related-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-green-800);
  margin-bottom: 10px;
}

.related-card a {
  color: var(--color-orange-500);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Subpage: simple FAQ (no split grid) ===== */
.page-faq { background: var(--color-bg); }
.page-faq h2 { margin-bottom: 32px; }
.page-faq .faq-list { max-width: 760px; }

/* ===== Responsive additions (subpages + footer) ===== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-content-grid { grid-template-columns: 1fr; }
  .page-hero-image img { height: 260px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ===== Blog: Übersicht ===== */
.blog-hero { padding: 40px 0 56px; }

.blog-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--color-green-800);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 760px;
}

.blog-hero .section-sub { max-width: 640px; font-size: 1.1rem; }

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.blog-section { background: var(--color-bg); padding-top: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(23, 53, 42, 0.08); }

.blog-card-tag {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-orange-500);
  background: rgba(226, 118, 46, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-green-800);
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card .link-arrow { margin-top: auto; }

/* ===== Blog: Artikel-Detail ===== */
.article-hero { padding: 40px 0 48px; }

.article-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--color-green-800);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 780px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.article-meta .blog-card-tag { margin-bottom: 0; }

.article-body-section { background: var(--color-bg); padding-top: 0; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body p {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.article-body h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-top: 44px;
  margin-bottom: 16px;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-green-800);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-body ul {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-body ul li {
  position: relative;
  padding-left: 26px;
  font-size: 1.02rem;
  color: var(--color-text);
}

.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-orange-500);
}

.article-body blockquote {
  border-left: 3px solid var(--color-orange-500);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-green-800);
}

.article-cta-box {
  max-width: 720px;
  margin: 48px auto 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.article-cta-box h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-green-800);
  margin-bottom: 10px;
}

.article-cta-box p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.article-updated {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 24px;
}

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

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-cta-box { padding: 24px; }
}

/* ===== Markenname im Fließtext hervorheben ===== */
.brand-name { color: var(--color-green-800); font-weight: 600; }

/* ===== Engagement Pop-ups ===== */
.hsg-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 53, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  animation: hsgFadeIn 0.25s ease;
}

.hsg-popup-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 100%;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hsg-popup-corner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 300px;
  width: calc(100% - 40px);
  padding: 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  z-index: 9998;
  animation: hsgSlideIn 0.3s ease;
  border: 1px solid var(--color-border);
}

@keyframes hsgFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes hsgSlideIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hsg-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.hsg-popup-close:hover { background: var(--color-bg); color: var(--color-text); }

.hsg-popup-card h3, .hsg-popup-corner h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-green-800);
  margin: 4px 40px 10px 0;
}

.hsg-popup-card p, .hsg-popup-corner p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hsg-popup-checklist {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hsg-popup-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text);
}
.hsg-popup-checklist svg { flex-shrink: 0; color: var(--color-orange-500); }

.hsg-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hsg-popup-actions .btn { width: 100%; justify-content: center; }

.hsg-popup-dismiss {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
}
.hsg-popup-dismiss:hover { color: var(--color-text); }

.hsg-popup-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-800);
  margin-bottom: 14px;
}

.hsg-popup-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.hsg-popup-input:focus { outline: 2px solid var(--color-green-800); outline-offset: 1px; }

.hsg-popup-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

@media (max-width: 480px) {
  .hsg-popup-corner { left: 20px; right: 20px; max-width: none; width: auto; }
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}
.btn-whatsapp:hover { background: #1EBE5A; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
