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

:root {
  --primary: #2D3A3A;
  --primary-light: #3D5A5A;
  --accent: #C8962E;
  --accent-hover: #B5841F;
  --text: #1a1a1a;
  --text-light: #555;
  --text-muted: #777;
  --bg: #ffffff;
  --bg-alt: #F7F5F2;
  --bg-dark: #2D3A3A;
  --border: #e0dcd7;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== UTILITY ========== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.section-label {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
  line-height: 1.2; color: var(--primary); margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem; color: var(--text-light);
  max-width: 640px; line-height: 1.7;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; font-size: 1rem; font-weight: 600;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: all 0.2s ease; font-family: inherit;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,150,46,0.35);
}

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--bg-alt); transform: translateY(-1px); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}

.nav-logo svg.logo-house { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo .logo-text {
  font-size: 1.2rem; font-weight: 800; color: var(--primary);
  letter-spacing: 0.5px;
}
.nav-logo .logo-text span { font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-light); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

.nav-cta { padding: 10px 24px; font-size: 0.9rem; }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }

/* ========== HERO ========== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(160deg, #f8f6f3 0%, #eef1ee 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,150,46,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; }

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,58,58,0.08); padding: 8px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: #34C759; border-radius: 50%; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800;
  line-height: 1.15; color: var(--primary); margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }

.hero-desc {
  font-size: 1.15rem; color: var(--text-light); line-height: 1.7;
  margin-bottom: 36px; max-width: 500px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; }

.hero-card {
  background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 40px; position: relative;
}
.hero-card-logo { margin-bottom: 24px; }
.hero-card-logo svg { width: 56px; height: 48px; }

.hero-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.hero-card p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.6; }

.hero-schwerpunkte { display: flex; flex-direction: column; gap: 10px; }
.hero-sp-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: var(--bg-alt); border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--primary);
}
.hero-sp-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

.floating-badge {
  position: absolute; background: #fff; border-radius: var(--radius);
  padding: 14px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600;
}
.floating-badge.top-right { top: -20px; right: -20px; color: #34C759; }
.floating-badge.bottom-left { bottom: -16px; left: -16px; color: var(--accent); }

/* ========== TRUST BAR ========== */
.trust-bar { padding: 40px 0; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* ========== SCHWERPUNKTE (Services) ========== */
.schwerpunkt { background: var(--bg); }
.schwerpunkt.alt { background: var(--bg-alt); }

.sp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.sp-grid.reverse .sp-visual { order: -1; }

.sp-text .section-subtitle { margin-bottom: 28px; }

.sp-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.sp-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--text); line-height: 1.5;
}
.sp-feature svg {
  width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px;
}

