/* Small Business landing content (eligibility + features) */

.smb-hero {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&h=600&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.smb-hero-overlay {
    position: absolute;
    inset: 0;
    background: #002d74;
    opacity: 0.7;
}

.smb-hero-content {
    position: relative;
    padding: 60px 20px 70px;
    max-width: 900px;
}

.smb-hero-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 10px;
}

.smb-hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 18px;
}

.smb-hero-text {
    font-size: 15px;
    margin: 0 0 26px;
}

.smb-hero-button {
    font-size: 15px;
}

@media (max-width: 768px) {
    .smb-hero {
        min-height: 260px;
    }

    .smb-hero-content {
        padding: 40px 16px 50px;
    }

    .smb-hero-title {
        font-size: 26px;
    }

    .smb-hero-subtitle {
        font-size: 16px;
    }

    .smb-hero-text {
        font-size: 14px;
    }
}

.smb-landing-wrapper {
    /* Use full content width of the current page container */
    max-width: 100%;
    margin: 40px 0 50px 0;
    padding: 0;
    font-family: inherit;
}

.smb-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #003b51;
    margin: 0 0 8px 0;
}

.smb-section-subtitle {
    text-align: center;
    color: #5f6f7a;
    margin: 0 0 30px 0;
    font-size: 16px;
}

.smb-grid {
    display: grid;
    gap: 18px;
}

.smb-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .smb-grid--2 {
        grid-template-columns: minmax(0, 1fr);
    }
}

.smb-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 22px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.smb-card-icon {
    flex: 0 0 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.smb-card-icon--success {
    background-color: #2bb673;
    position: relative;
}

.smb-card-icon--success::before {
    content: '✓';
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}

.smb-card-icon--outline {
    border: none;
    background-color: #003b51;
    position: relative;
}

/* Icons for feature cards (use simple glyphs to match design) */
.smb-card--feature:nth-child(1) .smb-card-icon--outline::before {
    content: '✓';
}
.smb-card--feature:nth-child(2) .smb-card-icon--outline::before {
    content: '🔒';
}
.smb-card--feature:nth-child(3) .smb-card-icon--outline::before {
    content: '📄';
}
.smb-card--feature:nth-child(4) .smb-card-icon--outline::before {
    content: '★';
}
.smb-card--feature:nth-child(5) .smb-card-icon--outline::before {
    content: 'ⓘ';
}

.smb-card--feature .smb-card-icon--outline::before {
    color: #ffffff;
    font-size: 20px;
}

.smb-card-content {
    flex: 1;
}

.smb-card-title {
    margin: 0 0 4px 0;
    font-size: 17px;
    font-weight: 600;
    color: #003b51;
}

.smb-card-text {
    margin: 0;
    font-size: 14px;
    color: #5f6f7a;
}

.smb-features {
    margin-top: 40px;
}

.smb-grid--features {
    margin-top: 6px;
}

.smb-cta {
    margin-top: 40px;
}

.smb-cta-inner {
    background-color: #003b51;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    color: #ffffff;
}

.smb-cta-title {
    margin: 0 0 16px 0;
    font-size: 24px;
    font-weight: 700;
}

.smb-btn-primary {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 999px;
    background-color: #2bb673;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.smb-btn-primary:hover {
    background-color: #22925c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

