/* ========================================
   Chi statt Botox – Erfahrungen 2026
   CSS Stylesheet
   ======================================== */

/* ---- CSS Variables ---- */
:root {
  --cream: #fdf6f0;
  --warm-white: #fffaf7;
  --rose: #c97d5e;
  --rose-dark: #a85f40;
  --rose-light: #f2d5c8;
  --sage: #7a9e8e;
  --sage-light: #d4e8e0;
  --charcoal: #2d2926;
  --dark-brown: #4a3728;
  --mid-brown: #7a5c48;
  --light-text: #6b5a50;
  --border: #e8d5c8;
  --shadow: 0 4px 24px rgba(45,41,38,.08);
  --shadow-hover: 0 8px 40px rgba(45,41,38,.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--rose); text-decoration: none; transition: color .2s; }
a:hover { color: var(--rose-dark); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.25; }

/* ---- Container ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn-primary, .btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .3px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(201,125,94,.4);
  cursor: pointer;
}
.btn-primary:hover, .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,125,94,.5);
  color: white;
}
.btn-cta-large { padding: 20px 48px; font-size: 1.15rem; }

/* ---- Section Label ---- */
.section-label {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(45,41,38,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 2rem; color: var(--rose); }
.logo-text { font-family: var(--font-display); font-size: .95rem; line-height: 1.3; color: var(--charcoal); }
.logo-text small { font-family: var(--font-body); font-size: .7rem; color: var(--light-text); }
.main-nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.main-nav a { font-size: .9rem; font-weight: 600; color: var(--dark-brown); }
.main-nav a:hover { color: var(--rose); }
.nav-cta {
  background: var(--rose);
  color: white !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: .85rem;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(150deg, #fdf0e8 0%, #f5e8e0 50%, #f0ddd5 100%);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,125,94,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 6px 20px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--charcoal);
  max-width: 800px;
  margin: 0 auto 20px;
}
.hero h1 em { color: var(--rose); font-style: italic; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--mid-brown);
  max-width: 680px;
  margin: 0 auto 28px;
}
.hero-stars {
  font-size: 1.4rem;
  color: #e8a838;
  margin-bottom: 32px;
}
.hero-stars span { font-size: .9rem; color: var(--light-text); vertical-align: middle; margin-left: 8px; }
.hero-note { margin-top: 16px; font-size: .84rem; color: var(--light-text); }

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--charcoal);
  padding: 28px 24px;
}
.strip-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-item {
  color: white;
  text-align: center;
  font-size: .9rem;
  line-height: 1.5;
}
.strip-item strong { display: block; font-size: 1rem; }

/* ===== ABOUT ===== */
.about {
  padding: 80px 24px;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  background: linear-gradient(135deg, var(--rose-light), var(--sage-light));
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mid-brown);
  font-size: 1.1rem;
  overflow: hidden;
}
.placeholder-icon { font-size: 4rem; margin-bottom: 12px; }
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.about-badge {
  background: var(--rose);
  color: white;
  font-size: .8rem;
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 12px;
  text-align: center;
  line-height: 1.4;
}
.about-text h2 { font-size: 2rem; color: var(--charcoal); margin-bottom: 20px; }
.about-text h2 strong { color: var(--rose); }
.about-text p { color: var(--light-text); margin-bottom: 16px; }
blockquote {
  border-left: 3px solid var(--rose);
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--dark-brown);
}
blockquote cite { display: block; font-size: .85rem; font-style: normal; color: var(--rose); margin-top: 8px; font-family: var(--font-body); }

/* ===== WHAT IS ===== */
.what-is {
  padding: 80px 24px;
  background: var(--cream);
  text-align: center;
}
.what-is h2 { font-size: 2rem; margin-bottom: 12px; }
.what-is h2 strong { color: var(--rose); }
.section-intro { max-width: 600px; margin: 0 auto 48px; color: var(--light-text); }
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.method-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.method-icon { font-size: 2.5rem; margin-bottom: 14px; }
.method-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark-brown); font-family: var(--font-display); }
.method-card p { font-size: .9rem; color: var(--light-text); }