.sp-highlight {
  background: var(--bg-alt); border-left: 3px solid var(--accent);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem; color: var(--text-light); line-height: 1.6;
}
.schwerpunkt.alt .sp-highlight { background: #fff; }

.sp-visual-card {
  background: #fff; border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.schwerpunkt.alt .sp-visual-card { background: var(--bg-alt); }

.sp-visual-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }

.sp-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sp-list li {
  font-size: 0.9rem; color: var(--text-light); padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.sp-list li:last-child { border-bottom: none; }
.sp-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}

/* ========== PRICING ========== */
.pricing { background: var(--bg-alt); }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-subtitle { margin: 0 auto; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 800px; margin: 0 auto 48px;
}

.price-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); transition: all 0.3s ease;
}
.price-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.price-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.price-card .price { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.price-card .price-unit { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.price-card .price-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

.pricing-note {
  text-align: center; max-width: 600px; margin: 0 auto;
  background: #fff; padding: 24px 32px; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.pricing-note p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.pricing-note strong { color: var(--primary); }

/* ========== PROCESS ========== */
.process { background: var(--bg); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-subtitle { margin: 0 auto; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after {
  content: ''; position: absolute; top: 32px; right: -16px;
  width: 32px; height: 2px; background: var(--border);
}

.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-alt); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.3rem; font-weight: 800;
  color: var(--primary); transition: all 0.3s ease;
}
.process-step:hover .step-number { background: var(--primary); color: #fff; border-color: var(--primary); }
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

/* ========== BLOG ========== */
.blog { background: var(--bg-alt); }
.blog-header { text-align: center; margin-bottom: 64px; }
.blog-header .section-subtitle { margin: 0 auto; }

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

.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-card-img {
  height: 180px; background: var(--primary); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img svg { width: 48px; height: 48px; color: var(--accent); opacity: 0.6; }
.blog-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: #fff; padding: 4px 12px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
}

.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--primary);
  margin-bottom: 12px; line-height: 1.4;
}
.blog-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.blog-card-body .read-more {
  margin-top: 16px; font-size: 0.88rem; font-weight: 600;
  color: var(--accent); display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; transition: gap 0.2s;
}
.blog-card-body .read-more:hover { gap: 10px; }

.blog-article {
  display: none; background: #fff; border-radius: var(--radius);
  padding: 48px; margin-top: 40px; border: 1px solid var(--border);
}
.blog-article.active { display: block; }
.blog-article h3 {
  font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 20px;
}
.blog-article h4 {
  font-size: 1.1rem; font-weight: 700; color: var(--primary);
  margin-top: 28px; margin-bottom: 12px;
}
.blog-article p {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 12px;
}
.blog-article ul {
  list-style: none; margin: 12px 0 16px 0; padding: 0;
}
.blog-article ul li {
  font-size: 0.92rem; color: var(--text-light); padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.blog-article ul li::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}
.blog-article .close-article {
  margin-top: 24px; padding: 10px 24px; font-size: 0.9rem;
  background: var(--bg-alt); color: var(--primary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; font-family: inherit; font-weight: 600;
  transition: all 0.2s;
}
.blog-article .close-article:hover { background: var(--primary); color: #fff; }

/* ========== CONTACT FORM ========== */
.contact { background: var(--bg); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-top: 24px; margin-bottom: 16px;
}
.contact-info p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex; align-items: center; gap: 14px; padding: 16px;
  background: var(--bg-alt); border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.contact-method:hover { background: #fff; box-shadow: var(--shadow); }
.contact-method-icon {
  width: 44px; height: 44px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-method-text { font-size: 0.9rem; }
.contact-method-text strong { color: var(--primary); display: block; margin-bottom: 2px; }
.contact-method-text span { color: var(--text-muted); font-size: 0.85rem; }

.contact-form-wrap {
  background: var(--bg-alt); border-radius: var(--radius); padding: 40px;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--primary); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.95rem;
  color: var(--text); background: #fff; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%; padding: 16px; font-size: 1rem; font-weight: 600;
  background: var(--accent); color: #fff; border: none;
  border-radius: var(--radius-sm); cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--accent-hover); }

.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ========== REGION ========== */
.region { background: var(--bg-alt); }

.region-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.region-text .section-subtitle { margin-bottom: 32px; }

.region-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.region-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.95rem; color: var(--text); font-weight: 500;
}
.region-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.region-visual { background: var(--primary); border-radius: var(--radius); padding: 48px; color: #fff; }
.region-visual h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.region-visual p { color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 24px; }

.region-highlight { display: flex; gap: 32px; }
.region-highlight-item { text-align: center; }
.region-highlight-item .number { font-size: 2rem; font-weight: 800; color: var(--accent); }
.region-highlight-item .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ========== FOOTER ========== */
.footer { background: #1E2C2C; padding: 48px 0 24px; }

.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; margin-top: 12px; }
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
}
.footer-brand .footer-logo svg { width: 32px; height: 28px; flex-shrink: 0; }
.footer-brand .footer-logo .logo-text {
  font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: 0.5px;
}
.footer-brand .footer-logo .logo-text span { font-weight: 400; color: rgba(255,255,255,0.7); }

.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg); z-index: 99; padding: 24px;
}
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--text); display: block; padding: 8px 0; }

/* ========== SUBPAGE HEADER ========== */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, #f8f6f3 0%, #eef1ee 100%);
}
.page-header .section-title { margin-bottom: 8px; }
.page-header .breadcrumb {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px;
}
.page-header .breadcrumb a { color: var(--accent); }
.page-header .breadcrumb a:hover { text-decoration: underline; }

