/* How it works Section */


.how-it-works {
    background: #000000;
    padding: 6rem 0;
    position: relative;
}


.steps-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2F80ED 0%, #8E44FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}


.step-content {
    flex: 1;
}


.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}


.step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}


/* Phone Mockup */


.phone-mockup {
    display: flex;
    justify-content: center;
}


.phone {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}


.phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    border: 2px solid rgba(47, 128, 237, 0.3);
    pointer-events: none;
}


.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.phone-header {
    padding: 1rem;
    background: #111111;
}


.search-bar {
    background: #222222;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}


.phone-tabs {
    display: flex;
    background: #111111;
    border-bottom: 1px solid #333333;
}


.tab {
    flex: 1;
    padding: 0.75rem 0.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}


.tab.active {
    color: #2F80ED;
    border-bottom: 2px solid #2F80ED;
}


.phone-content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}


.listing-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #111111;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}


.listing-image {
    width: 60px;
    height: 60px;
    background: #333333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}


.listing-title {
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 0.25rem;
}


.listing-price {
    color: #2F80ED;
    font-weight: 600; 
}