/* B2B Premium Landing Page Styles */

/* Hero Section */
.b2b-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: white;
    padding: 7rem 0 9rem 0;
    position: relative;
    overflow: hidden;
}

.b2b-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,170,0,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.b2b-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-tagline {
    background: rgba(255, 170, 0, 0.15);
    color: var(--color-accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
    border: 1px solid rgba(255, 170, 0, 0.2);
    letter-spacing: 0.05em;
}

/* Glassmorphic Stats Section */
.b2b-stats-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    margin-top: -5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.stat-item {
    padding: 2rem;
    text-align: center;
}

.stat-icon {
    font-size: 2.25rem;
    color: var(--color-primary-light);
    margin-bottom: 1rem;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Common */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Step Cards */
.step-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--color-primary-light);
}

.step-badge {
    background: var(--color-primary-light);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-main);
    color: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

/* Sector Card List */
.sector-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

.sector-img-wrapper {
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* Verified Firms */
.firm-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.firm-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    border-color: var(--color-primary-light);
}

/* Helpers & Utils */
.btn-accent {
    background-color: var(--color-accent);
    color: var(--text-main);
    border: 1px solid var(--color-accent);
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--text-main);
}
