/* Fonts (self-hosted, Variable Fonts) */

@font-face {
  font-family: 'Eudoxus Sans';
  src: url('../fonts/EudoxusSansGX.woff2') format('woff2-variations'),
       url('../fonts/EudoxusSansGX.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/InterVariable.woff2') format('woff2-variations'),
       url('../fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/InterVariable-Italic.woff2') format('woff2-variations'),
       url('../fonts/InterVariable-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --olive:        #84975A;
  --olive-dk:     #6d7e49;
  --olive-lite:   #eaedd8;
  --mauve:        #B294A6;
  --mauve-lite:   #f3edf1;
  --bg-green:     #c9d4b0;
  --bg-green-dk:  #b8c89e;
  --light:        #F3F3F3;
  --dark:         #333333;

  --bg:           #ffffff;
  --surface:      #ffffff;
  --text:         #333333;
  --muted:        #717871;
  --border:       #dddad2;
  --shadow-sm:    0 2px 8px rgba(51,51,51,0.06);
  --shadow:       0 4px 20px rgba(51,51,51,0.08);
  --shadow-lg:    0 12px 48px rgba(51,51,51,0.12);

  --radius:       10px;
  --radius-lg:    18px;
  --max:          1160px;
  --nav-h:        68px;

  --font-head:    'Eudoxus Sans', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

main { display: block; }

/* Typografie */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.18;
  color: var(--dark);
  text-wrap: pretty;
}
h1 { font-size: clamp(2rem, 5vw, 3.3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
p  { max-width: 66ch; text-wrap: pretty; }
a  { color: var(--olive); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--olive-dk); }
strong { font-weight: 600; }

/* Layout */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--light { background: var(--light); }
.section--green { background: var(--bg-green); }
.section--dark  { background: var(--dark); color: rgba(255,255,255,0.8); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.78em 1.85em;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.93rem;
  cursor: pointer;
  border: none;
  transition: all 0.22s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 2px 8px rgba(132,151,90,0.25);
}
.btn--primary:hover {
  background: var(--olive-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(132,151,90,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--olive);
  color: var(--olive);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
  border-color: rgba(255,255,255,0.75);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn--sm { padding: 0.58em 1.35em; font-size: 0.85rem; }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,0.97);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo { flex-shrink: 0; line-height: 0; }
.nav__logo img { height: 32px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  display: block;
  padding: 0.42em 0.8em;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 7px;
  transition: all 0.18s var(--ease);
}
.nav__links a:hover, .nav__links a.active {
  background: var(--olive-lite);
  color: var(--olive);
}
.nav__cta { margin-left: 0.75rem; flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--dark);
  padding: 0.65rem 2rem;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-nav a:hover { background: var(--olive-lite); color: var(--olive); }
.mobile-nav .btn--primary { margin-top: 1.25rem; width: auto; }
.mobile-nav__close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 0.25rem;
}

/* Footer */
.footer {
  background: var(--dark);
  padding: 4.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 2.5rem 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__logo-img {
  margin-bottom: 1rem;
  line-height: 0;
}
.footer__logo-img img { height: 40px; width: auto; display: block; }
.footer__brand p {
  color: rgba(255,255,255,0.42);
  font-size: 0.84rem;
  line-height: 1.65;
  max-width: 28ch;
}
.footer__col h4 {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer__col ul a {
  color: rgba(255,255,255,0.48);
  font-size: 0.875rem;
  transition: color 0.18s;
}
.footer__col ul a:hover { color: rgba(255,255,255,0.9); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.48);
  font-size: 0.875rem;
  margin-bottom: 0.7rem;
}
.footer__contact-item a { color: rgba(255,255,255,0.48); transition: color 0.18s; }
.footer__contact-item a:hover { color: rgba(255,255,255,0.9); }
.footer__icon {
  width: 15px; height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--olive);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(255,255,255,0.26);
  font-size: 0.78rem;
}
.footer__bottom a { color: rgba(255,255,255,0.38); transition: color 0.18s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }
.footer__bottom-links { display: flex; gap: 1.25rem; }

/* Page Header */
.page-header {
  padding: calc(var(--nav-h) + 4.5rem) 0 3.5rem;
  text-align: center;
  background: var(--bg-green);
}
.page-header .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive-dk);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p {
  margin: 0 auto;
  color: rgba(51,51,51,0.7);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* Feature Card */
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.8rem;
  border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--olive-lite);
}
.feature-card__icon {
  width: 44px; height: 44px;
  background: var(--olive-lite);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-card__icon svg {
  width: 21px; height: 21px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 { margin-bottom: 0.45rem; }
.feature-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.6; max-width: none; }

/* Callout */
.callout {
  background: var(--olive-lite);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  border: 1px solid rgba(132,151,90,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.callout p { color: rgba(51,51,51,0.72); font-size: 0.95rem; }
.callout h3 { margin-bottom: 0.3rem; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 1.5rem;
  padding-bottom: 2.5rem;
}
.step:last-child { padding-bottom: 0; }
.step__num-wrap { display: flex; flex-direction: column; align-items: center; }
.step__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--olive);
  flex-shrink: 0;
}
.step__line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 0.5rem;
  min-height: 20px;
}
.step:last-child .step__line { display: none; }
.step__content { padding-top: 0.7rem; }
.step__content h3 { margin-bottom: 0.4rem; }
.step__content p  { font-size: 0.92rem; color: var(--muted); }

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured { border-color: var(--olive); background: var(--dark); }
.pricing-card--featured h2,
.pricing-card--featured h3 { color: #fff; }
.pricing-card--featured p { color: rgba(255,255,255,0.6); }
.pricing-card--featured li { color: rgba(255,255,255,0.72); }
.popular-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28em 1.1em;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.pricing-card--featured .pricing-tier { color: var(--olive); }
.pricing-name { font-size: 1.3rem; font-weight: 700; font-family: var(--font-head); margin-bottom: 0.25rem; }
.price {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1;
  margin: 0.9rem 0 0.25rem;
}
.pricing-card--featured .price { color: #fff; }
.price small { font-size: 1rem; font-weight: 400; font-family: var(--font-body); opacity: 0.65; }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.5rem 0;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.45;
}
.check-icon {
  width: 16px; height: 16px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card--featured .check-icon { stroke: var(--bg-green); }

/* Section Label & Tag */
.label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive-dk);
  margin-bottom: 0.9rem;
  opacity: 0.85;
}
.tag-mauve {
  display: inline-block;
  background: var(--mauve-lite);
  color: var(--mauve);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.28em 0.85em;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* Page: Home (index) */
.hero {
  min-height: 100svh;
  background: var(--bg-green);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
.hero__text {
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive-dk);
  margin-bottom: 1.4rem;
  opacity: 0.85;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--olive);
  border-radius: 2px;
}
.hero h1 { margin-bottom: 1.5rem; max-width: 14ch; line-height: 1.32; }
.hero h1 em { font-style: normal; color: var(--olive); }
.hero__sub {
  font-size: 1.05rem;
  color: rgba(51,51,51,0.72);
  margin-bottom: 2.25rem;
  max-width: 46ch;
}
.hero__ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 2.5rem);
  position: relative;
}
.hero__img img {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 48px rgba(51,51,51,0.12));
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: start;
}
.intro__lead { font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.25rem; }
.intro__body { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.95rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.fuerwen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: center;
}
.fuerwen__img img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(51,51,51,0.1));
}
.fuerwen__img { text-align: center; }

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 6rem;
  align-items: start;
}
.process-lede { font-size: 1.05rem; color: var(--muted); margin-top: 1rem; }

