/* ═══════════════════════════════════════════════════════
   ACCLARO – Shared Stylesheet
   Gilt für: acclaro.html · impressum.html · agb.html
   ═══════════════════════════════════════════════════════ */

/* ── LOCAL FONTS ─────────────────────────────────── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./Font/CormorantGaramond-Light.ttf') format('woff2'),
       url('./Font/CormorantGaramond-Light.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./Font/CormorantGaramond-LightItalic.ttf') format('woff2'),
       url('./Font/CormorantGaramond-LightItalic.woff') format('woff');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./Font/CormorantGaramond-Regular.ttf') format('woff2'),
       url('./Font/CormorantGaramond-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./Font/CormorantGaramond-Italic.ttf') format('woff2'),
       url('./Font/CormorantGaramond-Italic.woff') format('woff');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./Font/CormorantGaramond-SemiBold.ttf') format('woff2'),
       url('./Font/CormorantGaramond-SemiBold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./Font/CormorantGaramond-SemiBoldItalic.ttf') format('woff2'),
       url('./Font/CormorantGaramond-SemiBoldItalic.woff') format('woff');
  font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('./Font/Barlow-Light.ttf') format('woff2'),
       url('./Font/Barlow-Light.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('./Font/Barlow-Regular.ttf') format('woff2'),
       url('./Font/Barlow-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('./Font/Barlow-Medium.ttf') format('woff2'),
       url('./Font/Barlow-Medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('./Font/Barlow-SemiBold.ttf') format('woff2'),
       url('./Font/Barlow-SemiBold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}

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

:root {
  --ink:          #0f1e2e;
  --ink2:         #2a3d52;
  --muted:        #7a8fa3;
  --rule:         #ccd8e2;
  --paper:        #f0f5f9;
  --white:        #ffffff;
  --accent:       #1a6faa;
  --accent-light: #2e8fd4;
  --accent2:      #e0edf6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ──────────────────────────────────────── */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease; opacity: 0.5;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 1.25rem 4rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s;
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo img { height: 36px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink);
}
.logo-sub {
  font-size: 0.56rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}
.nav-links { display: flex; gap: 2.5rem; margin-left: auto; list-style: none; }
.nav-links a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  margin-left: 2.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  background: var(--accent); padding: 0.65rem 1.5rem;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--ink); }
.nav-back {
  margin-left: auto;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--accent); }
.nav-back::before { content: '←'; font-size: 0.9rem; }

/* ── SHARED ELEMENTS ─────────────────────────────── */
section { padding: 8rem 4rem; }

.label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.label::before { content:''; display:block; width:24px; height:1px; background: var(--accent); }

h1, h2 { font-family: 'Cormorant Garamond', serif; line-height: 1.05; }
h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300;
  letter-spacing: -0.01em; color: var(--ink);
}
h2 em { font-style: italic; color: var(--accent-light); }

.btn-primary {
  background: var(--accent); color: var(--white);
  padding: 1rem 2.2rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--ink); }

.btn-text {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--ink2); text-decoration: none;
  border-bottom: 1px solid var(--rule); padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-text:hover { color: var(--accent); border-color: var(--accent); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; letter-spacing: 0.05em;
}
footer a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--accent-light); }
.footer-links { display: flex; gap: 2rem; }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes slideIn {
  from { opacity:0; transform: translateX(30px); }
  to   { opacity:1; transform: translateX(0); }
}
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════════════════════════
   ACCLARO.HTML – Startseite
   ════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding-top: 10rem; padding-bottom: 6rem;
  position: relative; overflow: hidden; gap: 4rem;
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.4;
}
.hero-bg-block {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%; z-index: 0;
  background: linear-gradient(160deg, var(--paper) 0%, var(--accent2) 100%);
}
.hero-left { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--rule);
  padding: 0.4rem 0.9rem; margin-bottom: 2rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink2);
}
.hero-tag span { color: var(--accent); }
h1 {
  font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 1.5rem;
}
h1 em { font-style: italic; color: var(--accent-light); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: var(--ink2);
  line-height: 1.75; max-width: 440px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; }
