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

:root {
  --bg: #f9f6f1;
  --fg: #141413;
  --accent: #c8392b;
  --sage: #8a9199;
  --sage-light: #d4d9df;
  --surface: #ffffff;
  --surface-2: #f2ede7;
  --code-bg: #0f1117;
  --code-fg: #e8e4df;
  --code-ok: #4ade80;
  --code-run: #f59e0b;
  --code-wait: #60a5fa;
  --code-muted: #4a5568;
  --radius: 6px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { line-height: 1.15; font-weight: 400; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  background: rgba(249, 246, 241, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138, 145, 153, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--sage-light);
  padding: 2px 8px;
  border-radius: 20px;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -100px;
  right: 5%;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: #d97706;
  bottom: 0;
  left: 20%;
  opacity: 0.08;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138, 145, 153, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 145, 153, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--sage);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--sage);
  letter-spacing: 0.05em;
}

/* === CONSOLE === */
.console {
  background: var(--code-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.05);
}

.console-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.console-dots {
  display: flex;
  gap: 6px;
}

.console-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.console-dots span:first-child { background: #ff5f57; }
.console-dots span:nth-child(2) { background: #febc2e; }
.console-dots span:last-child { background: #28c840; }

.console-title {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: 'Courier New', monospace;
}

.console-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.console-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.5;
}

.console-line.muted { opacity: 0.4; }

.c-time { color: var(--code-muted); min-width: 44px; }

.c-ok { color: var(--code-ok); font-size: 10px; font-weight: 700; min-width: 28px; }
.c-run { color: var(--code-run); font-size: 10px; font-weight: 700; min-width: 28px; }
.c-wait { color: var(--code-wait); font-size: 10px; font-weight: 700; min-width: 28px; }

.c-text { color: var(--code-fg); }

/* === SECTIONS === */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* === PROBLEM === */
.problem {
  padding: 120px 48px;
  background: var(--surface);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-header {
  margin-bottom: 64px;
}

.problem-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sage-light);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.problem-card {
  background: var(--surface);
  padding: 40px 36px;
}

.problem-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 57, 43, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 15px;
  color: var(--sage);
  line-height: 1.65;
}

/* === FEATURES === */
.features {
  padding: 120px 48px;
  background: var(--bg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 72px;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(200, 57, 43, 0.15);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.65;
  margin-bottom: 24px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(200, 57, 43, 0.07);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* === HOW === */
.how {
  padding: 120px 48px;
  background: var(--fg);
  color: var(--bg);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how .section-label { color: var(--accent); }

.how-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--bg);
  margin-bottom: 72px;
}

.how-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.how-step {
  flex: 1;
}

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: rgba(200, 57, 43, 0.4);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.how-step p {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.65;
  max-width: 280px;
}

.how-arrow {
  padding: 0 24px;
  padding-bottom: 48px;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 48px;
  background: var(--surface);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-quote {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.manifesto-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.manifesto-quote cite {
  font-size: 13px;
  color: var(--sage);
  font-style: normal;
  letter-spacing: 0.05em;
}

.manifesto-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid var(--surface-2);
  padding-top: 48px;
}

.manifesto-col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.manifesto-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.manifesto-col li {
  font-size: 14px;
  color: var(--sage);
  padding-left: 20px;
  position: relative;
}

.manifesto-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* === CLOSING === */
.closing {
  padding: 160px 48px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  color: var(--sage);
  line-height: 1.65;
  margin-bottom: 80px;
}

.closing-visual {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 57, 43, 0.12);
}

.ring-1 { width: 120px; height: 120px; animation: spin 8s linear infinite; }
.ring-2 { width: 180px; height: 180px; animation: spin 14s linear infinite reverse; }
.ring-3 { width: 240px; height: 240px; animation: spin 20s linear infinite; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-core {
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.footer {
  padding: 64px 48px;
  background: var(--fg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--sage);
  line-height: 1.6;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-meta span {
  font-size: 12px;
  color: var(--sage);
  letter-spacing: 0.03em;
}

/* === PRICING === */
.pricing {
  padding: 120px 48px;
  background: var(--surface);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 17px;
  color: var(--sage);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 48px;
}
.pricing-badge-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 57, 43, 0.07);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 24px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 57, 43, 0.08);
}
.pricing-badge-float {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 4px;
}
.pricing-tagline {
  font-size: 14px;
  color: var(--sage);
  margin-bottom: 32px;
  line-height: 1.5;
}
.pricing-price {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--surface-2);
}
.pricing-setup {
  font-size: 12px;
  color: var(--sage);
  margin-bottom: 4px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.pricing-amount small {
  font-size: 20px;
  font-weight: 400;
}
.pricing-monthly {
  font-size: 13px;
  color: var(--sage);
  margin-top: 4px;
}
.pricing-yearly {
  font-size: 13px;
  color: var(--sage);
  margin-top: 2px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--sage);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23c8392b' fill-opacity='0.12'/%3E%3Cpath d='M4 7.5L6 9.5L10 5' stroke='%23c8392b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  margin-top: auto;
}
.pricing-cta.primary { background: var(--accent); color: #fff; }
.pricing-cta.primary:hover { background: #b03025; }
.pricing-cta.ghost { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.pricing-cta.ghost:hover { background: rgba(200, 57, 43, 0.06); }

/* === TESTIMONIALS === */
.testimonials {
  padding: 120px 48px;
  background: var(--bg);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}
.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.testimonials-sub {
  font-size: 17px;
  color: var(--sage);
  line-height: 1.6;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: 10px;
  padding: 36px 32px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 28px;
  position: relative;
  padding-top: 16px;
}
.testimonial-quote::before {
  content: '"';
  font-size: 56px;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -16px;
  left: -4px;
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-role {
  font-size: 12px;
  color: var(--sage);
}
.testimonial-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--surface-2);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === GUARANTEE === */
.guarantee {
  padding: 80px 48px;
  background: var(--surface);
  text-align: center;
}
.guarantee-inner {
  max-width: 700px;
  margin: 0 auto;
}
.guarantee-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 57, 43, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.guarantee-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.guarantee-text {
  font-size: 15px;
  color: var(--sage);
  line-height: 1.65;
}

/* === HERO CTA === */
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover { background: #b03025; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--surface-2);
  color: var(--fg);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-secondary:hover { background: #e6dfd5; }

/* === REFERENZEN === */
.referenzen {
  padding: 120px 48px;
  background: var(--surface);
}
.referenzen-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.referenzen-header {
  text-align: center;
  margin-bottom: 72px;
}
.referenzen-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.referenzen-sub {
  font-size: 17px;
  color: var(--sage);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}
.ref-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.ref-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: 12px;
  padding: 48px;
  align-items: center;
}
.ref-card.reverse {
  direction: rtl;
}
.ref-card.reverse > * {
  direction: ltr;
}
.ref-tier-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ref-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.ref-location {
  font-size: 13px;
  color: var(--sage);
  margin-bottom: 20px;
}
.ref-description {
  font-size: 15px;
  color: var(--sage);
  line-height: 1.65;
  margin-bottom: 24px;
}
.ref-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 57, 43, 0.07);
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
}
.ref-screenshot {
  background: var(--surface-2);
  border-radius: 10px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ref-screenshot-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface-2) 0%, #e6dfd5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-screenshot-text {
  font-size: 13px;
  color: var(--sage);
  text-align: center;
  padding: 24px;
}

/* === UEBER / KONTAKT === */
.ueber {
  padding: 120px 48px;
  background: var(--bg);
}
.ueber-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ueber-left {
  padding-top: 40px;
}
.ueber-photo {
  width: 240px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.ueber-photo-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8dfd6 0%, #d4d0ca 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ueber-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.ueber-title {
  font-size: 14px;
  color: var(--sage);
  margin-bottom: 24px;
}
.ueber-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--sage);
  margin-bottom: 32px;
}
.ueber-location svg { color: var(--accent); }
.ueber-right {
  padding-top: 40px;
}
.ueber-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.ueber-title-main {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}
.ueber-text {
  font-size: 16px;
  color: var(--sage);
  line-height: 1.7;
  margin-bottom: 48px;
}
.ueber-quotes {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--surface-2);
}
.ueber-quote {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: 10px;
  padding: 24px 28px;
}
.ueber-quote blockquote {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
  color: var(--fg);
  margin-bottom: 10px;
}
.ueber-quote cite {
  font-size: 12px;
  color: var(--sage);
  font-style: normal;
}
.kontakt-section {
  padding: 120px 48px;
  background: var(--fg);
  color: var(--bg);
}
.kontakt-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.kontakt-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--bg);
  margin-bottom: 20px;
}
.kontakt-text {
  font-size: 17px;
  color: var(--sage);
  line-height: 1.65;
  margin-bottom: 48px;
}
.kontakt-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 140px 48px 80px;
  background: var(--bg);
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 18px;
  color: var(--sage);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 20px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--surface-2);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sage);
}
.breadcrumb a {
  color: var(--sage);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--fg); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { flex-direction: column; gap: 48px; align-items: flex-start; }
  .how-arrow { transform: rotate(90deg); padding: 0; }
  .manifesto-detail { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .ref-card { grid-template-columns: 1fr; }
  .ref-card.reverse { direction: ltr; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .problem, .features, .how, .manifesto, .closing, .pricing, .testimonials, .referenzen, .ueber, .kontakt-section, .guarantee, .page-hero { padding: 80px 24px; }
  .nav { padding: 0 24px; }
  .hero-stats { gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .ref-card { padding: 32px 24px; }
  .breadcrumb { padding: 16px 24px; }
}