.vita-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 3rem;
  align-items: center;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  border: 1px solid var(--border);
}
.vita-callout p { color: var(--muted); font-size: 0.93rem; max-width: 58ch; }

/* Page: Angebot & Preise */
.angebot-hero {
  background: var(--bg-green);
  padding-top: calc(var(--nav-h) + 4rem);
  overflow: hidden;
  position: relative;
}
.angebot-hero__text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}
.angebot-hero__text .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive-dk);
  opacity: 0.8;
  display: block;
  margin-bottom: 1.1rem;
}
.angebot-hero__text h1 { margin-bottom: 1.1rem; line-height: 1.12; }
.angebot-hero__text p {
  color: rgba(51,51,51,0.7);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto;
}
.angebot-hero__hands { display: block; line-height: 0; }
.angebot-hero__hands img { width: 100%; height: auto; display: block; }

.checks-grid { gap: 0.7rem 2rem; margin-top: 1.5rem; }
.check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.check-item svg {
  width: 18px; height: 18px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.bonus-card .tag-mauve { margin-bottom: 0.85rem; display: inline-block; }

.addons-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.addons-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
}
.addons-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.addons-table tr:last-child td { border-bottom: none; }
.addons-table tr:hover td { background: var(--light); }
.addons-table td:last-child {
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.process-step-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}
.process-step-num {
  width: 40px; height: 40px;
  background: var(--olive-lite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--olive);
  font-size: 1rem;
  flex-shrink: 0;
}
.process-step-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.process-step-item p  { font-size: 0.875rem; color: var(--muted); }