.hero-right { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1rem; }
.hero-card {
  background: var(--white); border: 1px solid var(--rule);
  padding: 1.5rem 1.75rem;
  display: flex; align-items: flex-start; gap: 1.25rem;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: slideIn 0.7s ease both;
}
.hero-card:hover { transform: translateX(-4px); box-shadow: 6px 6px 0 var(--rule); }
.hero-card:nth-child(1) { animation-delay: 0.1s; }
.hero-card:nth-child(2) { animation-delay: 0.2s; }
.hero-card:nth-child(3) { animation-delay: 0.3s; }
.card-icon {
  width: 40px; height: 40px; background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hero-card h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.3rem; }
.hero-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ── NUMBERS ─────────────────────────────────────── */
#numbers {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  color: var(--white); padding: 4rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.num-item { padding: 2rem; border-right: 1px solid rgba(255,255,255,0.12); }
.num-item:last-child { border-right: none; }
.num-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--white);
  line-height: 1; margin-bottom: 0.4rem;
}
.num-val small { font-size: 1.2rem; color: rgba(255,255,255,0.6); }
.num-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* ── FEATURES ────────────────────────────────────── */
#features { background: var(--white); }
.features-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  margin-bottom: 4rem; align-items: end;
}
.features-intro { font-size: 0.95rem; color: var(--ink2); line-height: 1.8; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--rule);
}
.feature-item {
  padding: 2.5rem; border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s; position: relative; overflow: hidden;
}
.feature-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.feature-item:hover { background: var(--paper); }
.feature-item:hover::after { transform: scaleX(1); }
.feature-item:nth-child(3n) { border-right: none; }
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 300; color: var(--rule);
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.feature-item h3 {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 0.75rem; color: var(--ink);
}
.feature-item p { font-size: 0.85rem; color: var(--ink2); line-height: 1.7; }

/* ── MODULES ─────────────────────────────────────── */
#module {
  background: var(--paper);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
}
.module-left {
  padding: 8rem 4rem; display: flex; flex-direction: column; justify-content: center;
}
.module-right {
  background: linear-gradient(160deg, var(--ink) 0%, var(--accent) 100%);
  padding: 8rem 4rem; display: flex; flex-direction: column; justify-content: center;
}
.module-right .label { color: rgba(255,255,255,0.45); }
.module-right .label::before { background: rgba(255,255,255,0.3); }
.module-right h2 { color: var(--white); margin-bottom: 2rem; }
.module-right h2 em { color: rgba(255,255,255,0.65); }
.module-list { list-style: none; margin-top: 2rem; }
.module-list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--rule);
  font-size: 0.875rem; color: var(--ink2); transition: color 0.2s;
}
.module-list li:hover { color: var(--accent); }
.module-list li::before {
  content: ''; display: block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.module-spec {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem;
}
.spec-item {
  padding: 1.25rem; border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.2s;
}
.spec-item:hover { border-color: rgba(255,255,255,0.4); }
.spec-item h4 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.4rem;
}
.spec-item p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ── AI ──────────────────────────────────────────── */
#ai { background: var(--white); text-align: center; }
.ai-inner { max-width: 700px; margin: 0 auto; }
.ai-inner .label { justify-content: center; }
.ai-inner .label::before { display: none; }
.ai-inner h2 { margin-bottom: 1.25rem; }
.ai-inner > p { font-size: 1rem; color: var(--ink2); line-height: 1.8; margin-bottom: 2.5rem; }
.ai-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
  margin-bottom: 3rem; text-align: left;
}
.ai-feat { background: var(--white); padding: 1.75rem; transition: background 0.2s; }
.ai-feat:hover { background: var(--paper); }
.ai-feat-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.ai-feat h4 {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 0.4rem;
}
.ai-feat p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── MANUFAKTUR USP ──────────────────────────────── */
#manufaktur {
  background: var(--ink);
  padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative; overflow: hidden;
}
#manufaktur::before {
  content: 'MANUFAKTUR';
  position: absolute; bottom: -2rem; right: -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14vw; font-weight: 600; line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.manufaktur-left {
  padding: 8rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.manufaktur-left .label { color: var(--accent-light); }
.manufaktur-left .label::before { background: var(--accent-light); }
.manufaktur-left h2 { color: var(--white); margin-bottom: 1.5rem; }
.manufaktur-left h2 em { color: var(--accent-light); }
.manufaktur-left > p {
  font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.85;
  max-width: 480px; margin-bottom: 3rem;
}
.manufaktur-pillars {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.pillar {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s;
  position: relative; overflow: hidden;
}
.pillar:last-child { border-bottom: none; }
.pillar::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--accent-light);
  transform: scaleY(0); transform-origin: top; transition: transform 0.3s;
}
.pillar:hover { background: rgba(255,255,255,0.04); }
.pillar:hover::before { transform: scaleY(1); }
.pillar-icon {
  font-size: 1.3rem; flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}
