.creditloop-product-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.creditloop-intro-text {
    animation: fadeInUp 0.8s ease;
}

.creditloop-intro-image {
    animation: fadeInRight 0.8s ease;
}

.creditloop-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.creditloop-section-alt {
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F0F8 100%);
}

.creditloop-text-center {
    text-align: center;
}

.creditloop-mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creditloop-mechanism-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.creditloop-mechanism-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-mechanism-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
}

.creditloop-mechanism-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.creditloop-mechanism-card p {
    color: var(--medium-color);
    line-height: 1.6;
}

.creditloop-parameters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creditloop-parameter-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.creditloop-parameter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-parameter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
}

.creditloop-parameter-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.creditloop-parameter-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.creditloop-parameter-card p {
    color: var(--medium-color);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.creditloop-fee-info {
    max-width: 800px;
    margin: 3rem auto 0;
}

.creditloop-fee-item {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.creditloop-fee-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.creditloop-fee-item h3 i {
    color: var(--primary-color);
}

.creditloop-fee-item p {
    color: var(--medium-color);
    line-height: 1.8;
}

.creditloop-fee-cta {
    text-align: center;
    margin-top: 3rem;
}

.creditloop-requirements-list {
    max-width: 700px;
    margin: 3rem auto 0;
}

.creditloop-requirement-item {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.creditloop-requirement-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.creditloop-requirement-item i {
    font-size: 2rem;
    color: var(--success-color);
    margin-top: 0.25rem;
}

.creditloop-requirement-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.creditloop-requirement-item p {
    color: var(--medium-color);
    line-height: 1.6;
}

.creditloop-requirements-cta {
    text-align: center;
    margin-top: 3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .creditloop-product-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .creditloop-mechanism-grid,
    .creditloop-parameters-grid {
        grid-template-columns: 1fr;
    }
}
