/* ReguPraxis Landing — ReguCompass-DNA (Grün #719430, Oswald/Roboto, dunkelgrüne Sektionen)
   in Apple-artiger Präsentation: große Typo, viel Weißraum, Scroll-Reveals, Device-Frames. */

:root {
  --primary: #719430;
  --primary-dark: #5a7a24;
  --secondary: #e9f1da;
  --ink: #2c2c2c;
  --muted: #6f6f6f;
  --bg: #ffffff;
  --bg-soft: #f7f7f2;
  --dark: #111f12;
  --dark2: #1a2e1a;
  --line: #e6e6df;
  --radius: 18px;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: .2px; }
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 500; }
.center { text-align: center; }
.sub { max-width: 640px; margin: 1.1rem auto 0; color: var(--muted); font-size: 1.08rem; }
.sub.small { font-size: .98rem; margin-top: 2.4rem; }
.dark .sub { color: #b9c7b4; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: .9rem;
}
.eyebrow.center { text-align: center; }

.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-inner.narrow { max-width: 780px; }
section { padding: 108px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: .6px;
  border-radius: 999px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 22px rgba(113,148,48,.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(113,148,48,.45); }
.btn-ghost { border: 1px solid rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { border-color: #fff; transform: translateY(-2px); }
.btn-ghost-dark { border: 1.5px solid var(--primary); color: var(--primary); padding: 13px 30px; }
.btn-ghost-dark:hover { background: var(--secondary); transform: translateY(-2px); }
.btn-sm { padding: 9px 22px; font-size: .9rem; }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn.full { display: block; text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled { background: rgba(17,31,18,.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-size: 1.25rem; }
.nav-brand img { border-radius: 8px; }
.nav-brand b { color: #a9cf62; font-weight: 600; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,.82); font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: #fff; }
@media (max-width: 820px) { .nav-links { display: none; } .nav-inner { justify-content: space-between; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 70% -10%, #24401f 0%, var(--dark) 55%);
  color: #fff;
  padding: 170px 0 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: rgba(113,148,48,.22); filter: blur(120px);
  top: -220px; right: -160px; pointer-events: none;
  animation: glowfloat 9s ease-in-out infinite alternate;
}
@keyframes glowfloat { from { transform: translateY(0) } to { transform: translateY(60px) } }
.hero-inner { max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center; position: relative; }
.hero-eyebrow {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 2.5px;
  font-size: .8rem; color: #a9cf62; margin-bottom: 1.4rem;
}
.grad {
  background: linear-gradient(92deg, #a9cf62, #719430 60%, #8db840);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { max-width: 660px; margin: 1.6rem auto 0; color: #c9d5c4; font-size: 1.13rem; font-weight: 300; }
.hero-sub b { color: #fff; font-weight: 500; }
.hero-cta { margin-top: 2.4rem; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-shot { max-width: 1020px; margin: 72px auto -2px; padding: 0 24px; position: relative; }
.hero-shot::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 55%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero + .stats { padding-top: 40px; }
.hero-lifestyle img {
  display: block; width: 100%; border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
}

/* Mac-Fenster-Rahmen */
.macwin {
  background: #1c1c1e;
  border-radius: 14px;
  box-shadow: 0 40px 90px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
}
.macwin-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: #2a2a2c;
}
.macwin-bar i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.macwin-bar i:nth-child(2) { background: #febc2e; }
.macwin-bar i:nth-child(3) { background: #28c840; }
.macwin-bar span {
  margin: 0 auto; transform: translateX(-24px);
  font-size: .72rem; color: #9a9a9e; font-family: var(--font-body);
}
.tilt { transform: perspective(1400px) rotateX(6deg) scale(.985); transform-origin: top center; transition: transform .8s ease; }
.tilt.flat { transform: perspective(1400px) rotateX(0deg) scale(1); }

/* ---------- Stats ---------- */
.stats { background: var(--bg); padding-bottom: 84px; }
.stats-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat { text-align: center; padding: 26px 12px; border-radius: var(--radius); background: var(--bg-soft); }
.stat b { font-family: var(--font-head); font-size: 2.5rem; font-weight: 600; color: var(--primary); display: block; }
.stat span { color: var(--muted); font-size: .92rem; }
@media (max-width: 820px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Split-Layouts ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split.rev { grid-template-columns: .95fr 1.05fr; }
.split-text p { color: var(--muted); margin-top: 1rem; }
.split-text h2 { margin-top: .2rem; }
.rounded { border-radius: var(--radius); box-shadow: 0 24px 60px rgba(17,31,18,.18); }
@media (max-width: 900px) { .split, .split.rev { grid-template-columns: 1fr; gap: 36px; } }

.checks { list-style: none; margin-top: 1.4rem; }
.checks li { padding: 7px 0 7px 34px; position: relative; color: var(--ink); }
.checks li::before {
  content: '✓'; position: absolute; left: 0; top: 6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--secondary); color: var(--primary-dark);
  font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.dark .checks li { color: #dbe6d6; }

/* ---------- Dunkle Sektionen ---------- */
.dark { background: var(--dark2); color: #fff; }
.dark .eyebrow { color: #a9cf62; }

/* ---------- Feature Grid ---------- */
.grid-6 {
  margin-top: 54px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.fcard {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.fcard:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(169,207,98,.4); }
.fico {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(113,148,48,.22); box-shadow: 0 0 14px rgba(141,184,64,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.fcard h3 { color: #fff; margin-bottom: .55rem; }
.fcard p { color: #b9c7b4; font-size: .95rem; font-weight: 300; }
@media (max-width: 900px) { .grid-6 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-6 { grid-template-columns: 1fr; } }

/* ---------- App-Tour (sticky) ---------- */
.tour { background: var(--bg-soft); }
.tour-wrap {
  max-width: 1180px; margin: 60px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start;
}
.tour-steps { display: flex; flex-direction: column; }
.tour-step {
  padding: 15vh 0;
  opacity: .25; transition: opacity .45s ease;
  border-bottom: 1px dashed var(--line);
}
.tour-step:first-child { padding-top: 6vh; }
.tour-step.active { opacity: 1; }
.tour-nr {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--primary); letter-spacing: 2px;
  display: inline-block; border: 1.5px solid var(--primary);
  border-radius: 999px; padding: 3px 14px; margin-bottom: 14px;
}
.tour-step h3 { font-size: 1.6rem; margin-bottom: .6rem; }
.tour-step p { color: var(--muted); }
.tour-sticky { position: sticky; top: 13vh; }
.tour-sticky .macwin { box-shadow: 0 30px 70px rgba(17,31,18,.25), 0 0 0 1px rgba(0,0,0,.06); }
#tourShot { transition: opacity .28s ease; }
@media (max-width: 900px) {
  .tour-wrap { grid-template-columns: 1fr; }
  .tour-sticky { position: relative; top: 0; order: -1; }
  .tour-step { padding: 40px 0; opacity: 1; }
}

/* ---------- 8 Faktoren ---------- */
.fak-chips {
  margin: 44px auto 0; max-width: 820px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.chip {
  font-family: var(--font-head); font-weight: 400; letter-spacing: .5px;
  padding: 11px 22px; border-radius: 999px;
  border: 1px solid rgba(169,207,98,.45); color: #dbe6d6;
  background: rgba(113,148,48,.12);
  transition: background .3s, box-shadow .3s, transform .3s;
}
.chip.lit {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 0 22px rgba(141,184,64,.55);
  transform: scale(1.05);
}

/* ---------- Datenschutz ---------- */
.privacy { background: var(--bg); }
.privacy-card {
  background: var(--dark); color: #fff; border-radius: 22px;
  padding: 40px 36px; box-shadow: 0 30px 70px rgba(17,31,18,.35);
}
.privacy-icon { font-size: 2.2rem; margin-bottom: 12px; }
.privacy-card h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.privacy-card > p { color: #b9c7b4; font-size: .95rem; margin-bottom: 1.4rem; }
.privacy-card code {
  display: inline-block; margin-top: 6px; padding: 6px 12px; border-radius: 8px;
  background: rgba(255,255,255,.08); font-size: .85rem; color: #a9cf62;
}
.privacy-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 0; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .95rem; color: #dbe6d6;
}
.privacy-row b.no { color: #a9cf62; font-family: var(--font-head); letter-spacing: .5px; }
.privacy-row b.yes { color: #a9cf62; font-family: var(--font-head); letter-spacing: .5px; }

/* ---------- Compass ---------- */
.compass { background: var(--secondary); }
.center-block { text-align: center; }
.compass .btn { margin-top: 2rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg); }
.price-cards {
  margin-top: 56px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px;
  max-width: 940px; margin-left: auto; margin-right: auto;
  align-items: start;
}
.pcard {
  border-radius: 22px; padding: 40px 36px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pcard:hover { transform: translateY(-6px); }
.pcard.main {
  background: var(--dark); color: #fff;
  box-shadow: 0 34px 80px rgba(17,31,18,.35);
  border: 1.5px solid rgba(169,207,98,.5);
}
.pcard.side { background: var(--bg-soft); border: 1px solid var(--line); }
.pbadge {
  display: inline-block; font-family: var(--font-head); font-size: .75rem;
  text-transform: uppercase; letter-spacing: 2px;
  background: var(--primary); color: #fff;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 18px;
}
.pbadge.alt { background: var(--secondary); color: var(--primary-dark); }
.pcard h3 { font-size: 1.6rem; }
.pprice { font-family: var(--font-head); font-size: 3rem; font-weight: 600; margin: 10px 0 2px; }
.pcard.main .pprice { color: #a9cf62; }
.pcard.side .pprice { color: var(--primary-dark); }
.pprice span { font-size: 1.05rem; font-weight: 400; color: inherit; opacity: .75; }
.pnote { font-size: .95rem; opacity: .8; margin-bottom: 1.2rem; }
.pcard .checks { margin-top: .4rem; margin-bottom: 1.8rem; }
.pcard.main .checks li { color: #dbe6d6; }
.pcard.main .checks li::before { background: rgba(169,207,98,.2); color: #a9cf62; }
.pfreeze {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--primary);
  border-radius: 12px; padding: 18px 20px; font-size: .93rem; color: var(--muted);
}
.pfreeze b { display: block; color: var(--ink); margin-bottom: 4px; font-family: var(--font-head); font-weight: 500; }
.plegal { text-align: center; margin-top: 44px; font-size: .85rem; color: var(--muted); }
@media (max-width: 860px) { .price-cards { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  margin-top: 14px; overflow: hidden;
}
.faq details:first-of-type { margin-top: 44px; }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 20px 54px 20px 24px; position: relative;
  font-family: var(--font-head); font-weight: 500; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--primary); transition: transform .25s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- CTA & Footer ---------- */
.cta { background: var(--dark); }
.cta .btn { margin-top: 2.2rem; }
.cta-note { margin-top: 1.6rem; color: #b9c7b4; font-size: .92rem; }
.cta-note a { color: #a9cf62; text-decoration: underline; }

.footer { background: #0c160d; color: #8fa48a; padding: 44px 0; font-size: .9rem; }
.footer-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 9px; color: #fff; font-family: var(--font-head); font-size: 1.05rem; }
.footer-brand img { border-radius: 6px; }
.footer-brand b { color: #a9cf62; }
.footer nav { margin-left: auto; display: flex; gap: 20px; }
.footer nav a:hover { color: #fff; }
@media (max-width: 720px) { .footer nav { margin-left: 0; } }

/* ---------- Scroll-Reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .5s; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .tilt { transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Rechtsseiten (Impressum/Datenschutz) ---------- */
.legal-hero { background: var(--dark); color: #fff; padding: 90px 0 56px; }
.legal-back { display: inline-block; color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 28px; transition: color .2s; }
.legal-back:hover { color: #fff; }
.legal-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.legal-sub { color: #b9c7b4; margin-top: .8rem; }
.legal-body { padding: 64px 0 96px; }
.legal-body section { padding: 0; margin-bottom: 2.6rem; }
.legal-body h2 { font-size: 1.35rem; margin-bottom: .7rem; }
.legal-body h3 { margin-bottom: .5rem; }
.legal-body p { color: #4a4a4a; margin-bottom: .7rem; }
.legal-body ul { margin: .6rem 0 .9rem 1.3rem; color: #4a4a4a; }
.legal-body li { margin-bottom: .5rem; }
.legal-body a { color: var(--primary-dark); text-decoration: underline; }
.legal-note { background: var(--bg-soft); border-left: 4px solid var(--primary); border-radius: 12px; padding: 22px 24px; }
.legal-copy { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
