/* ============================================
   Setup Guide Component - Clean Minimal 2025 Design
   ============================================ */

.c-setup-guide {
    min-height: 100vh;
    background: #f8fafc;
}

/* Hero Section - Clean, White */
.c-setup-guide__hero {
    background: #ffffff;
    padding: 48px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.c-setup-guide__hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.c-setup-guide__back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.c-setup-guide__back-link:hover {
    color: #0f766e;
}

.c-setup-guide__back-link svg {
    width: 16px;
    height: 16px;
}

.c-setup-guide__title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.c-setup-guide__subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Hero Meta Stats */
.c-setup-guide__hero-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.c-setup-guide__hero-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.c-setup-guide__hero-stat svg {
    width: 18px;
    height: 18px;
    color: #94a3b8;
}

/* Requirements Banner - Minimal */
.c-setup-guide__requirements-banner {
    background: #f1f5f9;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.c-setup-guide__requirements-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.c-setup-guide__requirements-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.c-setup-guide__requirements-items {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.c-setup-guide__requirements-items span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 13px;
    color: #334155;
    font-weight: 500;
}

/* Main Content */
.c-setup-guide__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* Section */
.c-setup-guide__section {
    margin-bottom: 24px;
}

.c-setup-guide__section:last-of-type {
    margin-bottom: 0;
}

.c-setup-guide__section-header {
    margin-bottom: 32px;
}

.c-setup-guide__section-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

/* Badge color variants - subtle */
.c-setup-guide__section-badge--stripe {
    background: #fef3c7;
    border-color: #fde68a;
    color: #92400e;
}

.c-setup-guide__section-badge--details {
    background: #e0f2fe;
    border-color: #bae6fd;
    color: #0369a1;
}

.c-setup-guide__section-badge--bank {
    background: #dcfce7;
    border-color: #bbf7d0;
    color: #166534;
}

.c-setup-guide__section-badge--verify {
    background: #fce7f3;
    border-color: #fbcfe8;
    color: #9d174d;
}

.c-setup-guide__section-badge--id {
    background: #f3e8ff;
    border-color: #e9d5ff;
    color: #7c3aed;
}

.c-setup-guide__section-badge--bluefundr {
    background: #ccfbf1;
    border-color: #99f6e4;
    color: #0f766e;
}

.c-setup-guide__section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.c-setup-guide__section-description {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* Step Card */
.c-setup-guide__step {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    transition: border-color 0.2s ease;
}

.c-setup-guide__step:hover {
    border-color: #cbd5e1;
}

.c-setup-guide__step-header {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.c-setup-guide__step-header:has(+ .c-setup-guide__warning),
.c-setup-guide__step-header:has(+ .c-setup-guide__tip),
.c-setup-guide__step-header:has(+ .c-setup-guide__info) {
    margin-bottom: 20px;
}

.c-setup-guide__step-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #0f766e;
    color: white;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-setup-guide__step-info {
    flex: 1;
    min-width: 0;
}

.c-setup-guide__step-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.c-setup-guide__step-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.c-setup-guide__step-description strong {
    color: #334155;
    font-weight: 600;
}

/* Screenshot */
.c-setup-guide__screenshot {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 16px;
}

.c-setup-guide__screenshot img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Tip Box */
.c-setup-guide__tip {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    font-size: 14px;
    color: #166534;
    line-height: 1.5;
}

.c-setup-guide__tip svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #22c55e;
    margin-top: 1px;
}

.c-setup-guide__tip strong {
    font-weight: 600;
}

.c-setup-guide__tip + .c-setup-guide__tip,
.c-setup-guide__tip + .c-setup-guide__warning,
.c-setup-guide__tip + .c-setup-guide__info {
    margin-top: 12px;
}

/* Warning Box */
.c-setup-guide__warning {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 10px;
    font-size: 14px;
    color: #854d0e;
    line-height: 1.5;
}

.c-setup-guide__warning svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #eab308;
    margin-top: 1px;
}

.c-setup-guide__warning strong {
    font-weight: 600;
}

.c-setup-guide__warning + .c-setup-guide__tip,
.c-setup-guide__warning + .c-setup-guide__warning,
.c-setup-guide__warning + .c-setup-guide__info {
    margin-top: 12px;
}

/* Info Box */
.c-setup-guide__info {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    font-size: 14px;
    color: #1e40af;
    line-height: 1.5;
}

.c-setup-guide__info svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #3b82f6;
    margin-top: 1px;
}

.c-setup-guide__info + .c-setup-guide__tip,
.c-setup-guide__info + .c-setup-guide__warning,
.c-setup-guide__info + .c-setup-guide__info {
    margin-top: 12px;
}

/* What Happens Next Section */
.c-setup-guide__next-steps {
    margin-top: 48px;
}

.c-setup-guide__next-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.c-setup-guide__next-description {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 24px 0;
}

/* Two-Path Layout */
.c-setup-guide__next-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.c-setup-guide__next-path {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
}