/* ========== LEGAL / TEXT PAGES ========== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.3rem; font-weight: 700; color: var(--primary);
  margin-top: 40px; margin-bottom: 12px;
}
.legal-content h3 {
  font-size: 1.05rem; font-weight: 600; color: var(--primary);
  margin-top: 24px; margin-bottom: 8px;
}
.legal-content p {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 12px;
}
.legal-content ul { list-style: none; margin: 8px 0 16px; padding: 0; }
.legal-content ul li {
  font-size: 0.92rem; color: var(--text-light); padding: 3px 0;
  padding-left: 16px; position: relative;
}
.legal-content ul li::before {
  content: ''; width: 5px; height: 5px; background: var(--accent);
  border-radius: 50%; position: absolute; left: 0; top: 10px;
}
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--primary); }

/* ========== SERVICE DETAIL PAGE ========== */
.service-detail { background: var(--bg); }
.service-detail-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: start;
}
.service-detail-content h2 {
  font-size: 1.3rem; font-weight: 700; color: var(--primary);
  margin-top: 36px; margin-bottom: 12px;
}
.service-detail-content p {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 12px;
}
.service-detail-content ul { list-style: none; margin: 12px 0 20px; padding: 0; }
.service-detail-content ul li {
  font-size: 0.92rem; color: var(--text-light); padding: 6px 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.service-detail-content ul li::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}
.service-sidebar {
  position: sticky; top: 96px;
}
.sidebar-card {
  background: var(--bg-alt); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); margin-bottom: 24px;
}
.sidebar-card h4 {
  font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px;
}
.sidebar-card .price-item {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.sidebar-card .price-item:last-child { border-bottom: none; }
.sidebar-card .price-item .label { color: var(--text-light); }
.sidebar-card .price-item .value { font-weight: 700; color: var(--accent); }

/* ========== BLOG ARTICLE PAGE ========== */
.article-content { max-width: 760px; margin: 0 auto; }
.article-content .article-meta {
  display: flex; gap: 16px; margin-bottom: 32px; font-size: 0.85rem; color: var(--text-muted);
}
.article-content h2 {
  font-size: 1.4rem; font-weight: 700; color: var(--primary);
  margin-top: 40px; margin-bottom: 16px;
}
.article-content h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--primary);
  margin-top: 28px; margin-bottom: 12px;
}
.article-content p {
  font-size: 1rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px;
}
.article-content ul { list-style: none; margin: 12px 0 20px; padding: 0; }
.article-content ul li {
  font-size: 0.95rem; color: var(--text-light); padding: 5px 0;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.6;
}
.article-content ul li::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0; margin-top: 9px;
}
.article-cta {
  background: var(--bg-alt); border-radius: var(--radius); padding: 40px;
  text-align: center; margin-top: 48px; border: 1px solid var(--border);
}
.article-cta h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.article-cta p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }

.other-articles { margin-top: 64px; }
.other-articles h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }

/* Responsive additions for subpages */
@media (max-width: 968px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}
@media (max-width: 768px) {
  .page-header { padding: 110px 0 40px; }
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--accent), #E8B94E, var(--accent));
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  width: 0%; transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(200,150,46,0.6), 0 0 4px rgba(200,150,46,0.8);
}


/* ========== HERO PARTICLES CANVAS ========== */
.hero-particles {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ========== KEYFRAMES ========== */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(2deg); }
  66% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes draw-in {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(60px) scale(0.97); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(60px) scale(0.97); filter: blur(4px); }
  to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}


@keyframes morphBlob {
  0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: rotate(0deg); }
  25% { border-radius: 70% 30% 46% 54% / 30% 58% 42% 70%; }
  50% { border-radius: 30% 70% 55% 45% / 58% 30% 70% 42%; transform: rotate(180deg); }
  75% { border-radius: 55% 45% 30% 70% / 70% 42% 58% 30%; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}


/* ========== HERO ENHANCED ========== */
.hero {
  background: linear-gradient(160deg, #f8f6f3 0%, #eef1ee 40%, #f0ece6 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
}

/* Morphing blob background decoration */
.hero-blob {
  position: absolute; width: 500px; height: 500px;
  background: linear-gradient(135deg, rgba(200,150,46,0.06), rgba(45,58,58,0.04));
  animation: morphBlob 15s ease-in-out infinite;
  z-index: 0; pointer-events: none;
  filter: blur(40px);
}
.hero-blob-1 { top: -10%; right: -5%; }
.hero-blob-2 { bottom: -15%; left: -10%; width: 400px; height: 400px;
  animation-delay: -5s; animation-duration: 18s;
  background: linear-gradient(135deg, rgba(45,58,58,0.05), rgba(200,150,46,0.03));
}

/* Hero badge pulse dot */
.hero-badge .dot { position: relative; }
.hero-badge .dot::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border-radius: 50%;
  background: #34C759;
  animation: pulse-ring 2s ease-out infinite;
}

