@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/Nunito-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Nunito-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Nunito-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Nunito-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Caveat-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Caveat-700.woff2') format('woff2');
}

:root {
  --primary: #B86C52;
  --primary-hover: #A35A42;
  --primary-light: rgba(184, 108, 82, 0.1);
  --secondary: #7A9A6A;
  --secondary-light: rgba(122, 154, 106, 0.15);
  --accent: #C4913A;
  --accent-hover: #B07D30;
  --accent-light: rgba(196, 145, 58, 0.12);
  --bg: #F5F0E8;
  --card-bg: #EDE6DA;
  --text: #2C2420;
  --text-muted: #7D7268;
  --border: #DCD2C4;
  --white: #FFFFFF;
  --heading: 'Poppins', sans-serif;
  --body: 'Nunito', sans-serif;
  --script: 'Caveat', cursive;
  --shadow-sm: 0 1px 3px rgba(45, 42, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(45, 42, 40, 0.08);
  --shadow-lg: 0 8px 30px rgba(45, 42, 40, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--primary-hover);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
}
.logo-box {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 2px 12px;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.logo-after {
  font-size: 1.3rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links li:has(a[href*="blog"]) {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--accent-hover);
}
.nav-cta::after {
  display: none !important;
}

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

/* --- Hero --- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, rgba(245, 240, 232, 0.92) 0%, rgba(245, 240, 232, 0.85) 45%, rgba(245, 240, 232, 0.6) 57%, rgba(245, 240, 232, 0.2) 73%, transparent 85%),
              url('images/Stefan_hero.jpg') center center / cover no-repeat;
  padding-top: var(--nav-height);
}
.subpage-hero {
  min-height: 55dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.subpage-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.subpage-hero h1 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.subpage-hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #4A4038;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(245, 240, 232, 0.5);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}
.hero-bg-shapes .shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 108, 82, 0.15), transparent);
  top: -150px;
  right: -100px;
}
.hero-bg-shapes .shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(122, 154, 106, 0.12), transparent);
  bottom: -80px;
  left: -80px;
}
.hero-bg-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 145, 58, 0.1), transparent);
  top: 40%;
  left: 60%;
}
.hero .container {
  position: relative;
  z-index: 1;
  text-align: left;
}
.hero h1 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #4A4038;
  max-width: 580px;
  margin: 0 0 120px;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(245, 240, 232, 0.6);
}

/* --- Zielgruppen-Blöcke in Hero --- */
.hero-targets {
  display: flex;
  gap: 0;
  max-width: 900px;
  margin: 0 0 44px;
}
.hero-targets .divider {
  width: 1px;
  flex-shrink: 0;
  background: var(--border);
  align-self: stretch;
}
.target-block {
  flex: 1;
  padding: 8px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 0;
}
.target-block:hover {
  border-left-color: var(--primary);
  background: rgba(255, 255, 255, 0.5);
}
.target-block.tb-1 { border-left-color: var(--primary); }
.target-block.tb-2 { border-left-color: var(--secondary); }
.target-block.tb-3 { border-left-color: var(--accent); }
.target-block h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.target-block p {
  font-size: 0.88rem;
  color: #4A4038;
  line-height: 1.6;
  margin-bottom: 8px;
}
.target-block .tb-link {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap 0.2s;
}
.target-block:hover .tb-link {
  gap: 8px;
}


.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  color: var(--text-muted);
  font-size: 0.9rem;
  aspect-ratio: 16 / 9;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: var(--white);
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Process --- */
.process-bg {
  background: var(--white);
}

/* --- Haltung Callout --- */
.approach-haltung {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-bottom: 48px;
}
.approach-haltung .haltung-accent {
  width: 4px;
  min-height: 80px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  flex-shrink: 0;
  align-self: stretch;
}
.approach-haltung .haltung-content h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.approach-haltung .haltung-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- Personal Style (Für Sie persönlich) --- */
.personal-style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.personal-style-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.personal-style-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.personal-style-item .psi-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.personal-style-item .psi-icon svg {
  width: 24px;
  height: 24px;
}
.personal-style-item h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.personal-style-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Executive Style (Führungskräfte) --- */
.executive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.executive-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.executive-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.executive-item .ex-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.executive-item .ex-icon svg {
  width: 24px;
  height: 24px;
}
.executive-item h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.executive-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Starter Style (Berufseinsteiger) --- */
.starter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.starter-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.starter-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.starter-item .st-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.starter-item .st-icon svg {
  width: 24px;
  height: 24px;
}
.starter-item h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.starter-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- 3-Phasen Prozess --- */
.process-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg);
  border-radius: var(--radius-md);
  transition: background 0.3s;
}
.process-item:hover {
  background: var(--card-bg);
}
a.process-item.contact-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
a.process-item.contact-card-link:hover {
  color: inherit;
  border-left-color: var(--primary);
  background: var(--card-bg);
}
.process-item .pi-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-item .pi-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-item h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.process-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Location / Vor Ort --- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 24px;
}
.location-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.location-card .lc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.location-card .lc-icon svg {
  width: 28px;
  height: 28px;
}
.location-card h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.location-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.location-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Topics Grid --- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.topic-card .tc-header {
  padding: 0 0 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.topic-card .tc-header.c1 { border-bottom-color: var(--primary); }
.topic-card .tc-header.c2 { border-bottom-color: var(--secondary); }
.topic-card .tc-header.c3 { border-bottom-color: var(--accent); }
.topic-card .tc-header h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
.topic-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* --- Testimonials --- */
.testimonials-bg {
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card .quote-icon {
  font-family: var(--script);
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: -10px;
}
.testimonial-card blockquote {
  font-family: var(--script);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-card .author-info strong {
  display: block;
  font-family: var(--heading);
  font-size: 0.9rem;
}
.testimonial-card .author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- About Preview --- */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-image .about-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.about-text h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.8;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- Final CTA --- */
.cta-section {
  background: linear-gradient(165deg, var(--card-bg), rgba(184, 108, 82, 0.05));
  text-align: center;
}
.cta-section h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-section p {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.cta-section .cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col ul a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
}

/* --- Page Header (subpages) --- */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(165deg, #F5F0E8, rgba(184, 108, 82, 0.06));
}
.page-header h1 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Angebote Subpage Sections --- */
.offer-hero {
  padding: 60px 0;
  text-align: center;
}
.offer-hero h2 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.offer-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.offer-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.offer-topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.offer-topic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.offer-topic-card h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.offer-topic-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.offer-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.offer-flow-item {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.offer-flow-item .flow-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.offer-flow-item .flow-num svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.offer-flow-item h4 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}
.offer-flow-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.offer-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.offer-checklist h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.offer-checklist ul {
  list-style: none;
}
.offer-checklist ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.offer-checklist .check::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transform: rotate(-45deg);
}
.offer-checklist .cross::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.1rem;
  color: #B86C52;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-card h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.pricing-card {
  display: flex;
  flex-direction: column;
}
.pricing-card .price {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary);
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 72px;
}
.pricing-card .price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-card .price-icon {
  min-height: 72px;
  margin: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-card .price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  min-height: 2.6em;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.pricing-card ul li {
  font-size: 0.88rem;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.pricing-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transform: translateY(-50%) rotate(-45deg);
}
.pricing-card .pricing-cta {
  display: inline-block;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  transition: background 0.2s;
}
.pricing-card .pricing-cta:hover {
  background: var(--primary-hover);
  color: var(--white);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}
.contact-info .contact-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}
.contact-info .ci-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-info .ci-row strong {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.contact-info .ci-value {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}
.contact-info .ci-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-family: var(--heading);
  font-weight: 500;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 108, 82, 0.15);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .submit-btn {
  width: 100%;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form .submit-btn:hover {
  background: var(--accent-hover);
}

/* --- About Page --- */
.about-page-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
}
.about-page-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}
.about-page-image .about-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.about-page-content h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.about-page-content h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--primary);
}
.about-page-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  color: var(--text-muted);
  font-size: 0.9rem;
  aspect-ratio: 16 / 9;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-body .blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--secondary-light);
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card-body h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.blog-card-body .blog-date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* --- Impressum --- */
.impressum-content {
  max-width: 640px;
  margin: 0 auto;
}
.impressum-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.impressum-content h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--text);
}

