/* ===== SECURED BUSINESS LOAN STYLES ===== */

/* Variables */
:root {
    --primary-dark: #0d214f;
    --primary-blue: #0067da;
    --light-blue: #29b9ed;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.sbl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.sbl-hero {
    position: relative;
    background: var(--gradient-primary);
    padding: 70px 0 60px;
    overflow: hidden;

}

.sbl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(41, 185, 237, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.sbl-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sbl-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatShapeSBL 25s infinite ease-in-out;
}

.sbl-shape-1 {
    width: 350px;
    height: 350px;
    top: -80px;
    right: 15%;
    animation-delay: 0s;
}

.sbl-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -60px;
    left: 10%;
    animation-delay: 8s;
}

.sbl-shape-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes floatShapeSBL {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -25px) rotate(120deg);
    }

    66% {
        transform: translate(-15px, 20px) rotate(240deg);
    }
}

.sbl-hero-container {
    position: relative;
    z-index: 2;
    /* max-width, width, margin handled by .container */
    padding: 0;
}

.sbl-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sbl-hero-left {
    max-width: 600px;
}

.sbl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sbl-hero-left h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
}

.sbl-hero-left p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
}

.sbl-hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sbl-feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 30px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sbl-feature-tag i {
    color: #4ade80;
}

.sbl-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== HERO RIGHT - STAT BOXES ===== */
.sbl-hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.sbl-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sbl-stats-single {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.sbl-stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.sbl-stat-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sbl-stat-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sbl-stat-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.sbl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sbl-btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sbl-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.sbl-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.sbl-btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== SECTION HEADER ===== */
.sbl-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sbl-tag {
    display: inline-block;
    background: linear-gradient(135deg, #29b9ed, #2563eb);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.sbl-tag-white {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.sbl-section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 15px;
}

.sbl-section-header p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== WHY CHOOSE SECTION ===== */
.sbl-why-choose {
    padding: 80px 0;
    background: var(--white);
}

.sbl-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.sbl-section-header p {
    text-align: center;
    color: var(--text-gray);
}

/* Layout */
.sbl-features-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.sbl-feature-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

/* Reverse Layout */
.sbl-feature-reverse {
    grid-template-columns: 2fr 1fr;
}

.sbl-feature-reverse .sbl-feature-visual {
    order: 2;
}

.sbl-feature-reverse .sbl-feature-content {
    order: 1;
}

/* Icon Box */
.sbl-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sbl-feature-icon {
    width: 300px;
    height: 267px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* IMPORTANT: Keeps image inside rounded box */
    box-shadow: 0 15px 40px rgba(0, 103, 218, 0.25);
    transition: all 0.4s ease;
    padding: 0;
    /* remove internal spacing */
}

/* Image inside icon box */
.sbl-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills the box without stretching */
    border-radius: 30px;
    /* matches outer radius */
}


.sbl-feature-item:hover .sbl-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 103, 218, 0.35);
}

/* Content */
.sbl-feature-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.sbl-feature-content p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 2.8;
    text-align: justify;
    /* ★ FULL JUSTIFICATION ADDED ★ */
}

/* Responsive */
@media (max-width: 992px) {

    .sbl-feature-item,
    .sbl-feature-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sbl-feature-content p {
        text-align: justify;
    }

    .sbl-feature-reverse .sbl-feature-visual,
    .sbl-feature-reverse .sbl-feature-content {
        order: unset;
    }
}

/* ===== USE CASES SECTION ===== */
.sbl-use-cases {
    padding: 80px 0;
    background: var(--bg-light);
}

.sbl-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sbl-use-case-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sbl-use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 103, 218, 0.12);
    border-color: var(--primary-blue);
}

.sbl-use-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.sbl-use-case-card:hover .sbl-use-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.sbl-use-case-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sbl-use-case-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== ELIGIBILITY SECTION ===== */
.sbl-eligibility {
    padding: 80px 0;
    background: var(--white);
}

.sbl-eligibility-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sbl-eligibility-image {
    position: relative;
}

.sbl-eligibility-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(13, 33, 79, 0.15);
}

.sbl-stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
}

.sbl-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.sbl-stat-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sbl-stat-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sbl-stat-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.sbl-stat-box-white {
    flex: 1;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sbl-stat-box-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
}

.sbl-stat-box-white h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.sbl-stat-box-white p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.sbl-eligibility-content .sbl-tag {
    margin-bottom: 15px;
}