/* Hero stagger entrance - text mask style */
.hero-badge, .hero h1, .hero-desc, .hero-buttons { opacity: 0; }
.hero-badge.animate { animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero h1.animate { animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s forwards; }
.hero-desc.animate { animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s forwards; }
.hero-buttons.animate { animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.45s forwards; }
.hero-visual.animate { animation: fadeSlideRight 1s cubic-bezier(0.16,1,0.3,1) 0.25s forwards; opacity: 0; }


/* Hero card with glassmorphism + 3D */
.hero-card {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
  will-change: transform;
  transform-style: preserve-3d;
  backdrop-filter: blur(2px);
}
.hero-card:hover { box-shadow: 0 25px 70px rgba(0,0,0,0.18); }

/* Floating badges enhanced */
.floating-badge { animation: float 5s ease-in-out infinite; }
.floating-badge.top-right { animation-delay: 0s; }
.floating-badge.bottom-left { animation-delay: 2s; }

/* ========== SVG LOGO DRAW ANIMATION ========== */
.nav-logo svg.logo-house path,
.nav-logo svg.logo-house rect,
.nav-logo svg.logo-house line {
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: draw-in 1.5s ease forwards;
}
.nav-logo svg.logo-house path:nth-child(2) { animation-delay: 0.2s; }
.nav-logo svg.logo-house path:nth-child(3) { animation-delay: 0.4s; }
.nav-logo svg.logo-house path:nth-child(4) { animation-delay: 0.6s; }
.nav-logo svg.logo-house rect { animation-delay: 0.8s; }
.nav-logo svg.logo-house line:nth-of-type(1) { animation-delay: 1s; }
.nav-logo svg.logo-house line:nth-of-type(2) { animation-delay: 1.1s; }

/* ========== NAV LINK UNDERLINE ========== */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1), left 0.3s cubic-bezier(0.16,1,0.3,1);
  border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; left: 0; }

/* ========== MARQUEE TICKER ========== */
.marquee-section {
  overflow: hidden; padding: 20px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 40px; font-size: 0.95rem; font-weight: 600;
  color: var(--primary); white-space: nowrap;
  opacity: 0.6; transition: opacity 0.3s;
}
.marquee-item:hover { opacity: 1; }
.marquee-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.marquee-divider {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0; opacity: 0.4;
}

/* ========== BUTTON EFFECTS ========== */
.btn { position: relative; overflow: hidden; }
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

/* Button glow + border animation */
.btn-primary { position: relative; z-index: 1; }
.btn-primary::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, var(--accent), #E8B94E, var(--accent));
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  opacity: 0; transition: opacity 0.4s;
  filter: blur(10px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,46,0.4);
}


/* ========== ENHANCED SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.from-bottom { transform: translateY(60px); }
.reveal.from-left { transform: translateX(-60px); }
.reveal.from-right { transform: translateX(60px); }
.reveal.from-scale { transform: scale(0.85); }
.reveal.from-rotate { transform: rotate(-3deg) translateY(30px); }
.reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) rotate(0) !important;
}

/* ========== 3D CARD TILT ========== */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tilt-card .tilt-shine {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none; z-index: 2;
}
.tilt-card:hover .tilt-shine { opacity: 1; }