/* --- Animation Classes --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero {
    background-position: 80% center !important;
  }
  .target-block { padding: 8px 18px; }
  .process-grid-3 { gap: 20px; }
  .approach-haltung { flex-direction: column; padding: 28px 24px; }
  .approach-haltung .haltung-accent { width: 60px; min-height: 4px; align-self: flex-start; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .about-image { width: 200px; height: 200px; }
  .about-image .about-img { width: 182px; height: 182px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-topics { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-checklist { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; text-align: center; }
  .about-page-image { width: 200px; height: 200px; }
  .about-page-image .about-img { width: 182px; height: 182px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; max-width: 500px; margin: 32px auto 24px; }
  .personal-style-grid { grid-template-columns: 1fr; max-width: 500px; margin: 40px auto 0; }
  .executive-grid { grid-template-columns: 1fr; max-width: 500px; margin: 40px auto 0; }
  .starter-grid { grid-template-columns: 1fr; max-width: 500px; margin: 40px auto 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 96px 32px 32px;
    gap: 0;
    align-items: flex-start;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
    transition: right 0.3s;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    width: 100%;
    padding: 4px 0;
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-overlay.open { opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .hero {
    background-position: 80% center !important;
  }
  .hero-targets { flex-direction: column; gap: 0; }
  .hero-targets .divider { display: none; }
  .target-block { padding: 16px 0 16px 16px; margin-bottom: 12px; }
  .section { padding: 60px 0; }
  .process-grid-3 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .topics-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; max-width: 400px; margin: 32px auto 24px; }
  .personal-style-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
  .executive-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
  .starter-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
  .about-page-image { width: 180px; height: 180px; }
  .about-page-image .about-img { width: 164px; height: 164px; }
}