.sbl-eligibility-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.sbl-eligibility-content>p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.sbl-criteria-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sbl-criteria-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sbl-criteria-item:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 103, 218, 0.1);
    transform: translateX(5px);
}

.sbl-criteria-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 20px;
}

.sbl-criteria-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.sbl-criteria-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== DOCUMENTS SECTION ===== */
.sbl-documents {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.sbl-documents-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sbl-doc-category {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.sbl-doc-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 103, 218, 0.12);
}

.sbl-doc-header {
    text-align: center;
    margin-bottom: 25px;
}

.sbl-doc-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.sbl-doc-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.sbl-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sbl-doc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
}

.sbl-doc-list li:last-child {
    border-bottom: none;
}

.sbl-doc-list li i {
    color: var(--primary-blue);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== RATES SECTION ===== */
.sbl-rates {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.sbl-rates::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><circle cx="600" cy="100" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="700" cy="400" r="200" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat center;
    background-size: cover;
}

.sbl-rates-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sbl-rates-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.sbl-rates-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.sbl-btn-white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sbl-btn-white-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.sbl-rates-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sbl-rates-table table {
    width: 100%;
    border-collapse: collapse;
    color: var(--white);
}

.sbl-rates-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sbl-rates-table td {
    padding: 18px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.sbl-rates-table tr:last-child td {
    border-bottom: none;
}

.sbl-rates-table strong {
    font-weight: 600;
    color: var(--white);
}

/* ===== PROCESS SECTION ===== */
.sbl-process {
    padding: 80px 0;
    background: var(--white);
}

.sbl-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sbl-process-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sbl-process-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 103, 218, 0.12);
    border-color: var(--primary-blue);
}

.sbl-process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 103, 218, 0.08);
}

.sbl-process-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.sbl-process-card:hover .sbl-process-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotate(360deg) scale(1.1);
}

.sbl-process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.sbl-process-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== FAQ SECTION ===== */
.sbl-faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.sbl-faq-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.sbl-faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sbl-faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0, 103, 218, 0.1);
}

.sbl-faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: 'Poppins', Arial, sans-serif;
}

.sbl-faq-question:hover {
    color: var(--primary-blue);
}

.sbl-faq-question i {
    font-size: 20px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.sbl-faq-item.active .sbl-faq-question i {
    transform: rotate(180deg);
}

.sbl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.sbl-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.sbl-cta {
    padding: 80px 0;
    background: var(--white);
}

.sbl-cta-box {
    background: var(--gradient-primary);
    padding: 70px 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13, 33, 79, 0.3);
}

.sbl-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.sbl-cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.sbl-cta-box p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.sbl-btn-white {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.sbl-btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .sbl-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sbl-hero-content h1 {
        font-size: 42px;
    }

    .sbl-hero-content>p {
        font-size: 18px;
    }

    .sbl-feature-item,
    .sbl-feature-reverse {
        grid-template-columns: 1fr;
    }

    .sbl-feature-reverse .sbl-feature-visual {
        order: 1;
    }

    .sbl-feature-reverse .sbl-feature-content {
        order: 2;
    }

    .sbl-eligibility-layout {
        grid-template-columns: 1fr;
    }

    .sbl-eligibility-image {
        order: 2;
    }

    .sbl-eligibility-content {
        order: 1;
    }

    .sbl-rates-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .sbl-hero {
        padding: 100px 0 60px;
    }

    .sbl-hero-content h1 {
        font-size: 32px;
    }

    .sbl-hero-content>p {
        font-size: 16px;
    }

    .sbl-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .sbl-btn {
        width: auto;
        padding: 12px 25px;
    }

    .sbl-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .sbl-stat-box {
        padding: 20px 15px;
    }

    .sbl-stat-box h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .sbl-stats-single {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .sbl-section-header h2 {
        font-size: 32px;
    }

    .sbl-use-cases-grid {
        grid-template-columns: 1fr;
    }

    .sbl-documents-wrapper {
        grid-template-columns: 1fr;
    }

    .sbl-process-grid {
        grid-template-columns: 1fr;
    }

    .sbl-cta-box {
        padding: 50px 30px;
    }

    .sbl-cta-box h2 {
        font-size: 32px;
    }

    .sbl-eligibility-content h2,
    .sbl-rates-content h2 {
        font-size: 32px;
    }

    .sbl-feature-content h3 {
        font-size: 24px;
    }

    .sbl-eligibility-content {
        text-align: center;
    }

    .sbl-eligibility-image img {
        height: 400px;
    }
}