.pillar h4 {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--white); margin-bottom: 0.35rem;
}
.pillar p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.manufaktur-right {
  padding: 8rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.manufaktur-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.9); line-height: 1.5;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent-light);
}
.manufaktur-steps { display: flex; flex-direction: column; gap: 0; }
.mstep {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.25rem; align-items: start;
  padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mstep:last-child { border-bottom: none; }
.mstep-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: rgba(255,255,255,0.15);
  line-height: 1; text-align: center; padding-top: 0.1rem;
}
.mstep h4 {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--white); margin-bottom: 0.35rem;
}
.mstep p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────── */
#testimonials { background: var(--paper); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.testi {
  background: var(--white); padding: 2rem; border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testi:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; font-weight: 300;
  color: var(--ink2); line-height: 1.7;
}
.testi-author {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.1em; }

/* ── PRICING ─────────────────────────────────────── */
#pricing { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--rule); margin-top: 3rem;
}
.price-card {
  padding: 3rem 2.5rem; border-right: 1px solid var(--rule);
  transition: background 0.25s; position: relative;
}
.price-card:last-child { border-right: none; }
.price-card.featured {
  background: linear-gradient(160deg, var(--ink) 0%, var(--accent) 100%);
  color: var(--white);
}
.price-card.featured .price-sub  { color: rgba(255,255,255,0.55); }
.price-card.featured .price-name { color: rgba(255,255,255,0.45); }
.price-card.featured .price-val  { color: var(--white); }
.price-card.featured .price-list li {
  color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.1);
}
.price-card.featured .price-list li::before { color: rgba(255,255,255,0.5); }
.price-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--accent-light); color: var(--white);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.25rem 0.65rem;
}
.price-name {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem;
}
.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; line-height: 1;
  margin-bottom: 0.25rem; color: var(--ink);
}
.price-val small { font-size: 1rem; }
.price-sub { font-size: 0.75rem; color: var(--muted); margin-bottom: 2rem; }
.price-list { list-style: none; margin-bottom: 2.5rem; }
.price-list li {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--rule);
  font-size: 0.82rem; color: var(--ink2);
}
.price-list li::before { content: '—'; color: var(--accent); font-size: 0.7rem; }
.btn-outline {
  display: inline-block; width: 100%; text-align: center;
  padding: 0.9rem; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--accent); color: var(--accent);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.price-card.featured .btn-outline {
  border-color: rgba(255,255,255,0.5); color: var(--white);
  background: rgba(255,255,255,0.1);
}
.price-card.featured .btn-outline:hover { background: var(--white); color: var(--ink); }

/* ── CTA ─────────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  text-align: center; padding: 8rem 4rem;
  position: relative; overflow: hidden;
}
#cta::before {
  content: 'ACCLARO';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw; font-weight: 600;
  color: rgba(255,255,255,0.03);
  white-space: nowrap; pointer-events: none; user-select: none;
}
#cta .label { color: rgba(255,255,255,0.4); justify-content: center; }
#cta .label::before { background: rgba(255,255,255,0.3); }
#cta h2 { color: var(--white); max-width: 600px; margin: 0 auto 1.25rem; }
#cta h2 em { color: rgba(255,255,255,0.7); }
#cta > p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; align-items: center; }
.btn-white {
  background: var(--white); color: var(--ink);
  padding: 1rem 2.5rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--accent-light); color: var(--white); }
.btn-ghost-white {
  border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.75);
  padding: 1rem 2.5rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-white:hover { border-color: var(--white); color: var(--white); }


/* ════════════════════════════════════════════════════
   IMPRESSUM.HTML & AGB.HTML – Unterseiten
   ════════════════════════════════════════════════════ */

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  padding: 12rem 4rem 5rem;
  background: linear-gradient(160deg, var(--paper) 0%, var(--accent2) 100%);
  border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.4;
}
.page-hero-inner { position: relative; z-index: 1; }
.hero-sub-small {
  font-size: 0.95rem; color: var(--muted); margin-top: 1rem; font-weight: 300;
}