/* ========== PRICE CARDS ENHANCED ========== */
.price-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
/* Gradient border on hover via pseudo-element */
.price-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, transparent, var(--accent), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.5s;
}
.price-card:hover::before { opacity: 1; }
.price-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ========== PROCESS STEPS ENHANCED ========== */
.step-number {
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.process-step:hover .step-number {
  transform: scale(1.15) rotate(5deg);
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(45,58,58,0.25);
}
.process-step:not(:last-child)::after {
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* ========== BLOG CARDS ENHANCED ========== */
.blog-card {
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0,0,0,0.14);
}
.blog-card-img { overflow: hidden; }
.blog-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,150,46,0.25) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.5s;
}
.blog-card:hover .blog-card-img::after { opacity: 1; }
.blog-card-img svg { transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.blog-card:hover .blog-card-img svg {
  transform: scale(1.3) rotate(8deg); opacity: 0.9;
}

/* ========== SP VISUAL CARD ENHANCED ========== */
.sp-visual-card {
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.sp-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* ========== SP HIGHLIGHT ANIMATED BORDER ========== */
.sp-highlight { position: relative; transition: all 0.3s ease; }
.sp-highlight::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 3px; height: 0; background: var(--accent);
  transition: height 0.8s cubic-bezier(0.16,1,0.3,1);
}
.sp-highlight.revealed::before { height: 100%; }

/* ========== CONTACT FORM FOCUS GLOW ========== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,150,46,0.12), 0 0 20px rgba(200,150,46,0.06);
}

/* ========== REGION VISUAL ENHANCED ========== */
.region-visual { position: relative; overflow: hidden; }
.region-visual::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(200,150,46,0.08) 0%, transparent 50%);
  animation: gradientShift 8s ease infinite;
}

/* Counter number animation */
.region-highlight-item .number {
  display: inline-block; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.region-highlight-item:hover .number {
  transform: scale(1.2);
  text-shadow: 0 0 30px rgba(200,150,46,0.5);
}

/* ========== TRUST BAR ENHANCED ========== */
.trust-item {
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  padding: 8px 16px; border-radius: var(--radius-sm);
}
.trust-item:hover {
  background: var(--bg-alt); transform: translateY(-3px) scale(1.02);
}
.trust-item svg { transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.trust-item:hover svg { transform: scale(1.3) rotate(8deg); }



/* ========== PARALLAX LAYER ========== */
.parallax-shape {
  position: absolute; pointer-events: none; opacity: 0.06;
  will-change: transform;
}

/* ========== SECTION DIVIDERS ========== */
.section-divider {
  height: 60px; overflow: hidden; line-height: 0;
  margin-top: -1px;
}
.section-divider svg {
  display: block; width: 100%; height: 100%;
}

/* ========== SP IMAGE CARD ========== */
.sp-image-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius); padding: 48px;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px; margin-bottom: 24px;
  position: relative; overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.sp-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(45,58,58,0.2);
}
.sp-image-card svg {
  width: 80px; height: 80px; color: var(--accent); opacity: 0.85;
  position: relative; z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.sp-image-card:hover svg {
  transform: scale(1.1) rotate(3deg);
}
.sp-image-card::before {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(200,150,46,0.1);
  top: -30%; right: -10%;
}
.sp-image-card::after {
  content: ''; position: absolute;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -20%; left: -5%;
}
.sp-image-card .sp-image-label {
  position: absolute; bottom: 20px; left: 24px;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  z-index: 1;
}
.schwerpunkt.alt .sp-image-card {
  background: linear-gradient(135deg, #3D5A5A 0%, #4A6B6B 100%);
}

/* Image-based SP cards */
.sp-image-card.has-image {
  padding: 0; background: none;
}
.sp-image-card.has-image::before,
.sp-image-card.has-image::after { display: none; }
.sp-image-card.has-image img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); min-height: 220px;
  display: block;
}
.sp-image-card.has-image .sp-image-label {
  background: rgba(0,0,0,0.55); padding: 6px 16px;
  border-radius: 4px; backdrop-filter: blur(4px);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-badge, .hero h1, .hero-desc, .hero-buttons, .hero-visual { opacity: 1 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-particles { display: none !important; }
  .marquee-track { animation: none !important; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .hero-grid, .sp-grid, .contact-grid, .region-content { grid-template-columns: 1fr; gap: 40px; }
  .sp-grid.reverse .sp-visual { order: 0; }
  .hero-visual { max-width: 480px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-step:not(:last-child)::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 120px 0 72px; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .trust-items { gap: 24px; }
  .floating-badge { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .region-list { grid-template-columns: 1fr; }
  .region-highlight { flex-direction: column; gap: 16px; }
  .blog-article { padding: 28px; }
  .contact-form-wrap { padding: 28px; }
}
