/* ============================================================
   VerlustRückholung – Custom Styles
   Bootstrap 5.3 base
   ============================================================ */

:root {
    --primary:   #0d2b5e;
    --secondary: #1a4a9e;
    --accent:    #f5a623;
    --dark:      #0a1628;
    --light-bg:  #f4f6fb;
}

/* Base */
body {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    overflow-x: hidden;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* ===== CRYPTO TICKER STRIP ===== */
.ticker-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    height: 36px;
    overflow: hidden;
}

.ticker-label-box {
    flex-shrink: 0;
    background: var(--accent);
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ticker-track-wrap {
    overflow: hidden;
    flex: 1;
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 35s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    border-right: 1px solid rgba(255,255,255,0.08);
}

.ticker-item .sym { font-weight: 700; color: #fff; }
.ticker-item .val { }
.ticker-item .chg-up   { color: #22c55e; font-weight: 600; }
.ticker-item .chg-down { color: #ef4444; font-weight: 600; }

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Adjust nav to sit below the ticker strip */
#mainNav {
    top: 36px;
    background: rgba(13, 43, 94, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, #163c82 100%);
    position: relative;
    padding-top: 140px; /* ticker 36 + nav ~80 + spacing */
    padding-bottom: 4rem;
}

/* Animated canvas behind hero content */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(245,166,35,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(26,74,158,0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.text-white-75 { color: rgba(255,255,255,0.75) !important; }

/* ===== FLOATING PRICE TAGS ===== */
.hero-price-tags {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.price-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.78rem;
    color: #fff;
    white-space: nowrap;
    animation: floatTag 6s ease-in-out infinite;
}

.price-tag:nth-child(2) { animation-delay: -2s; }
.price-tag:nth-child(3) { animation-delay: -4s; }
.price-tag:nth-child(4) { animation-delay: -1s; }

.pt-sym { font-weight: 700; color: rgba(255,255,255,0.9); }
.pt-val { font-weight: 600; }
.pt-chg.up   { color: #22c55e; font-weight: 700; }
.pt-chg.down { color: #ef4444; font-weight: 700; }

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ===== LIVE DOT ===== */
.live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.live-dot-sm {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ===== HERO FORM CARD ===== */
.hero-form-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    overflow: hidden;
}

.hero-form-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-form-body {
    padding: 1.5rem;
}

.hero-form-footer {
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-input {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 0.6rem 1rem !important;
}

.hero-input::placeholder { color: rgba(255,255,255,0.45) !important; }
.hero-input:focus {
    background: rgba(255,255,255,0.15) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0.2rem rgba(245,166,35,0.25) !important;
}

.hero-input-prefix {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-right: none !important;
    color: rgba(255,255,255,0.7) !important;
    border-radius: 10px 0 0 10px !important;
}

.btn-hero-submit {
    border-radius: 10px !important;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

/* ===== TRUST BANNER ===== */
.trust-banner {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ===== NEWS TICKER ===== */
.news-ticker-bar {
    background: linear-gradient(90deg, #0d2b5e 0%, #1a4a9e 100%);
    padding: 0;
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.news-ticker-label {
    flex-shrink: 0;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-ticker-wrap {
    overflow: hidden;
    flex: 1;
}

.news-ticker-inner {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.88);
    padding-left: 100%;
    animation: newsScroll 60s linear infinite;
}

.news-ticker-inner span { margin: 0 8px; }

@keyframes newsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== AI SECTION ===== */
.ai-section {
    background: linear-gradient(135deg, #060e1f 0%, #0d2b5e 60%, #0f1e3d 100%);
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* AI process steps */
.ai-steps { display: flex; flex-direction: column; gap: 1.25rem; }

.ai-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.ai-step-item.active,
.ai-step-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(245,166,35,0.3);
}

.ai-step-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ai-step-content { flex: 1; }

/* AI canvas */
.ai-canvas-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    aspect-ratio: 4/3;
}

.ai-canvas-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.ai-canvas-hud {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6,14,31,0.85);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}

.ai-hud-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-hud-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.ai-hud-val   { font-size: 0.82rem; font-weight: 700; font-family: monospace; }

/* ===== STEP TIMELINE ===== */
.step-timeline { position: relative; padding-left: 0; }

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 36px;
    bottom: -10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ===== ADVANTAGE CARDS ===== */
.advantage-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
    border-color: var(--accent);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SCAM CARDS ===== */
.scam-card {
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.scam-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--secondary) !important;
}

.scam-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245,166,35,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}

.stat-number {
    line-height: 1;
    display: inline-block;
}

.stat-unit {
    display: inline-block;
    vertical-align: top;
    margin-top: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.carousel-control-prev,
.carousel-control-next {
    width: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

/* ===== LEAD FORM ===== */
.form-sidebar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 2.5rem 2rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(26,74,158,0.15);
}

/* ===== FALL PRÜFEN MODAL ===== */
.fall-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.fall-modal-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 1.5rem;
}

.fall-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9ff;
    border: 1px solid #e8edff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3748;
}

/* ===== ENGAGEMENT MODAL ===== */
.engagement-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.engagement-modal-body {
    padding: 0;
}

.engagement-left {
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary) 100%);
    min-height: 380px;
}

.engagement-right {
    background: #fff;
}

.engagement-icon {
    width: 80px;
    height: 80px;
    background: rgba(245,166,35,0.15);
    border: 2px solid rgba(245,166,35,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
}

.engagement-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.15);
    border-radius: 50%;
    opacity: 0.7;
}

.engagement-close:hover { opacity: 1; }

/* ===== FAQ ===== */
.accordion-button:not(.collapsed) {
    background-color: rgba(13,43,94,0.05);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--dark);
}

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

[data-aos="fade-up"]    { animation: fadeInUp 0.6s ease forwards; }
[data-aos="fade-right"] { animation: fadeInRight 0.6s ease forwards; }
[data-aos="fade-left"]  { animation: fadeInLeft 0.6s ease forwards; }

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* z-index helper */
.z-1 { z-index: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section { min-height: auto; padding-top: 120px; }
    .py-6 { padding-top: 3rem; padding-bottom: 3rem; }
    .hero-price-tags { display: none !important; }
}
@media (max-width: 575px) {
    .ticker-strip { height: 30px; }
    #mainNav { top: 30px; }
    .hero-section { padding-top: 110px; }
}

/* ============================================================
   FALL PRÜFEN MODAL – Professional Redesign
   ============================================================ */

/* Override modal-xl width for centered beauty */
#fallPruefenModal .modal-xl { max-width: 900px; }

.fall-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

/* Modal header: gradient bar */
.fall-modal-header-inner {
    background: linear-gradient(135deg, #060e1f 0%, #0d2b5e 55%, #1a4a9e 100%);
}

/* Trust badge strip inside header */
.fall-badges-strip {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.fall-badge {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s ease;
}

.fall-badge:last-child { border-right: none; }

.fall-badge i {
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.fall-badge strong { color: #fff; }

/* Left sidebar */
.fall-modal-sidebar {
    background: linear-gradient(160deg, #0a1628 0%, #0f2248 100%);
    border-right: 1px solid rgba(255,255,255,0.07);
}

.fall-sidebar-list {
    margin: 0;
    padding: 0;
}

.fall-sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.82);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.fall-sidebar-list li i {
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.fall-stat-mini {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 14px;
}

.fall-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.fall-stat-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
}

/* Form sections */
.fall-form-section {
    background: #f8faff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 20px;
}

.fall-form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a202c;
    margin-bottom: 16px;
}

.fall-section-num {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

/* Input group icon styling */
.fall-form-section .input-group-text {
    border-color: #dee2e6;
    color: #6c757d;
}

.fall-form-section .form-control,
.fall-form-section .form-select {
    border-color: #dee2e6;
}

.fall-form-section .form-control:focus,
.fall-form-section .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(245,166,35,0.18);
}

/* Submit button */
.fall-submit-btn {
    background: linear-gradient(135deg, #f5a623 0%, #e69420 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 20px rgba(245,166,35,0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fall-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245,166,35,0.45);
}

/* letter-spacing utility */
.letter-spacing { letter-spacing: 0.08em; }
