/* How it Works Page Styles */

/* Section One: For Professionals (Nodes) process steps */
.process-cards-five {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.process-cards-five .process-card {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.process-cards-five .process-card p {
    max-width: 200px;
    margin: 0 auto;
}

.process-cards-five .process-card:hover {
    transform: none;
    box-shadow: none;
}

.process-step-number {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #737373;
    color: #F5F5F5;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -12px auto 16px;
}

.process-icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.badge.coming-soon {
    background: #EDF2FF;
    color: #0051FF;
    border: 1px solid #C7D9FF;
}

.commission-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(213, 226, 249, 0.18);
    border-radius: 16px;
}

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

.commission-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.commission-banner p {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.5;
}

/* Section Two: What's Coming Soon */
.coming-soon-section {
    background: linear-gradient(180deg, #E0EBFE 0%, #FFFFFF 12%);
}

.marketing-page .coming-soon-section {
    background: linear-gradient(180deg, #101a3d 0%, #0a0f24 100%);
}

.marketing-page .coming-soon-section.light-section {
    background: #F8FAFF;
}

.feature-cards-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.feature-cards-four .feature-card {
    background: #FFFFFF;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    text-align: left;
}

.feature-cards-four .feature-card:hover {
    transform: none;
    box-shadow: none;
}

.feature-cards-four .feature-card-plain {
    display: block;
}

.feature-cards-four .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid #93c5fd;
    color: #1740cf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-cards-four .feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-cards-four h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.feature-cards-four p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

/* CTA Cards */
.cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-card {
    background: #FFFFFF;
    border: 1px solid rgba(213, 226, 249, 0.16);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.cta-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.cta-card-header-text {
    flex: 1;
}

.cta-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #08204c;
    margin-bottom: 8px;
}

.cta-card p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
}

.cta-card-btn {
    align-self: center;
    width: auto;
    display: block;
    text-align: center;
    background: #08204C;
    color: white;
    padding: 16px 40px;
}

.cta-card-btn:hover {
    background: #0a2a63;
}

.cta-card-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    color: #6B7280;
}

.cta-card-note svg {
    width: 14px;
    height: 14px;
}

.waitlist-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.waitlist-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.waitlist-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #F5F5F5;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #262626;
}

.waitlist-form input::placeholder {
    color: #9CA3AF;
}

.waitlist-submit {
    width: 100%;
    background: #22C55E;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
}

.waitlist-submit:hover {
    background: #16A34A;
}

.marketing-page .light-section .commission-banner {
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
}

.marketing-page .light-section .commission-banner p {
    color: #111827;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-cards-five {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-cards-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-cards {
        grid-template-columns: 1fr;
    }

    .cta-card-btn {
        width: 100%;
        font-size: 15px;
        padding: 14px 24px;
    }
}

@media (max-width: 640px) {
    .process-cards-five {
        grid-template-columns: 1fr;
    }

    .feature-cards-four {
        grid-template-columns: 1fr;
    }

    .waitlist-form-row {
        grid-template-columns: 1fr;
    }

    .commission-banner {
        flex-direction: column;
        text-align: center;
    }
}
