/* ===========================
   MEDUMIO DNA — STYLESHEET
   =========================== */

:root {
  --green: #2d7d46;
  --green-light: #e8f5ed;
  --green-mid: #3a9a5c;
  --dark: #1a1f2e;
  --dark-mid: #2e3547;
  --gray: #f7f8fa;
  --gray-mid: #e8eaee;
  --text: #374151;
  --text-light: #6b7280;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover { background: #235f36; border-color: #235f36; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,125,70,0.3); }

.btn--ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-mid);
}
.btn--ghost:hover { border-color: var(--dark); }

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover { background: var(--green-light); }

.btn--white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn--white:hover { background: var(--green-light); border-color: var(--green-light); }

.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn--full { width: 100%; }

/* ===========================
   NAV
   =========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-mid);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
}

.nav__logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-med { color: var(--dark); }
.logo-dot { color: var(--green); }
.logo-dna { color: var(--green); }

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--green); }

.nav__cta { flex-shrink: 0; }

/* „Jetzt bestellen" Button in der Navigation – rot */
.nav__cta.btn--primary {
  background: #d62828;
  border-color: #d62828;
}
.nav__cta.btn--primary:hover {
  background: #a91e1e;
  border-color: #a91e1e;
  box-shadow: 0 6px 20px rgba(214,40,40,0.3);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f0faf4 0%, #ffffff 60%, #f7f8fa 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  border: 1px solid #b7dfc5;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.highlight { color: var(--green); }

.hero__sub {
  font-size: 18px;
  color: var(--text);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* DNA Graphic */
.hero__visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  opacity: 0.12;
  pointer-events: none;
}

.dna-graphic {
  position: relative;
  width: 100%;
  height: 100%;
}

.helix {
  position: absolute;
  inset: 0;
  border: 3px solid var(--green);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.helix--2 {
  inset: 40px;
  border-color: var(--green-mid);
  animation-direction: reverse;
  animation-duration: 15s;
}

.helix-dots {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.helix-dots span {
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
}

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

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.trust-bar__logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-logo {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: 88px 0;
}

.section--gray {
  background: var(--gray);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 12px;
}

.section__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__lead {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===========================
   STEPS
   =========================== */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.step__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 16px;
}

.step__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.step__arrow {
  font-size: 24px;
  color: var(--gray-mid);
  flex-shrink: 0;
}

/* ===========================
   RESULTS GRID
   =========================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-mid);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.result-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.result-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.result-card ul li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-card ul li:last-child { border-bottom: none; }
.result-card ul li::before { content: '→'; color: var(--green); font-size: 12px; flex-shrink: 0; }

/* ===========================
   SCIENCE
   =========================== */
.science__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.science__text .section__kicker { display: block; margin-bottom: 12px; }

.science__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.science__text p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.science__list {
  margin-bottom: 36px;
}

.science__list li {
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  font-weight: 500;
}

.science__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--green-light);
  border: 1px solid #b7dfc5;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}

.stat-card__number {
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow);
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial__author strong {
  font-size: 14px;
  color: var(--dark);
  display: block;
}

.testimonial__author small {
  font-size: 12px;
  color: var(--text-light);
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow var(--transition);
}

.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  border-color: var(--green);
  box-shadow: 0 8px 40px rgba(45,125,70,0.15);
  transform: scale(1.02);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 8px;
}

.pricing-card__name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  display: block;
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-card__name { color: var(--green); }

.pricing-card__price {
  margin-bottom: 4px;
}

.price-amount {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -2px;
}

.price-note {
  font-size: 12px;
  color: var(--text-light);
}

.pricing-card__tagline {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-mid);
  line-height: 1.5;
}

.pricing-card__features {
  margin-bottom: 32px;
}

.pricing-card__features li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--text);
  font-weight: 500;
}

.pricing-card__features li:last-child { border-bottom: none; }

.pricing-card__features li.faded {
  color: var(--text-light);
  font-weight: 400;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-light);
  border: 1px solid #b7dfc5;
  border-radius: var(--radius);
  padding: 24px 28px;
}

.guarantee-icon { font-size: 32px; flex-shrink: 0; }

.pricing-guarantee strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 2px;
}

.pricing-guarantee p, .pricing-guarantee div {
  font-size: 14px;
  color: var(--text-light);
}

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

.faq-item {
  border-bottom: 1px solid var(--gray-mid);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq-item summary:hover { color: var(--green); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

/* ===========================
   CTA FINAL
   =========================== */
.cta-final {
  background: linear-gradient(135deg, var(--green) 0%, #1e5c32 100%);
  padding: 88px 0;
  text-align: center;
}

.cta-final__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-final__inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.cta-final__trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-final__trust span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

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

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo-med { color: var(--white); }
.footer__brand .logo-dot,
.footer__brand .logo-dna { color: var(--green-mid); }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.7;
}

.footer__links h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   LEGAL / IMPRESSUM
   =========================== */
.legal { padding: 64px 0 88px; }
.legal__inner { max-width: 720px; }
.legal h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.legal h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 8px;
}
.legal p { font-size: 15px; color: var(--text); line-height: 1.7; }
.legal a { color: var(--green); text-decoration: underline; }
.legal__note { color: var(--text-light); font-size: 14px; margin-bottom: 8px; }
.legal__placeholder-hint {
  margin-top: 40px;
  padding: 16px 20px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  font-size: 14px;
  color: #9a3412;
}
.legal code {
  background: var(--gray-mid);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero { padding: 60px 0; }
  .hero__visual { display: none; }

  .science__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured { transform: none; }

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

  .nav__links { display: none; }
}

@media (max-width: 600px) {
  .steps { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .section { padding: 60px 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .trust-bar__inner { justify-content: center; }
  .footer__bottom .container { justify-content: center; text-align: center; }

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

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge, .hero__headline, .hero__sub, .hero__actions {
  animation: fadeInUp 0.6s ease both;
}
.hero__sub   { animation-delay: 0.1s; }
.hero__actions { animation-delay: 0.2s; }
.hero__trust   { animation-delay: 0.3s; animation: fadeInUp 0.6s ease both; }