.seo-check-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--olive);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
}
.seo-price-split { display: flex; gap: 2.5rem; margin-top: 1rem; }
.seo-price-item .seo-amount {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1;
}
.seo-price-item .seo-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Page: SEO-Check */
.seo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.seo-split img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.seo-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.seo-include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
}
.seo-include-item svg {
  width: 18px; height: 18px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}
.seo-include-item strong { display: block; margin-bottom: 0.2rem; font-size: 0.88rem; }
.seo-include-item p { color: var(--muted); font-size: 0.82rem; max-width: none; }

.price-box {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.price-box__item { flex: 1; min-width: 140px; }
.price-box__amount {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: var(--font-head);
  line-height: 1;
  color: #fff;
}
.price-box__label { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-top: 0.3rem; }
.price-box__divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

/* Page: Beispiele */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.example-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(51,51,51,0.12);
}
.example-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-green);
}
.example-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s var(--ease);
}
.example-card:hover .example-card__img img { transform: scale(1.03); }
.example-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.25em 0.75em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.04em;
}
.example-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.example-card__body h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.example-card__body p  { font-size: 0.875rem; color: var(--muted); flex: 1; margin-bottom: 1.25rem; }
.example-card__body a  { align-self: flex-start; }

/* Page: FAQ */
.faq-section { max-width: 780px; margin: 0 auto; }
.faq-group { margin-bottom: 0.5rem; }
.faq-group-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--olive-dk);
  margin: 2.75rem 0 0.25rem;
  padding-top: 2.25rem;
  border-top: 2px solid var(--olive-lite);
}
.faq-group:first-child .faq-group-title {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.faq-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 1.2rem 0; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; font-family: var(--font-body); font-size: 0.97rem; font-weight: 600;
  color: var(--dark); transition: color 0.18s;
}
.faq-question:hover { color: var(--olive); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; stroke: var(--olive);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.28s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.36s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer__inner {
  padding-bottom: 1.25rem; font-size: 0.92rem; color: var(--muted); line-height: 1.7;
}
.faq-answer__inner p { margin-bottom: 0.6rem; max-width: none; }
.faq-answer__inner p:last-child { margin-bottom: 0; }
.faq-answer__inner a { color: var(--olive); }
.faq-answer__inner strong { color: var(--text); }

/* Page: Kontakt */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { position: sticky; top: calc(var(--nav-h) + 2rem); }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}
.contact-detail__icon {
  width: 38px; height: 38px;
  background: var(--olive-lite);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg {
  width: 18px; height: 18px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail__label { font-size: 0.72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail__value { font-weight: 500; color: var(--dark); }
.contact-detail__value a { color: var(--dark); }
.contact-detail__value a:hover { color: var(--olive); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75em 1em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(132,151,90,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23717871' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.5em; cursor: pointer; }
/* Checkbox: native Darstellung wiederherstellen (sonst von .form-group input überschrieben) */
.form-group input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.form-group input[type="checkbox"]:focus {
  box-shadow: none;
}
.form-hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.35rem; }
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.55;
}
.form-error {
  display: none;
  background: #fdecea;
  border: 1px solid #f5c2bd;
  color: #b03a2e;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .success-icon {
  width: 56px; height: 56px;
  background: var(--olive-lite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success .success-icon svg {
  width: 26px; height: 26px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Page: Über mich */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 64px rgba(51,51,51,0.14);
}
.about-photo__badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--olive);
  color: #fff;
  border-radius: 14px;
  padding: 1rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(132,151,90,0.3);
  max-width: 180px;
}
.about-photo__badge strong { font-size: 1.15rem; display: block; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.qual-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.qual-icon {
  width: 36px; height: 36px;
  background: var(--olive-lite);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qual-icon svg {
  width: 18px; height: 18px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.qual-item h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.qual-item p  { font-size: 0.82rem; color: var(--muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
}
.value-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.value-card p  { font-size: 0.875rem; color: var(--muted); }

/* Page: Blog (Übersicht) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(51,51,51,0.1);
  border-color: var(--olive-lite);
  color: inherit;
}
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-green);
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--olive); margin-bottom: 0.6rem;
}
.blog-card__body h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card__body p { font-size: 0.87rem; color: var(--muted); flex: 1; margin-bottom: 1.1rem; line-height: 1.6; }
.blog-card__meta { font-size: 0.78rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.blog-card__meta::before { content: ''; display: block; width: 16px; height: 1.5px; background: var(--border); border-radius: 2px; }

/* Page: Blog (Einzelartikel) */
.blog-hero { background: var(--bg-green); padding: calc(var(--nav-h) + 3.5rem) 0 0; }
.blog-hero__inner { max-width: 740px; margin: 0 auto; padding: 0 clamp(1.25rem,5vw,2.5rem); }
.blog-hero__cat { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--olive-dk); margin-bottom: 1rem; opacity: 0.85; }
.blog-hero h1 { margin-bottom: 1.1rem; }
.blog-hero__lead { font-size: 1.05rem; color: rgba(51,51,51,0.72); margin-bottom: 2rem; max-width: 58ch; }
.blog-hero__img { margin-top: 3rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; aspect-ratio: 16/7; }
.blog-hero__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-body { max-width: 740px; margin: 0 auto; padding: 0 clamp(1.25rem,5vw,2.5rem); }
.blog-body h2 { font-size: 1.35rem; margin: 2.5rem 0 0.75rem; }
.blog-body h3 { font-size: 1.05rem; margin: 1.75rem 0 0.5rem; }
.blog-body p { font-size: 0.97rem; color: var(--text); line-height: 1.8; margin-bottom: 1rem; max-width: none; }
.blog-body ul, .blog-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog-body li { font-size: 0.97rem; line-height: 1.75; color: var(--text); margin-bottom: 0.35rem; }
.blog-body strong { font-weight: 600; }
.blog-body a { color: var(--olive); }
.blog-caption { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.5rem; }
.blog-attribution { max-width: 740px; margin: 2rem auto 0; padding: 0 clamp(1.25rem,5vw,2.5rem); font-size: 0.78rem; color: var(--muted); }
.blog-attribution a { color: var(--olive); }
.blog-cta { background: var(--bg-green); border-radius: var(--radius-lg); padding: 2rem 2.25rem; margin: 3rem 0; }
.blog-cta h3 { margin-bottom: 0.5rem; }
.blog-cta p { font-size: 0.92rem; color: rgba(51,51,51,0.7); margin-bottom: 1.25rem; }
.blog-body .btn--primary { color: #fff; }
.blog-body .btn--primary:hover { color: #fff; }
.blog-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 500; color: var(--olive); margin-bottom: 2rem; }
.blog-back svg { width: 16px; height: 16px; stroke: var(--olive); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.example-box {
  background: var(--olive-lite);
  border-left: 3px solid var(--olive);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text);
}
.example-box strong { color: var(--dark); }

.fehler-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--olive);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-head);
  flex-shrink: 0;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.besser-box {
  background: var(--olive-lite);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin: 0.75rem 0 1rem;
  font-size: 0.92rem;
}
.besser-box strong { color: var(--olive-dk); }
.besser-box ul { margin: 0.5rem 0 0; padding-left: 1.25rem; }

.checklist { list-style: none; padding-left: 0; }
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2384975A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

.disclaimer {
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  font-style: italic;
  margin-top: 2rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* Page: Impressum / Datenschutz (legal) */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--dark);
  margin-top: 2.25rem;
  margin-bottom: 0.6rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}
.legal-content h3:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  max-width: none;
}
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content a { color: var(--olive); }

.impressum-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text);
}
.impressum-box strong { font-size: 1rem; display: block; margin-bottom: 0.35rem; color: var(--dark); }
.impressum-box .label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive-dk);
  opacity: 0.8;
  margin-bottom: 0.5rem;
  display: block;
}

