@charset "utf-8";

/* =====================================================
   HOW IT WORKS - GLOBALS & TYPOGRAPHY
===================================================== */
.hiw-section {
    padding: 120px 0;
}

.hiw-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.hiw-eyebrow {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 16px;
}

.hiw-section-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: var(--dark-deeper);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hiw-section-title span {
    color: var(--blue);
}

/* =====================================================
   HERO SECTION
===================================================== */
.hiw-hero {
    padding: 180px 0 100px;
    background: var(--dark-deeper);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hiw-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,111,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hiw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hiw-hero-title {
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 16px;
    line-height: 1;
}

.hiw-hero-title span {
    color: var(--blue);
}

.hiw-hero-subtitle {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hiw-hero-text {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* =====================================================
   STEP CARDS & GRID
===================================================== */
.hiw-sellers {
    background: var(--off-white);
}

.hiw-buyers {
    background: #fff;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

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

.step-card {
    background: #fff;
    border: 1px solid rgba(69, 75, 96, 0.06);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(69, 75, 96, 0.04);
    transition: var(--trans);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.hiw-buyers .step-card {
    background: var(--off-white);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(69, 75, 96, 0.08);
    border-color: rgba(0, 111, 255, 0.2);
}

.step-bg-number {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 180px;
    font-weight: 900;
    color: rgba(0, 111, 255, 0.04);
    line-height: 1;
    z-index: -1;
    user-select: none;
    transition: var(--trans);
}

.step-card:hover .step-bg-number {
    color: rgba(0, 111, 255, 0.08);
    transform: scale(1.05);
}

.step-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-deeper);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.step-content {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.7;
}

.step-content p {
    margin-bottom: 16px;
}

.step-content p:last-child {
    margin-bottom: 0;
}

.step-list {
    margin: 0 0 20px 20px;
    list-style: none;
}

.step-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 24px;
}

.step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--blue);
    font-weight: 800;
}

/* Callouts inside cards */
.highlight-box {
    background: rgba(0, 111, 255, 0.08);
    border-left: 4px solid var(--blue);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
    font-weight: 600;
    color: var(--dark-deeper);
}

.split-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    padding: 24px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-big {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-deeper);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-big.blue-text {
    color: var(--blue);
}

.stat-small {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

/* =====================================================
   WHY SELL WITH US (BENEFITS)
===================================================== */
.hiw-benefits {
    background: var(--dark-deeper);
    color: #fff;
    padding: 140px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-title {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.benefits-slogan {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.benefits-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.benefit-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 50px;
}

.benefit-box-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.benefit-list li span {
    color: var(--blue);
    font-weight: 900;
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1.2;
}

.benefits-footer {
    text-align: center;
    font-size: 22px;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-footer strong {
    display: block;
    color: var(--blue);
    font-size: 32px;
    font-weight: 900;
    margin-top: 20px;
    letter-spacing: -0.5px;
}




/*Step gaurd on Terms fix*/
.step-card-terms {
    background: #fff;
    border: 1px solid rgba(69, 75, 96, 0.06);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(69, 75, 96, 0.04);
    transition: var(--trans);
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin: 0 0 30px;
}

.hiw-buyers .step-card-terms {
    background: var(--off-white);
}

.step-card-terms:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(69, 75, 96, 0.08);
    border-color: rgba(0, 111, 255, 0.2);
}




/* =====================================================
   RESPONSIVE DESIGN
===================================================== */
@media only screen and (max-width: 960px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .hiw-section {
        padding: 80px 0;
    }
    
    .hiw-hero {
        padding: 140px 0 80px;
    }
    
    .step-card, .benefit-box {
        padding: 30px;
    }
    
    .step-bg-number {
        font-size: 120px;
        top: -10px;
        right: -10px;
    }
    
    .split-stats {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
}

@media only screen and (max-width: 500px) {
	.step-grid {
		grid-template-columns: inherit;
	}
}