/* Featured On Section */
.featured-on
{
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light-background);
}

.featured-on .logos-grid
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.featured-on .logos-grid img
{
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.featured-on .logos-grid img:hover
{
    filter: grayscale(0%);
    opacity: 1;
}

/* How We Work Section */
.how-we-work
{
    padding: var(--spacing-xl) 0;
}

.how-we-work .process-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.how-we-work .process-step
{
    text-align: center;
}

.how-we-work .process-icon
{
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background-color: var(--color-light-background);
    transition: all 0.3s ease;
}

.how-we-work .process-step:hover .process-icon
{
    transform: scale(1.1);
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.how-we-work .process-step h3
{
    margin-bottom: var(--spacing-sm);
}

/* FAQ Accordion Modern Style */
.faq-accordion
{
    max-width: 700px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item
{
    background: #f6f8fb;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.04);
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item.active
{
    box-shadow: 0 4px 16px rgba(67, 97, 238, 0.10);
}

.faq-question
{
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #232946;
    padding: 1.25rem 2rem 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    outline: none;
    transition: background 0.2s;
}

.faq-question:hover
{
    background: #e9ecef;
}

.faq-toggle
{
    font-size: 1.5rem;
    color: #4361ee;
    font-weight: 700;
    margin-left: 1.5rem;
    transition: transform 0.3s;
    user-select: none;
}

.faq-item.active .faq-toggle
{
    transform: rotate(45deg);
}

.faq-answer
{
    max-height: 0;
    overflow: hidden;
    background: #f6f8fb;
    color: #444;
    font-size: 1rem;
    padding: 0 2rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-item.active .faq-answer
{
    padding: 0 2rem 1.25rem 1.5rem;
    max-height: 300px;
}

@media (max-width: 700px)
{
    .faq-accordion
    {
        max-width: 100%;
        padding: 0 1rem;
    }

    .faq-question,
    .faq-answer
    {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Contact Success Modal Styles */
.success-modal
{
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 41, 70, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.success-modal-content
{
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(67, 97, 238, 0.15);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    min-width: 320px;
    max-width: 90vw;
    animation: modalPopIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-animation
{
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-animation svg
{
    display: block;
    margin: 0 auto;
    animation: successCheck 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalPopIn
{
    0%
    {
        transform: scale(0.8);
        opacity: 0;
    }

    100%
    {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes successCheck
{
    0%
    {
        stroke-dasharray: 0 100;
        opacity: 0;
    }

    40%
    {
        opacity: 1;
    }

    100%
    {
        stroke-dasharray: 100 0;
        opacity: 1;
    }
}

.success-modal h3
{
    color: #4361ee;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.success-modal p
{
    color: #232946;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.close-success-modal
{
    margin-top: 0.5rem;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    border-radius: 8px;
    background: #4361ee;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.close-success-modal:hover
{
    background: #3a56d4;
}

@media (max-width: 500px)
{
    .success-modal-content
    {
        min-width: 0;
        padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    }
}