/* ===== COURSE CONTENT ===== */
.course-content {
  padding: 80px 24px;
  background: var(--warm-white);
}
.course-content h2 { font-size: 2rem; margin-bottom: 40px; }
.course-content h2 strong { color: var(--rose); }
.modules-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; }
.module {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.module-num {
  min-width: 40px;
  height: 40px;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-bonus { border: 2px solid var(--rose-light); }
.module-bonus .module-num { background: var(--rose); color: white; font-size: .9rem; }
.module strong { display: block; margin-bottom: 4px; color: var(--charcoal); }
.module p { font-size: .88rem; color: var(--light-text); }
.course-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.highlight {
  background: var(--sage-light);
  color: var(--sage);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: .88rem;
  font-weight: 700;
}

/* ===== RESULTS ===== */
.results-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-brown) 100%);
  color: white;
  text-align: center;
}
.results-section .section-label { background: rgba(255,255,255,.15); color: var(--rose-light); }
.results-section h2 { color: white; font-size: 2rem; margin-bottom: 12px; }
.results-section h2 strong { color: var(--rose-light); }
.results-section .section-intro { color: rgba(255,255,255,.7); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.result-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  text-align: left;
}
.before-after-note {
  margin-top: 40px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 24px;
  background: var(--cream);
}
.testimonials h2 { font-size: 2rem; margin-bottom: 40px; }
.testimonials h2 strong { color: var(--rose); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .25s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--warm-white), #fce8dc);
  border: 2px solid var(--rose-light);
}
.stars { color: #e8a838; font-size: 1.2rem; margin-bottom: 14px; }
.testimonial-card p { font-size: .9rem; color: var(--light-text); line-height: 1.7; margin-bottom: 20px; }
.testimonial-card p strong { color: var(--charcoal); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviewer strong { display: block; font-size: .9rem; }
.reviewer span { font-size: .8rem; color: var(--light-text); }
.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--rose);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

/* ===== COMPARISON ===== */
.comparison {
  padding: 80px 24px;
  background: var(--warm-white);
  text-align: center;
}
.comparison h2 { font-size: 2rem; margin-bottom: 36px; }
.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--charcoal);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
}
.compare-table th.highlight-col { background: var(--rose); }
.compare-table td.highlight-col { background: #fff5f0; font-weight: 600; color: var(--rose-dark); }
.compare-table tr:hover td { background-color: #fdf5f0; }
.compare-table tr:hover td.highlight-col { background: #fde8dc; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(150deg, #fdf0e8, #f2d9cc);
}
.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 12px 60px rgba(201,125,94,.2);
}
.cta-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.cta-box h2 { font-size: 2rem; color: var(--charcoal); margin-bottom: 16px; }
.cta-box h2 em { color: var(--rose); }
.cta-box p { color: var(--light-text); margin-bottom: 28px; }
.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  gap: 4px;
}
.price-old { text-decoration: line-through; color: var(--light-text); font-size: .9rem; }
.price-now { font-size: 2rem; font-weight: 700; color: var(--rose-dark); font-family: var(--font-display); }
.price-now small { font-size: 1rem; font-family: var(--font-body); }
.price-note { font-size: .8rem; color: var(--light-text); }
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: .8rem;
  color: var(--light-text);
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 24px;
  background: var(--cream);
}
.faq h2 { font-size: 2rem; margin-bottom: 40px; }
.faq h2 strong { color: var(--rose); }
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-brown);
}
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--rose);
  transition: transform .2s;
  min-width: 24px;
  text-align: center;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 18px;
  font-size: .92rem;
  color: var(--light-text);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 24px;
  background: linear-gradient(150deg, var(--charcoal), var(--dark-brown));
  text-align: center;
  color: white;
}
.final-cta h2 { font-size: 2rem; color: white; margin-bottom: 16px; }
.final-cta h2 em { color: var(--rose-light); }
.final-cta p { color: rgba(255,255,255,.75); max-width: 620px; margin: 0 auto 32px; }
.final-note { margin-top: 16px; font-size: .84rem; color: rgba(255,255,255,.5); }

/* ===== FOOTER ===== */
.site-footer {
  background: #1e1916;
  color: rgba(255,255,255,.6);
  padding: 48px 24px 24px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: white; font-family: var(--font-display); font-size: 1.1rem; }
.footer-logo .logo-icon { font-size: 1.8rem; color: var(--rose); }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-nav a { color: rgba(255,255,255,.5); font-size: .85rem; }
.footer-nav a:hover { color: var(--rose-light); }
.footer-disclaimer { font-size: .78rem; max-width: 700px; line-height: 1.6; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 14px 18px; }
.footer-copy { font-size: .8rem; }

/* ===== RESPONSIVE ===== */
/* ---- Hero with image layout ---- */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1;
  min-width: 280px;
  max-width: 580px;
  text-align: left;
}
.hero-text .hero-badge { display: inline-block; }
.hero-text .hero-stars { text-align: left; }
.hero-img-wrap {
  flex: 0 0 auto;
  position: relative;
  width: 360px;
  max-width: 100%;
}
.hero-product-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(45,41,38,.18);
  object-fit: cover;
}
.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: white;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 24px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(201,125,94,.5);
  white-space: nowrap;
  line-height: 1.4;
}
.hero-img-badge small { font-size: .75rem; font-weight: 400; display: block; }

/* ---- Christina real photo ---- */
.about-img-real {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(45,41,38,.14);
  line-height: 0;
  background: #000;
}
.about-img-real img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform .4s;
}
.about-img-real:hover img { transform: scale(1.03); }

/* ---- Before / After image ---- */
.before-after-wrap {
  position: relative;
  max-width: 700px;
  margin: 48px auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.35);
}
.before-after-labels {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 2;
  pointer-events: none;
}
.ba-label {
  flex: 1;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 0;
  text-transform: uppercase;
}
.ba-before {
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.85);
}
.ba-after {
  background: rgba(201,125,94,.75);
  color: white;
}
.before-after-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.ba-caption {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  text-align: center;
  font-size: .82rem;
  padding: 10px 16px;
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .hero-inner { flex-direction: column-reverse; gap: 32px; text-align: center; }
  .hero-text { text-align: center; }
  .hero-text .hero-stars { text-align: center; }
  .hero-img-wrap { width: 280px; }
  .hero-img-badge { font-size: .8rem; }
  .ba-caption { font-size: .75rem; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-placeholder { aspect-ratio: 16/9; max-height: 260px; }
  .header-inner { flex-direction: column; gap: 12px; }
  .main-nav { gap: 14px; justify-content: center; }
  .cta-box { padding: 32px 24px; }
  .strip-items { gap: 24px; }
  .compare-table { font-size: .82rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .hero { padding: 48px 16px; }
  .methods-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
}