.c-setup-guide__next-path--instant {
    border-color: #bbf7d0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.c-setup-guide__next-path--review {
    border-color: #fed7aa;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.c-setup-guide__next-path-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.c-setup-guide__next-path-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-setup-guide__next-path--instant .c-setup-guide__next-path-icon {
    background: #dcfce7;
    color: #16a34a;
}

.c-setup-guide__next-path--review .c-setup-guide__next-path-icon {
    background: #fed7aa;
    color: #ea580c;
}

.c-setup-guide__next-path-icon svg {
    width: 20px;
    height: 20px;
}

.c-setup-guide__next-path-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.c-setup-guide__next-path-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 100px;
}

.c-setup-guide__next-path--instant .c-setup-guide__next-path-badge {
    background: #dcfce7;
    color: #166534;
}

.c-setup-guide__next-path--review .c-setup-guide__next-path-badge {
    background: #fed7aa;
    color: #9a3412;
}

.c-setup-guide__next-path-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.c-setup-guide__next-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-setup-guide__next-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.c-setup-guide__next-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-setup-guide__next-icon svg {
    width: 16px;
    height: 16px;
    color: #64748b;
}

.c-setup-guide__next-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.c-setup-guide__next-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Help CTA */
.c-setup-guide__help-cta {
    text-align: center;
    padding: 48px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 48px;
}

.c-setup-guide__help-cta h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.c-setup-guide__help-cta p {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 24px 0;
}

.c-setup-guide__help-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.c-setup-guide__help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.c-setup-guide__help-btn svg {
    width: 18px;
    height: 18px;
}

.c-setup-guide__help-btn--secondary {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.c-setup-guide__help-btn--secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.c-setup-guide__help-btn--primary,
.c-setup-guide__help-btn--primary:visited,
.c-setup-guide__help-btn--primary:link {
    background: #0f766e;
    color: white !important;
    border: 1px solid #0f766e;
    text-decoration: none !important;
}

.c-setup-guide__help-btn--primary:hover,
.c-setup-guide__help-btn--primary:focus,
.c-setup-guide__help-btn--primary:active {
    background: #0d9488;
    border-color: #0d9488;
    color: white !important;
    text-decoration: none !important;
    outline: none;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .c-setup-guide__help-btn--primary,
    .c-setup-guide__help-btn--primary:visited,
    .c-setup-guide__help-btn--primary:link,
    .c-setup-guide__help-btn--primary:hover,
    .c-setup-guide__help-btn--primary:focus,
    .c-setup-guide__help-btn--primary:active {
        color: white !important;
        text-decoration: none !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .c-setup-guide__hero {
        padding: 32px 20px;
    }

    .c-setup-guide__title {
        font-size: 28px;
    }

    .c-setup-guide__subtitle {
        font-size: 16px;
    }

    .c-setup-guide__hero-meta {
        gap: 16px;
    }

    .c-setup-guide__requirements-banner {
        padding: 14px 20px;
    }

    .c-setup-guide__requirements-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .c-setup-guide__requirements-items {
        gap: 6px;
    }

    .c-setup-guide__requirements-items span {
        padding: 5px 10px;
        font-size: 12px;
    }

    .c-setup-guide__content {
        padding: 32px 20px 64px;
    }

    .c-setup-guide__section-title {
        font-size: 24px;
    }

    .c-setup-guide__step {
        padding: 20px;
    }

    .c-setup-guide__step-header {
        flex-direction: column;
        gap: 12px;
    }

    .c-setup-guide__step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .c-setup-guide__step-title {
        font-size: 17px;
    }

    .c-setup-guide__next-paths {
        grid-template-columns: 1fr;
    }

    .c-setup-guide__next-path {
        padding: 20px;
    }

    .c-setup-guide__help-buttons {
        flex-direction: column;
    }

    .c-setup-guide__help-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .c-setup-guide__hero {
        padding: 24px 16px;
    }

    .c-setup-guide__title {
        font-size: 24px;
    }

    .c-setup-guide__subtitle {
        font-size: 15px;
    }

    .c-setup-guide__requirements-banner {
        padding: 12px 16px;
    }

    .c-setup-guide__requirements-items span {
        padding: 4px 8px;
        font-size: 11px;
    }

    .c-setup-guide__content {
        padding: 24px 16px 48px;
    }

    .c-setup-guide__section-title {
        font-size: 22px;
    }

    .c-setup-guide__step {
        padding: 16px;
        border-radius: 10px;
    }

    .c-setup-guide__step-title {
        font-size: 16px;
    }

    .c-setup-guide__step-description {
        font-size: 14px;
    }

    .c-setup-guide__screenshot {
        padding: 8px;
    }

    .c-setup-guide__tip,
    .c-setup-guide__warning {
        padding: 12px;
        font-size: 13px;
    }

    .c-setup-guide__next-path {
        padding: 16px;
    }

    .c-setup-guide__next-title {
        font-size: 20px;
    }

    .c-setup-guide__help-cta {
        padding: 32px 20px;
    }

    .c-setup-guide__help-cta h2 {
        font-size: 20px;
    }
}
