/* ══════════════════════════════════════════════════════════
   Everything You Need - Onboarding Cards Section Styles
   ══════════════════════════════════════════════════════════ */

/* ── Grid Layout ─────────────────────────────────────────── */
.onboarding-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* ── Individual Card ─────────────────────────────────────── */
.onboarding-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.onboarding-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
}

/* ── Visual Area (top of card) ───────────────────────────── */
.card-visual {
    width: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}
.visual-inner {
    width: 100%;
    max-width: 260px;
}

/* ── Text Area (bottom of card) ──────────────────────────── */
.card-text {
    padding: 1.8rem 1.6rem;
    flex: 1;
}
.step-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.18);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    margin-bottom: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.card-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}
.card-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Welcome Screen (Card 1) ─────────────────────────────── */
.welcome-screen {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.screen-topbar {
    background: rgba(0,0,0,0.08);
    padding: 0.5rem 0.8rem;
    display: flex;
    gap: 5px;
    align-items: center;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    display: inline-block;
}
.screen-body {
    padding: 1.2rem 1.2rem 1.4rem;
    text-align: center;
}
.welcome-icon { font-size: 2rem; margin-bottom: 0.3rem; }
.welcome-text { color: #1a1a1a; font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
.connect-items { text-align: left; }
.connect-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-size: 0.85rem;
    margin-bottom: 0.45rem;
}
.connect-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.connect-dot.green { background: #22c55e; }
.connect-dot.blue { background: #3b82f6; }
.connect-dot.anim { animation: pulse-dot 1.2s ease-in-out infinite; }
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* ── Profile Screen (Card 2) ─────────────────────────────── */
.profile-screen {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.15);
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}
.profile-avatar {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.profile-label { color: #ffffff; font-weight: 600; font-size: 0.95rem; }
.profile-fields { display: flex; flex-direction: column; gap: 0.75rem; }
.profile-field {}
.field-label { color: rgba(255,255,255,0.65); font-size: 0.75rem; display: block; margin-bottom: 0.3rem; }
.progress-bar {
    height: 7px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9));
    border-radius: 20px;
}
.progress-fill.anim-fill { animation: grow-bar 2s ease-in-out infinite alternate; }
@keyframes grow-bar {
    from { width: 40%; }
    to { width: 70%; }
}

/* ── Deploy Screen (Card 3) ──────────────────────────────── */
.deploy-screen {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.4rem 1.2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}
.checkmark-circle {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}
.deploy-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.9rem;
}
.deploy-status-list { text-align: left; margin-bottom: 1rem; }
.status-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
}
.status-icon { font-size: 0.85rem; }
.deploy-btn-wrap { margin-top: 0.5rem; }
.deploy-cta {
    display: inline-block;
    background: #ffffff;
    color: #1e40af;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.deploy-cta:hover { background: rgba(255,255,255,0.88); color: #1e40af; text-decoration: none; }

/* ── Setup Info Box ──────────────────────────────────────── */
.setup-info-box {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: rgba(30, 64, 175, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 12px;
    padding: 1.2rem 1.6rem;
    margin-top: 0.5rem;
}
.setup-info-box .setup-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.setup-info-box p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.setup-info-box strong { color: #ffffff; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .onboarding-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .onboarding-card:last-child {
        grid-column: span 2;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .onboarding-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .onboarding-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    .card-visual {
        min-height: 200px;
    }
}