/* ── IMPRESSUM CARDS ─────────────────────────────── */
.imprint-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 4rem;
}
.imprint-card {
  background: var(--paper); border: 1px solid var(--rule);
  padding: 2rem 2.25rem; position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.imprint-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.imprint-card:hover { border-color: var(--accent-light); transform: translateY(-2px); }
.imprint-card:hover::after { transform: scaleX(1); }
.imprint-card .card-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.imprint-card .card-label::before {
  content: ''; display: block; width: 16px; height: 1px; background: var(--accent);
}
.imprint-card p { font-size: 0.9rem; color: var(--ink2); line-height: 1.9; }
.imprint-card p strong { font-weight: 600; color: var(--ink); display: block; margin-bottom: 0.1rem; }
.imprint-card a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.imprint-card a:hover { border-bottom-color: var(--accent); }
.imprint-card.full { grid-column: 1 / -1; }

/* ── LEGAL SECTIONS (Impressum) ──────────────────── */
.legal-section { border-top: 1px solid var(--rule); padding-top: 2.5rem; margin-top: 2.5rem; }
.legal-section h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 1rem;
}
.legal-section p { font-size: 0.875rem; color: var(--ink2); line-height: 1.8; }
.legal-section p + p { margin-top: 0.75rem; }

/* ── AGB LAYOUT ──────────────────────────────────── */
.page-body {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 0; max-width: 1100px;
  margin: 0 auto; padding: 5rem 4rem 8rem;
  align-items: start;
}
.toc { position: sticky; top: 7rem; padding-right: 3rem; }
.toc-title {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.toc-title::before { content:''; display:block; width:16px; height:1px; background: var(--muted); }
.toc ul { list-style: none; }
.toc ul li { margin-bottom: 0.1rem; }
.toc ul li a {
  font-size: 0.78rem; color: var(--muted); text-decoration: none;
  padding: 0.4rem 0.6rem; display: block; border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  border-radius: 0 4px 4px 0;
}
.toc ul li a:hover { color: var(--accent); border-left-color: var(--accent); background: var(--paper); }
.toc ul li a.active { color: var(--accent); border-left-color: var(--accent); font-weight: 600; }
.agb-content { min-width: 0; }
.agb-section { padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid var(--rule); }
.agb-section:last-of-type { border-bottom: none; }
.section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--rule);
  line-height: 1; margin-bottom: 0.5rem;
}
.agb-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--ink); margin-bottom: 1.25rem; line-height: 1.2;
}
.agb-section p { font-size: 0.875rem; color: var(--ink2); line-height: 1.9; margin-bottom: 0.9rem; }
.agb-section p:last-child { margin-bottom: 0; }

/* ── DOWNLOAD BOX (AGB) ──────────────────────────── */
.download-box {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.download-box-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; color: var(--white); margin-bottom: 0.35rem;
}
.download-box-text p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.btn-download {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--white); color: var(--ink);
  padding: 0.9rem 2rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.btn-download:hover { background: var(--accent-light); color: var(--white); }
.btn-download svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── CONTENT WRAPPER (Impressum) ─────────────────── */
.content { max-width: 860px; margin: 0 auto; padding: 6rem 4rem 8rem; }


/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 5rem 1.5rem; }
  #hero { grid-template-columns: 1fr; padding-top: 8rem; }
  .hero-bg-block { display: none; }
  #numbers { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem; }
  .num-item:nth-child(2) { border-right: none; }
  .features-header { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; }
  #module { grid-template-columns: 1fr; }
  .module-left, .module-right { padding: 5rem 1.5rem; }
  #manufaktur { grid-template-columns: 1fr; }
  .manufaktur-left, .manufaktur-right { padding: 5rem 1.5rem; }
  .ai-features { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; border-bottom: 1px solid var(--rule); }
  #cta { padding: 5rem 1.5rem; }
  .cta-actions { flex-direction: column; }
  footer { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .page-hero { padding: 9rem 1.5rem 3.5rem; }
  .content { padding: 3.5rem 1.5rem 5rem; }
  .imprint-grid { grid-template-columns: 1fr; }
  .page-body { grid-template-columns: 1fr; padding: 3rem 1.5rem 5rem; }
  .toc { display: none; }
  .download-box { flex-direction: column; align-items: flex-start; padding: 2rem; }
}
