* {
  box-sizing: border-box;
}

:root {
  --bg: #0e0e10;
  --bg-alt: #17171a;
  --card: #1c1c20;
  --text: #f2f2f0;
  --text-muted: #a6a6ad;
  --accent: #ff4d2e;
  --accent-dark: #d43c22;
  --border: #2a2a2f;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: inherit;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(14, 14, 16, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--text);
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 4rem 1.5rem;
  background: radial-gradient(ellipse at top, #241a16 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-content {
  max-width: 640px;
  text-align: left;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  align-self: start;
}

.hero-images img:first-child {
  margin-top: 2rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 span {
  color: var(--accent);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 0 2rem;
}

.badge-discount {
  display: inline-block;
  background: var(--accent);
  color: #0e0e10;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.price-badge {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  font-weight: 700;
  width: fit-content;
}

.price-badge .old-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 500;
}

.price-badge .amount {
  font-size: 1.3rem;
  color: var(--accent);
}

.price-badge .period {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

h2 .old-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 1rem 2.1rem;
  background: var(--accent);
  color: #0e0e10;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 77, 46, 0.25);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  box-shadow: none;
  background: var(--card);
}

.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head .eyebrow {
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

/* Pillars */
.pillars {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
}

.pillar .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 77, 46, 0.12);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.pillar h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.audience-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--accent);
}

.audience-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Bio */
.bio-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 720px) {
  .bio-hero {
    grid-template-columns: 1fr;
  }
}

.img-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  border: 1px dashed var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.before-after figure {
  margin: 0;
}

.before-after figcaption {
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.bio-text h2 {
  margin-top: 0;
}

.bio-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.bio-text strong {
  color: var(--text);
}

.quote {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 600;
}

.note {
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--border);
  background: var(--bg-alt);
  border-radius: 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta-final {
  text-align: center;
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 2.5rem 0;
}

.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer p {
  margin: 0.25rem 0;
}

footer a {
  color: var(--text-muted);
}

footer a:hover {
  color: var(--text);
}
