/* ========================================
   CKsites – Style
   Handwerklich & warm
   ======================================== */

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

:root {
  --bg: #F5F0E8;
  --surface: #FFFDF7;
  --dark: #1C1A14;
  --brown: #6B4C2A;
  --amber: #D4860B;
  --muted: #7A7060;
  --border: #DDD5C0;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1140px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(28, 26, 20, 0.06);
  --shadow-hover: 0 4px 20px rgba(28, 26, 20, 0.10);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: var(--amber);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brown);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

section {
  padding: 5rem 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-body);
  text-align: center;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}

.btn-secondary:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 16px rgba(28, 26, 20, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.5px;
}

.logo:hover {
  color: var(--amber);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--amber);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  padding: 10rem 0 5rem;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero--styled {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 134, 11, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(107, 76, 42, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(212, 134, 11, 0.08) 0%, transparent 50%),
    linear-gradient(160deg, #1C1A14 0%, #2a2520 40%, #1C1A14 100%);
  border-bottom: none;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero--styled .container {
  position: relative;
  z-index: 2;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-pattern svg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.06;
}

.hero--styled h1 {
  color: #fff;
}

.hero--styled .subline {
  color: rgba(255, 255, 255, 0.75);
}

.hero--styled .btn-secondary {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero--styled .btn-secondary:hover {
  background: #fff;
  color: var(--brown);
  border-color: #fff;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero .subline {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Sections --- */
.section-dark {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.card-illustration {
  width: calc(100% + 4rem);
  height: 180px;
  margin: -2rem -2rem 1.5rem -2rem;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-illustration--website {
  background: linear-gradient(135deg, #1C1A14 0%, #2a2520 100%);
}

.card-illustration--seo {
  background: linear-gradient(135deg, #2a2520 0%, #3d3225 100%);
}

.card-illustration--wartung {
  background: linear-gradient(135deg, #362a1e 0%, #1C1A14 100%);
}

.card-illustration svg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.card:hover .card-illustration svg {
  transform: scale(1.05);
}

.card h3 {
  color: var(--dark);
}

.card p {
  font-size: 0.95rem;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border-color: var(--amber);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

/* Additional pricing */
.pricing-addons {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.pricing-addons h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

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

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.addon-item strong {
  color: var(--amber);
  white-space: nowrap;
}

/* --- Problem Section --- */
.problem-section {
  text-align: center;
}

.problem-section .problem-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Steps / Ablauf --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--amber);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
}

/* --- Kundenstimmen / Trust --- */
.trust-section {
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.trust-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.trust-quote::before {
  content: '\201E';
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.trust-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.trust-role {
  color: var(--muted);
  font-size: 0.85rem;
}

/* --- WhatsApp Button --- */
.wa-trigger {
  position: fixed;
  bottom: 2rem;
  right: 7.5rem;
  z-index: 900;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
  text-decoration: none;
}

.wa-trigger:hover {
  background: #1DA851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* --- Referenzen --- */
.referenzen-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.referenzen-card p {
  color: var(--muted);
  font-style: italic;
}

.referenzen-card--live {
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  border-color: var(--amber);
  border-width: 2px;
  padding: 0;
  overflow: hidden;
}

.referenzen-card--live p {
  font-style: normal;
}

.referenzen-mockup {
  width: 100%;
  background: #1C1A14;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.referenzen-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #2a2520;
}

.referenzen-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.referenzen-mockup-dot:first-child { background: #ff5f57; }
.referenzen-mockup-dot:nth-child(2) { background: #ffbd2e; }
.referenzen-mockup-dot:nth-child(3) { background: #28c840; }

.referenzen-mockup-url {
  margin-left: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
}

.referenzen-mockup-content {
  padding: 1.5rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 134, 11, 0.08) 0%, transparent 60%),
    #1C1A14;
}

.referenzen-mockup-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
}

.referenzen-mockup-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

.referenzen-card-body {
  position: relative;
  padding: 1.5rem 2rem 2rem;
}

.referenzen-badge {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.referenzen-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.referenzen-type {
  font-size: 0.85rem;
  color: var(--amber) !important;
  font-weight: 500;
  font-style: normal !important;
  margin-bottom: 0.75rem !important;
}

.referenzen-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber);
  margin-top: 0.25rem;
}

.referenzen-link:hover {
  color: var(--brown);
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  background: var(--brown);
  padding: 4rem 0;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-section .btn-primary {
  background: var(--amber);
}

.cta-section .btn-primary:hover {
  background: #fff;
  color: var(--brown);
}

/* --- About / Über mich --- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 350px;
}

.about-image--placeholder {
  background: linear-gradient(135deg, var(--brown) 0%, var(--amber) 100%);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  padding: 2rem;
}

.about-image--placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.about-image--placeholder p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  text-align: center;
}

.about-intro {
  max-width: 720px;
}

.about-intro .subline {
  font-size: 1.1rem;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* --- Contact / Kontakt --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--bg);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.contact-method:hover {
  border-color: var(--amber);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--amber);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--amber);
  transition: transform var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  list-style: disc;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.legal-notice {
  background: var(--bg);
  border-left: 3px solid var(--amber);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
}

.legal-notice p {
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }

/* --- Page Header (sub-pages) --- */
.page-header {
  padding: 8rem 0 3rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header--styled {
  padding: 10rem 0 4rem;
  border-bottom: none;
}

.page-header--styled .container {
  position: relative;
  z-index: 2;
}

.page-header--styled h1 {
  color: #fff;
}

.page-header--styled .subline {
  color: rgba(255, 255, 255, 0.7);
}

.page-header--leistungen {
  background:
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(212, 134, 11, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 70%, rgba(107, 76, 42, 0.10) 0%, transparent 50%),
    linear-gradient(150deg, #1C1A14 0%, #2a2520 60%, #1C1A14 100%);
}

.page-header--ueber-mich {
  background:
    radial-gradient(ellipse 60% 70% at 30% 40%, rgba(212, 134, 11, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 60%, rgba(107, 76, 42, 0.08) 0%, transparent 50%),
    linear-gradient(170deg, #2a2520 0%, #1C1A14 100%);
}

.page-header--kontakt {
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(212, 134, 11, 0.10) 0%, transparent 60%),
    linear-gradient(140deg, #1C1A14 0%, #2a2520 50%, #1C1A14 100%);
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header .subline {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.85rem 5%;
    width: 100%;
  }

  .hero {
    padding: 7rem 0 3.5rem;
  }

  .hero--styled {
    min-height: 70vh;
    padding: 8rem 0 4rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .cards-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wa-trigger {
    bottom: 1rem;
    right: 5rem;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .about-image--placeholder {
    min-height: 250px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .pricing-addons {
    padding: 1.5rem;
  }

  .addon-grid {
    grid-template-columns: 1fr;
  }

  .card-illustration {
    height: 140px;
  }

  .page-header--styled {
    padding: 8rem 0 3rem;
  }
}

/* --- Konfigurator Overlay --- */
.cfg-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(212, 134, 11, 0.35);
  transition: all var(--transition);
  animation: cfg-pulse 3s ease-in-out infinite;
}

.cfg-trigger:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 76, 42, 0.4);
  animation: none;
}

.cfg-trigger-icon {
  font-size: 1.2rem;
  line-height: 1;
}

@keyframes cfg-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 134, 11, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(212, 134, 11, 0.55); }
}

.cfg-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(28, 26, 20, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.cfg-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cfg-modal {
  background: var(--surface);
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(28, 26, 20, 0.2);
}

.cfg-overlay.open .cfg-modal {
  transform: translateY(0) scale(1);
}

.cfg-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 1;
}

.cfg-close:hover {
  background: var(--border);
  color: var(--dark);
}

/* Progress bar */
.cfg-progress {
  padding: 1.5rem 2rem 0;
}

.cfg-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.cfg-progress-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.cfg-progress-text {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Step content */
.cfg-body {
  padding: 1.5rem 2rem 2rem;
}

.cfg-step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cfg-step-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Options */
.cfg-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.cfg-option {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cfg-option:hover {
  border-color: var(--amber);
  background: #fff;
}

.cfg-option.selected {
  border-color: var(--amber);
  background: #FFF8EE;
}

.cfg-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cfg-option.selected .cfg-option-radio {
  border-color: var(--amber);
}

.cfg-option.selected .cfg-option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
}

.cfg-option-content {
  flex: 1;
}

.cfg-option-label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.cfg-option-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Sonstiges input */
.cfg-custom-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  background: #fff;
  color: var(--dark);
}

.cfg-custom-input:focus {
  outline: none;
  border-color: var(--amber);
}

/* Hint box */
.cfg-hint {
  background: #FFF8EE;
  border-left: 3px solid var(--amber);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1rem;
}

.cfg-hint p {
  font-size: 0.85rem;
  color: var(--brown);
  margin: 0;
  line-height: 1.5;
}

/* Navigation */
.cfg-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cfg-back {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color var(--transition);
}

.cfg-back:hover {
  color: var(--dark);
}

.cfg-back.hidden {
  visibility: hidden;
}

/* Result card */
.cfg-result {
  background: var(--bg);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.cfg-result-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cfg-result-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.cfg-result-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 1rem;
}

.cfg-result-features {
  margin-bottom: 0;
}

.cfg-result-features li {
  padding: 0.25rem 0;
  padding-left: 1.3rem;
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
}

.cfg-result-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

.cfg-addons {
  margin-top: 1rem;
}

.cfg-addon-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.cfg-addon-item:last-child {
  border-bottom: none;
}

.cfg-addon-item span:last-child {
  font-weight: 600;
  color: var(--amber);
}

/* Contact form inside configurator */
.cfg-form .form-group {
  margin-bottom: 1rem;
}

.cfg-form .form-group label {
  font-size: 0.85rem;
}

.cfg-form .form-group input,
.cfg-form .form-group textarea {
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

.cfg-form .form-group textarea {
  min-height: 80px;
}

/* Success state */
.cfg-success {
  text-align: center;
  padding: 2rem 0;
}

.cfg-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cfg-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.cfg-success p {
  color: var(--muted);
}

/* Responsive for configurator */
@media (max-width: 768px) {
  .cfg-trigger {
    bottom: 1rem;
    right: 1rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
  }

  .cfg-trigger-label {
    display: none;
  }

  .cfg-trigger {
    border-radius: 50%;
    padding: 1rem;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .cfg-trigger-icon {
    font-size: 1.4rem;
  }

  .cfg-modal {
    max-height: 95vh;
    border-radius: 12px;
  }

  .cfg-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .cfg-progress {
    padding: 1.25rem 1.5rem 0;
  }

  .cfg-step-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  h1 {
    font-size: 1.75rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}
