/* ===== Font Faces ===== */

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000; color: #fff; min-height: 100vh; overflow-x: hidden;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== Background Glows ===== */
.bg-glow { display: none; }

/* ===== Main Layout ===== */
.main { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; padding: 0 20px 60px; }

/* ===== Hero ===== */
.hero { padding: 80px 0 100px; text-align: center; }
.headline { font-size: 36px; font-weight: 700; letter-spacing: -1px; line-height: 1.08; color: #fff; }
.headline span { color: #006CFF; }

/* ===== Cards ===== */
.card { background: rgba(255,255,255,0.031); border: 1px solid rgba(255,255,255,0.078); border-radius: 20px; transition: background 0.3s, border-color 0.3s; }
.card:hover { background: rgba(10,31,74,0.4); border-color: rgba(0,108,255,0.4); }

/* ===== Steps ===== */
.steps { display: flex; flex-direction: column; gap: 70px; align-items: center; margin: 0 auto; }
.step-card { position: relative; padding: 44px 20px 28px; width: 100%; text-align: center; }
.step-badge { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: #006CFF; color: #fff; font-size: 14px; font-weight: 700; padding: 8px 22px; border-radius: 100px; white-space: nowrap; }
.step-icon { width: 56px; height: 56px; background: rgba(0,108,255,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-title { font-size: 30px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.step-text { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 24px; }

/* ===== Video ===== */
.video-wrapper { position: relative; padding-top: 56.25%; border-radius: 14px; overflow: hidden; background: rgba(0,0,0,0.3); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-placeholder { cursor: pointer; }
.video-thumb { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; background: rgba(0,0,0,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; transition: background 0.2s; }
.video-placeholder:hover .play-btn { background: rgba(0,0,0,0.8); }

/* ===== Button ===== */
.btn { display: inline-block; background: #006CFF; color: #fff; font-size: 15px; font-weight: 600; padding: 13px 30px; border-radius: 12px; transition: opacity 0.2s; }
.btn:hover { opacity: 0.85; }

/* ===== Step Warning ===== */
.step-warning { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,59,48,0.1); border: 1px solid rgba(255,59,48,0.3); border-radius: 12px; padding: 16px 20px; margin-bottom: 20px; text-align: left; justify-content: center; }
.step-warning__icon { flex-shrink: 0; font-size: 16px; line-height: 1.4; }
.step-warning__text { color: #fff; font-size: 14px; line-height: 1.5; }

/* ===== Finish Card ===== */
.finish { margin-top: 48px; }
.finish-card { width: 100%; padding: 40px 24px; text-align: center; }
.finish-icon { width: 64px; height: 64px; background: rgba(0,108,255,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.finish-title { font-size: 30px; font-weight: 600; line-height: 1.2; margin-bottom: 16px; color: #fff; }
.finish-title span { color: #006CFF; }
.finish-text { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===== Footer ===== */
.footer { position: relative; z-index: 1; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.078); padding: 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { height: 65px; width: auto; margin: 0 auto 16px; }
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer-bottom { display: flex; flex-direction: row; justify-content: space-around; margin-top: 24px; text-align: right; }
.footer-impressum { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; cursor: pointer; }
.footer-impressum:hover { color: rgba(255,255,255,0.6); }
.footer-rights { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.footer-sep { color: rgba(255,255,255,0.25); font-size: 13px; }

/* ===== Legal Pages ===== */
.legal-content { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.legal-content h1 { font-size: 48px; font-weight: 800; margin-bottom: 32px; letter-spacing: -1px; }
.legal-content h2 { font-size: 30px; font-weight: 700; margin-top: 40px; margin-bottom: 16px; }
.legal-content h3 { font-size: 23px; font-weight: 600; margin-top: 28px; margin-bottom: 12px; }
.legal-content p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; }
.legal-content a { color: #006CFF; text-decoration: underline; }
.legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-content li { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 6px; }

/* ===== Responsive ===== */
@media (min-width: 641px) {
    .headline { font-size: 52px; letter-spacing: -1.5px; }
    .hero { padding: 100px 0 120px; }
    .header-inner { padding: 0 32px; }
    .main { padding: 0 32px 80px; }
    .step-card { padding: 48px 36px 36px; }
    .finish-card { padding: 48px 40px; }
}
@media (min-width: 769px) {
    .step-title { font-size: 35px; }
    .finish-title { font-size: 40px; }
}
@media (min-width: 901px) {
    .headline { font-size: 75px; letter-spacing: -2px; }
}
