@import url('tokens.css');

/* ==========================================================================
   Coach Rellah — Prototype Styles
   ========================================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }

.app { min-height: 100vh; background: var(--paper); color: var(--graphite); }

/* ---------- Sticky Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--graphite);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 14px 24px;
}
.nav__brand {
  width: 100px; height: 100px;
  border: 0; padding: 0; cursor: pointer;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__brand img {
  width: 100%; height: 100%; object-fit: contain;
  display: block;
}
.nav__link {
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  color: rgba(255,255,255,0.75); cursor: pointer; background: none; border: 0; padding: 0;
  transition: color var(--dur-1);
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__cta { margin-left: auto; }
.nav__lfu {
  margin-left: 12px;
  width: 100px; height: 100px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  flex-shrink: 0;
  transition: transform var(--dur-1);
}
.nav__lfu:hover { transform: scale(1.05); }
.nav__lfu img {
  width: 100%; height: 100%; object-fit: contain;
  display: block;
}
.nav__hamburger { display: none; }

@media (max-width: 768px) {
  .nav__inner { gap: 12px; padding: 10px 16px; }
  .nav__brand, .nav__lfu { width: 60px; height: 60px; }
  .nav__lfu { margin-left: auto; }
  .nav__links { display: none; }
  .nav__hamburger {
    display: inline-flex;
    background: transparent; border: 1px solid rgba(255,255,255,0.3);
    color: #fff; padding: 8px 12px; border-radius: 8px;
    font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  }
  .nav__cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--graphite); color: #fff;
  padding: 88px 0 96px;
  position: relative;
}
.hero__grid {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(40px, 6.2vw, 68px); line-height: 1.05;
  letter-spacing: -0.015em; margin: 0 0 20px; text-wrap: balance;
}
.hero__sub { font-size: 19px; line-height: 1.55; color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 0 28px; }

.hero__chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: #fff;
}
.chip__num { color: var(--lime); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.hero__meta { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0 0 32px; }

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__visual {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  min-height: 440px;
  display: grid; grid-template-columns: 1fr 0.85fr; gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .hero__visual {
    grid-template-columns: 1fr;
    padding: 20px;
    min-height: 0;
  }
  .hero__portrait { min-height: 420px; aspect-ratio: 3/4; }
  .hero__phone { width: 100%; }
}
.hero__portrait {
  width: 100%; height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  display: block;
}

.hero__phone {
  background: #0f0f0f; border-radius: 30px; border: 6px solid #2a2a2a;
  padding: 14px; position: relative;
  display: flex; flex-direction: column; gap: 10px;
}
.hero__phone::before {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 14px; background: #000; border-radius: 0 0 10px 10px;
}
.hume-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 12px; background: rgba(141,198,63,0.08); border-radius: 8px; border-left: 3px solid var(--lime); }
.hume-row__label { font-size: 11px; color: rgba(255,255,255,0.7); font-family: var(--font-body); }
.hume-row__value { font-family: var(--font-heading); font-weight: 700; color: var(--lime); font-size: 15px; font-variant-numeric: tabular-nums; }
.hume-head { margin-top: 12px; text-align: center; font-family: var(--font-heading); font-weight: 600; font-size: 10px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); text-transform: uppercase; }

/* ---------- Section framing ---------- */
.section { padding: 96px 0; }
.section--paper { background: var(--paper); color: var(--graphite); }
.section--dark  { background: var(--graphite); color: #fff; }
.section__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

.section-label {
  position: relative; padding-left: 16px;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 16px;
}
.section-label::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 4px; height: calc(100% - 6px); background: var(--lime);
}
.section--dark .section-label { color: rgba(255,255,255,0.6); }

.section__title { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 12px; text-wrap: balance; max-width: 780px; }
.section__lede { font-size: 18px; line-height: 1.6; color: var(--ash); max-width: 640px; margin: 0 0 56px; }
.section--dark .section__lede { color: rgba(255,255,255,0.7); }

/* ---------- Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid-32 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .grid-3, .grid-4, .grid-32 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2, .grid-4, .grid-32 { grid-template-columns: 1fr; } }

/* ---------- Pain / Pillar card ---------- */
.pcard {
  background: var(--mist); border-radius: 12px;
  padding: 22px 22px 22px 26px;
  position: relative;
  transition: transform var(--dur-2), box-shadow var(--dur-2);
}
.pcard::before {
  content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 4px;
  background: var(--lime); border-radius: 2px;
}
.pcard:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,42,42,0.08); }
.pcard h3 { font-size: 19px; margin: 0 0 8px; letter-spacing: -0.005em; padding-right: 48px; }
.pcard p { font-size: 15px; line-height: 1.55; color: var(--graphite); margin: 0; }
.pcard__quote { margin-top: 12px; font-size: 13px; color: var(--ash); font-style: italic; }

