/* =========================================================
   Crypto Capital Masterclass – Checkout-Landingpage
   Design-Tokens und Basis-Styles gemaess Design/design.md
   ========================================================= */

/* ---------- Fonts (self-hosted, DSGVO) ---------- */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/inter-800.woff2") format("woff2");
}

/* ---------- Design-Tokens ---------- */

:root {
  /* Basis */
  --bg: #0e0e0f;
  --bg-elevated: #171717;
  --bg-surface: #212121;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.2);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #ababab;
  --text-muted: #9ea3bf;

  /* Akzent Orange/Amber */
  --accent: #f59e0b;
  --accent-bright: #ff8a1e;
  --accent-deep: #ea580c;
  --accent-soft: rgba(250, 166, 30, 0.3);
  --accent-faint: rgba(250, 166, 30, 0.08);
  --accent-text: #fcd34d;

  /* Semantik */
  --success: #07b042;
  --error: #de2900;

  /* Effekte */
  --cta-gradient: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent-deep) 100%);
  --cta-glow: 0 0 40px rgba(245, 158, 11, 0.35);
  --radius-btn: 12px;
  --radius-card: 16px;

  /* Layout */
  --container: 1160px;
  --section-pad: clamp(48px, 7vw, 88px);
}

/* ---------- Reset und Basis ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text-secondary);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-bright);
}

/* ---------- Typografie ---------- */

h1,
h2,
h3 {
  color: var(--text-primary);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
}

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

.underline-accent {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

/* ---------- Layout-Helfer ---------- */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-pad);
}

section[id] {
  scroll-margin-top: 76px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 64px);
}

/* ---------- Badge / Eyebrow-Pill ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head .badge {
  margin-bottom: 22px;
}

/* ---------- Buttons ---------- */

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border: none;
  border-radius: var(--radius-btn);
  background: var(--cta-gradient);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: var(--cta-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: cta-pulse 2.4s ease-in-out infinite;
}

.btn-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 0 56px rgba(245, 158, 11, 0.5);
  color: var(--text-primary);
}

.btn-cta:focus-visible {
  outline: 3px solid var(--accent-text);
  outline-offset: 3px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.28);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 52px rgba(245, 158, 11, 0.5);
    transform: scale(1.015);
  }
}

/* ---------- Cards ---------- */

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 32px);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.brand img {
  width: 44px;
  height: auto;
}

.btn-header {
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: 10px;
  animation: header-pulse 2.2s ease-in-out infinite;
}

@keyframes header-pulse {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.30);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.55);
    transform: scale(1.04);
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(12px, 2vw, 24px);
}

.hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}