.impressum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.legal-contact-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}
.legal-contact-box strong { display: block; margin-bottom: 0.15rem; }

/* Error Page (404) */
.error-page {
  padding: calc(var(--nav-h) + 6rem) 0 6rem;
  text-align: center;
}
.error-page h1 {
  font-size: clamp(4rem, 14vw, 8rem);
  color: var(--olive);
  margin-bottom: 1rem;
  line-height: 1;
}
.error-page p { margin: 0 auto 2rem; color: var(--muted); }

/* Responsive */
@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__text { padding: 3.5rem 0 2rem; }
  .hero__img { display: none; }
  .intro-grid, .fuerwen-grid, .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .vita-callout { grid-template-columns: 1fr; }
  .fuerwen__img { order: -1; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .examples-grid { grid-template-columns: 1fr 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-photo { text-align: center; margin-bottom: 2rem; }
  .about-photo img { max-width: 280px; margin: 0 auto; }
  .about-photo__badge { right: calc(50% - 220px); }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .seo-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .seo-split img { max-width: 260px; }
  .seo-includes { grid-template-columns: 1fr; }
  .price-box { flex-direction: column; gap: 1.5rem; }
  .price-box__divider { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .checks-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .seo-check-box { grid-template-columns: 1fr; }
  .seo-price-split { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .callout { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .impressum-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .skills-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .examples-grid { grid-template-columns: 1fr; }
}