/* ICP simple text card */
.icp {
  padding: 20px 4px;
  border-top: 1px solid var(--mist);
}
.icp h4 { font-size: 18px; margin: 0 0 4px; font-weight: 600; }
.icp p { font-size: 15px; color: var(--ash); margin: 0; }

/* Pillar badge (LFU) — schwebt oben rechts */
.pcard__badge {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- Icon grid (dark) ---------- */
.igrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; }
@media (max-width: 900px) { .igrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .igrid { grid-template-columns: 1fr; } }
.igrid__cell { background: var(--charcoal); padding: 28px 24px; }
.igrid__icon {
  width: 40px; height: 40px;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
}
.igrid__icon svg { width: 28px; height: 28px; }
.igrid__icon { color: var(--lime); }
.igrid__title { font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: #fff; margin: 0 0 6px; }
.igrid__body  { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.5; }

/* ---------- Voraussetzungen / Zusatzkosten ---------- */
.reqs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 768px) { .reqs-grid { grid-template-columns: 1fr; } }
.reqs-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--lime);
  border-radius: 12px;
  padding: 24px 26px;
  color: rgba(255,255,255,0.82);
}
.reqs-card__label {
  display: inline-block;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}
.reqs-card h4 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 19px; color: #fff; margin: 0 0 8px; line-height: 1.3;
}
.reqs-card p {
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.72);
  margin: 0 0 12px;
}
.reqs-card__meta {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 13px; color: var(--lime);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px; margin-top: 4px;
}

/* ---------- Warum split ---------- */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
.why__portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  margin-bottom: 20px;
  display: block;
}
.why__bio li { margin: 10px 0; padding-left: 20px; position: relative; font-size: 16px; line-height: 1.5; color: rgba(255,255,255,0.9); list-style: none; }
.why__bio li::before { content: "—"; position: absolute; left: 0; color: var(--lime); }
.why__bio { padding: 0; margin: 0 0 20px; }

.biomarker {
  background: var(--charcoal); color: #fff;
  padding: 22px 24px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.biomarker__num { font-family: var(--font-heading); font-weight: 700; font-size: 40px; line-height: 1; color: var(--lime); letter-spacing: -0.015em; }
.biomarker__label { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing {
  background: #fff; border: 1px solid var(--mist); border-radius: 16px;
  padding: 28px; display: flex; flex-direction: column;
  transition: transform var(--dur-2), box-shadow var(--dur-2);
}
.pricing:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(42,42,42,0.10); }
.pricing.is-highlight { border: 2px solid var(--lime); position: relative; }
.pricing__badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--lime); color: var(--graphite);
  font-family: var(--font-heading); font-weight: 600; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px;
}
.pricing__label { font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); margin-bottom: 14px; }
.pricing__name { font-family: var(--font-heading); font-weight: 700; font-size: 22px; margin: 0 0 4px; }
.pricing__price { font-family: var(--font-heading); font-weight: 700; font-size: 38px; letter-spacing: -0.01em; margin: 10px 0 14px; }
.pricing__for { font-size: 14px; color: var(--ash); margin: 0 0 18px; }
.pricing ul { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing li { padding: 8px 0 8px 26px; position: relative; font-size: 15px; line-height: 1.45; border-top: 1px solid var(--mist); }
.pricing li:first-child { border-top: 0; }
.pricing li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 14px; height: 8px; border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}
.pricing__cta { margin-top: auto; }

/* ---------- Stepper ---------- */
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .stepper { grid-template-columns: 1fr; } }
.step__num {
  font-family: var(--font-heading); font-weight: 700; font-size: 48px;
  color: var(--lime); letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 14px;
}
.step h4 { font-size: 19px; margin: 0 0 8px; }
.step p { font-size: 15px; color: var(--ash); line-height: 1.55; margin: 0; }