/* Dezenter oranger Glow plus Logo-Wasserzeichen im Hintergrund */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 70% -10%, rgba(245, 158, 11, 0.10), transparent 70%),
    radial-gradient(700px 420px at 10% 110%, rgba(245, 158, 11, 0.05), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 520px;
  height: 494px;
  background: url("../assets/logo-ccm.webp") no-repeat center / contain;
  opacity: 0.04;
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.hero-copy .badge {
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.02rem;
  max-width: 540px;
  margin: 0 0 8px;
}

.check {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(7, 176, 66, 0.15);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-mockup img {
  width: 100%;
  max-width: 470px;
}

.hero-badges {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero-badges .check {
  width: 18px;
  height: 18px;
  margin-top: 0;
  font-size: 0.68rem;
}

/* ---------- Checkout-Box ---------- */

.checkout-box {
  position: sticky;
  top: 88px;
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  padding: clamp(24px, 3vw, 34px);
  scroll-margin-top: 96px;
}

.checkout-eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.package-toggle {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.package {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text-secondary);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.package:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.package:focus-visible {
  outline: 3px solid var(--accent-text);
  outline-offset: 2px;
}

.package.is-selected {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.package.is-selected .package-price {
  color: var(--text-primary);
}

.package-info {
  display: grid;
  gap: 2px;
}

.package-flag {
  display: inline-block;
  padding: 2px 9px;
  background: var(--cta-gradient);
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  color: var(--text-primary);
  font-size: 0.94rem;
  font-weight: 600;
}

.package-price {
  color: var(--text-secondary);
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.package-note {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.checkout-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 2px;
  margin-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.checkout-price {
  color: var(--text-primary);
  font-size: 1.6rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.btn-block {
  width: 100%;
}

/* ---------- Checkout-Schritte ---------- */

.checkout-step {
  animation: step-in 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.checkout-step-intro {
  margin: 0 0 6px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.checkout-step-summary {
  margin: 0 0 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.checkout-step-summary strong {
  color: var(--text-primary);
  font-weight: 600;
}

.checkout-back {
  display: block;
  margin: 14px auto 0;
  padding: 6px 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.checkout-back::before {
  content: "← ";
}

.checkout-back:hover {
  color: var(--text-primary);
}

/* ---------- Checkout-Kontaktfelder ---------- */

.checkout-fields {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 5px;
}

.field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input::placeholder {
  color: var(--text-muted);
}

.field input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.field input:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 1px;
}

/* Telefonfeld mit Laendervorwahl: Flagge + natives Select als
   unsichtbares Overlay, die Nummer wird per JS in das
   internationale Format (+49...) normalisiert. */

.phone-input {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.phone-input:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.phone-input:has(:focus-visible) {
  outline: 2px solid var(--accent-text);
  outline-offset: 1px;
}

.phone-prefix {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px 0 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.phone-prefix select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 16px;
}

.phone-flag {
  display: inline-flex;
  width: 21px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  flex: 0 0 auto;
}

.phone-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.phone-code {
  font-size: 0.92rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.phone-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-muted);
}

.field .phone-input input {
  border: none;
  background: transparent;
  min-width: 0;
  flex: 1;
}

.field .phone-input input:focus,
.field .phone-input input:focus-visible {
  border: none;
  background: transparent;
  outline: none;
}

.checkout-microcopy {
  margin: 14px 0 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.checkout-microcopy strong {
  color: var(--text-secondary);
}

.coin-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-footnote {
  margin: 14px 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.coin-chips img {
  height: 30px;
  width: auto;
  border-radius: 5px;
}

.coin-chip {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.coin-chip-muted {
  background: #ffffff;
  border: none;
  border-radius: 6px;
  color: #18181b;
  font-weight: 600;
  padding: 7px 14px;
}

/* ---------- Trust-Bar ---------- */

.trust-bar {
  margin-top: clamp(28px, 3.5vw, 44px);
  text-align: center;
}

.trust-label {
  margin: 0 0 20px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-marquee.marquee {
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.trust-marquee .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 70s linear infinite;
}

.trust-set {
  display: flex;
  align-items: center;
  gap: clamp(56px, 7vw, 96px);
  padding-right: clamp(56px, 7vw, 96px);
}

.trust-set img {
  width: auto;
  height: 26px;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.trust-set img:hover {
  opacity: 1;
}

.trust-set img[src*="chelsea"] {
  height: 40px;
}

.trust-set img[src*="tangem"] {
  height: 32px;
}

.trust-set img[src*="mexc"] {
  height: 28px;
}

.trust-logos img:hover {
  opacity: 1;
}

/* ---------- Responsive: Hero ---------- */

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

  .hero::after {
    display: none;
  }

  .checkout-box {
    position: static;
  }

  .hero-mockup {
    display: block;
    margin-inline: auto;
  }

  .hero-badges {
    display: none;
  }
}

/* ---------- Sektion: Was erwartet dich ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.feature-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-faint);
  border: 1px solid var(--accent-soft);
  color: var(--accent);
}

.learn-panel h3 {
  margin-bottom: 20px;
}

.learn-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

/* ---------- Sektion: Eignung ---------- */

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fit-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.fit-card li {
  position: relative;
  padding-left: 30px;
  font-size: 0.97rem;
}

.fit-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 700;
  font-size: 0.9rem;
}

.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.fit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

.fit-yes {
  border-top: 3px solid var(--success);
}

.fit-yes .fit-icon {
  background: rgba(7, 176, 66, 0.15);
  color: var(--success);
}

.fit-yes li::before {
  content: "✓";
  color: var(--success);
}

.fit-no {
  border-top: 3px solid var(--error);
}

.fit-no .fit-icon {
  background: rgba(222, 41, 0, 0.15);
  color: var(--error);
}

.fit-no li::before {
  content: "✕";
  color: var(--error);
}

/* ---------- Sektion: Ergebnisse ---------- */

.ergebnisse {
  position: relative;
  overflow: hidden;
}

.ergebnisse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 420px at 50% 0%, rgba(245, 158, 11, 0.06), transparent 70%);
  pointer-events: none;
}

.marquee {
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ergebnisse .marquee {
  max-width: 1080px;
  margin-inline: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
}

.marquee-reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 52s;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-set {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

.ergebnisse .marquee-set img {
  width: clamp(200px, 18vw, 245px);
  height: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.result-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 16px 0 0;
}

/* ---------- Zwischen-CTA ---------- */

.cta-banner {
  margin-top: clamp(40px, 5vw, 60px);
  padding: clamp(32px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.cta-banner h2 {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 28px;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  text-wrap: balance;
}

.cta-banner .checkout-microcopy {
  margin-top: 16px;
  margin-bottom: 0;
}

/* ---------- Sektion: Über Markus ---------- */

.markus {
  position: relative;
  overflow: hidden;
  padding-top: clamp(24px, 3vw, 40px);
}

.ergebnisse {
  padding-bottom: clamp(20px, 2.5vw, 36px);
}

.markus-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: stretch;
  max-width: 900px;
  margin-inline: auto;
}

.markus-badge {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.markus-copy p {
  max-width: 560px;
}

.markus-copy p:last-child {
  margin-bottom: 0;
}

/* Foto spannt sich exakt ueber die Hoehe des Textblocks */
.markus-photo {
  position: relative;
}

.markus-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: 130%;
  height: 75%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.16), transparent 65%);
  pointer-events: none;
}

.markus-photo picture {
  position: absolute;
  inset: 0;
  display: block;
}

.markus-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

@media (max-width: 900px) {
  .markus-grid {
    grid-template-columns: 1fr;
  }

  .markus-photo {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .markus-photo picture {
    position: static;
  }

  .markus-photo img {
    width: auto;
    height: auto;
    max-width: 280px;
  }
}

/* ---------- Sektions-CTA ---------- */

.section-cta {
  margin-top: clamp(26px, 3vw, 36px);
  text-align: center;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-btn);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

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

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

.faq-body {
  padding: 0 22px 20px;
  font-size: 0.93rem;
}

.faq-body p {
  margin: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: 48px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-disclaimer {
  max-width: 880px;
  margin: 0 0 20px;
  font-size: 0.75rem;
  line-height: 1.7;
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
}

/* ---------- Responsive: Sektionen ---------- */

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .learn-list {
    grid-template-columns: 1fr;
  }

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

/* ---------- Platzhalter (werden in spaeteren Schritten ersetzt) ---------- */

.placeholder-note {
  border: 1px dashed var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Entrance-Animationen (Seitenaufruf) ---------- */

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-copy > * {
  animation: rise-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.1s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.25s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.4s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.55s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.7s; }

.checkout-box {
  animation: slide-in-right 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s both;
}

.trust-bar {
  animation: rise-in 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.85s both;
}

/* ---------- Success-Seite (/krypto-success) ---------- */

.success-hero {
  position: relative;
  overflow: hidden;
}

.success-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 50% -10%, rgba(7, 176, 66, 0.10), transparent 70%);
  pointer-events: none;
}

.success-wrap {
  position: relative;
  max-width: 760px;
  text-align: center;
}

.success-wrap > * {
  animation: rise-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.success-wrap > *:nth-child(1) { animation-delay: 0.05s; }
.success-wrap > *:nth-child(2) { animation-delay: 0.2s; }
.success-wrap > *:nth-child(3) { animation-delay: 0.35s; }
.success-wrap > *:nth-child(4) { animation-delay: 0.5s; }
.success-wrap > *:nth-child(5) { animation-delay: 0.6s; }
.success-wrap > *:nth-child(6) { animation-delay: 0.75s; }
.success-wrap > *:nth-child(7) { animation-delay: 0.9s; }
.success-wrap > *:nth-child(8) { animation-delay: 1s; }

.success-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-inline: auto;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(7, 176, 66, 0.12);
  border: 1px solid rgba(7, 176, 66, 0.35);
  color: var(--success);
  box-shadow: 0 0 50px rgba(7, 176, 66, 0.25);
}

.success-check-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: success-draw 0.7s ease-out 0.5s forwards;
}

@keyframes success-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.badge-success {
  border-color: rgba(7, 176, 66, 0.35);
  background: rgba(7, 176, 66, 0.08);
  color: var(--success);
}

.success-wrap .hero-sub {
  margin-inline: auto;
}

.success-package {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.success-package strong {
  color: var(--text-primary);
}

.success-steps-wrap {
  margin-top: clamp(36px, 5vw, 56px);
  text-align: left;
}

.success-steps-title {
  text-align: center;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-bottom: 20px;
}

.success-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: none;
}

.success-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
}

.success-step h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.success-step p {
  margin: 0;
  font-size: 0.92rem;
}

.success-step-number {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.9rem;
}

.success-support {
  margin: clamp(28px, 4vw, 40px) auto 20px;
  max-width: 520px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Scroll-Reveals ----------
   Die Klassen werden ausschliesslich per JavaScript gesetzt.
   Ohne JS oder bei prefers-reduced-motion bleibt alles sichtbar. */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease var(--reveal-delay, 0s),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Barrierefreiheit / Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