/* ---------- Testimonials ---------- */
.tcard {
  background: var(--mist); border-radius: 12px;
  padding: 24px 24px 24px 28px;
  position: relative;
}
.tcard::before {
  content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 3px;
  background: var(--lime);
}
.tcard__quote { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--graphite); margin: 0 0 14px; font-style: italic; }
.tcard__name  { font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: var(--graphite); }
.tcard__meta  { font-size: 12px; color: var(--ash); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--mist); }
.faq__item { border-bottom: 1px solid var(--mist); }
.faq__q {
  width: 100%; background: transparent; border: 0; text-align: left;
  padding: 20px 0; display: flex; align-items: center; gap: 16px;
  font-family: var(--font-heading); font-weight: 600; font-size: 18px; color: var(--graphite);
  cursor: pointer;
}
.faq__q .plus {
  margin-left: auto; width: 20px; height: 20px; position: relative; flex-shrink: 0;
}
.faq__q .plus::before, .faq__q .plus::after {
  content: ""; position: absolute; background: var(--graphite);
}
.faq__q .plus::before { left: 0; right: 0; top: 9px; height: 2px; }
.faq__q .plus::after  { top: 0; bottom: 0; left: 9px; width: 2px; transition: transform var(--dur-2); }
.faq__item.is-open .faq__q .plus::after { transform: scaleY(0); }
.faq__a {
  max-height: 0; overflow: hidden; transition: max-height var(--dur-3) var(--ease-out);
}
.faq__item.is-open .faq__a { max-height: 400px; }
.faq__a p { padding: 0 0 22px; font-size: 16px; line-height: 1.6; color: var(--ash); margin: 0; max-width: 720px; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; padding: 120px 24px; }
.final-cta__claim {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px); line-height: 1.1; letter-spacing: -0.015em;
  color: #fff; margin: 0 0 36px;
}
.final-cta__claim em { color: var(--lime); font-style: normal; }

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h5 { font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 16px; }
.footer p, .footer a { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.8); text-decoration: none; }
.footer a:hover { color: var(--lime); }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__dot {
  width: 100px; height: 100px;
  object-fit: contain;
  background: transparent;
  display: block;
  flex-shrink: 0;
}
.footer__lfu {
  width: 100px; height: 100px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.footer__lfu img {
  width: 100%; height: 100%; object-fit: contain;
  display: block;
}
.footer__bottom {
  max-width: var(--container-max); margin: 40px auto 0;
  padding: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.disclaimer-line {
  text-align: center; max-width: 680px; margin: 32px auto 0;
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6;
  font-style: italic;
}

/* ---------- Modal ---------- */
.modal-scrim {
  position: fixed; inset: 0; background: rgba(42,42,42,0.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: 20px;
  animation: fadeIn 200ms var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper); border-radius: 16px;
  max-width: 520px; width: 100%; padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  max-height: 90vh; overflow-y: auto;
}
.modal--wide { max-width: 980px; padding: 28px; }
.cal-embed {
  min-height: 640px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cal-embed { min-height: 560px; }
  .modal--wide { padding: 20px; max-height: 95vh; }
}
.modal h3 { font-size: 24px; margin: 0 0 8px; }
.modal p { color: var(--ash); margin: 0 0 20px; font-size: 15px; }
.modal__close {
  background: transparent; border: 0; font-size: 24px; color: var(--ash); cursor: pointer;
  float: right; line-height: 1;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: var(--graphite); }
.field input, .field textarea {
  background: #fff; border: 1px solid var(--mist); border-radius: 8px;
  padding: 12px 14px; font-family: var(--font-body); font-size: 15px; color: var(--graphite);
  outline: none; transition: border-color var(--dur-1), box-shadow var(--dur-1);
}
.field input:focus, .field textarea:focus {
  border-color: var(--lime); box-shadow: 0 0 0 3px rgba(141,198,63,0.2);
}

/* ---------- Fade-in-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Salespage specifics ---------- */
.sales-hero {
  background: var(--graphite); color: #fff; padding: 80px 0 72px;
}
.sales-hero__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.sales-hero__price { font-family: var(--font-heading); font-weight: 700; font-size: 44px; letter-spacing: -0.015em; color: var(--lime); margin: 8px 0 20px; }
.sales-hero h1 { font-size: clamp(36px, 5.5vw, 56px); max-width: 820px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
@media (max-width: 700px) { .checklist { grid-template-columns: 1fr; } }
.checklist li { padding-left: 28px; position: relative; font-size: 16px; line-height: 1.5; color: var(--graphite); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline__item {
  padding: 20px 0 20px 40px; position: relative;
  border-left: 2px solid var(--mist);
  margin-left: 12px;
}
.timeline__item::before {
  content: ""; position: absolute; left: -7px; top: 24px;
  width: 12px; height: 12px; background: var(--lime); border-radius: 999px;
}
.timeline__item h5 { font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); margin: 0 0 6px; }
.timeline__item h4 { font-size: 18px; margin: 0 0 6px; }
.timeline__item p { font-size: 15px; color: var(--ash); margin: 0; line-height: 1.55; }

.compare {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.compare th, .compare td {
  text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--mist);
}
.compare th { font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: var(--ash); letter-spacing: 0.05em; text-transform: uppercase; }
.compare td.is-this { background: rgba(141,198,63,0.08); font-weight: 500; }
