/*=========================================
ABOUT HERO
=========================================*/

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at top right,
            rgba(79, 70, 229, .08),
            transparent 45%),
        linear-gradient(180deg, #fff, #F8FAFC);
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(79, 70, 229, .05);
    border-radius: 50%;
    right: -120px;
    top: -120px;
    filter: blur(20px);
}

.about-hero-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin: 24px 0;
    font-weight: 800;
}

.about-hero p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 760px;
    margin: auto;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 40px;
}



@media(max-width:768px) {

    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .about-buttons .btn {
        width: 100%;
    }

}

/*=========================================
ABOUT STATS
=========================================*/

.about-stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat-card {
    background: var(--card);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(79, 70, 229, .08);
    box-shadow: var(--shadow);
    transition: .35s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(79, 70, 229, .12);
}

.stat-icon {
    width: 72px;
    height: 72px;
    margin: auto;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 28px;
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.stat-card p {
    color: var(--text-light);
    font-size: 16px;
}

@media(max-width:992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 30px;
    }
}

/*=========================================
WHY ABOUT
=========================================*/

.why-about {
    padding: 90px 0;
    background: #F8FAFC;
}

.why-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(79, 70, 229, .08);
    box-shadow: var(--shadow);
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(79, 70, 229, .12);
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 28px;
    margin-bottom: 24px;
}

.why-card h3 {
    margin-bottom: 14px;
    font-size: 22px;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

@media(max-width:992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .why-about {
        padding: 70px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 28px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .why-card h3 {
        font-size: 20px;
    }
}

/*=========================================
OUR STORY
=========================================*/

.our-story {

    padding: 100px 0;

}

.story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.story-image {

    position: relative;

}

.story-main-image {

    overflow: hidden;

    border-radius: 28px;

    box-shadow: var(--shadow-lg);

}

.story-main-image img {

    width: 100%;

    display: block;

    transition: .5s;

}

.story-main-image:hover img {

    transform: scale(1.05);

}

.story-content h2 {

    margin: 20px 0;

    font-size: 44px;

    line-height: 1.2;

}

.story-content p {

    margin-bottom: 18px;

    color: var(--text-light);

    line-height: 1.9;

}

.story-list {

    margin: 30px 0;

    padding: 0;

    list-style: none;

}

.story-list li {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 16px;

    font-weight: 600;

}

.story-list i {

    color: var(--primary);

    font-size: 18px;

}

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 14px;

    background: #fff;

    padding: 16px 18px;

    border-radius: 18px;

    box-shadow: var(--shadow);

    animation: floatCard 4s ease-in-out infinite;

}

.floating-card i {

    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: #fff;

}

.floating-card strong {

    display: block;

    font-size: 20px;

}

.floating-card span {

    color: var(--text-light);

    font-size: 14px;

}

.floating-card-1 {

    top: 35px;

    right: -40px;

}

.floating-card-2 {

    left: -40px;

    bottom: 35px;

}

@keyframes floatCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}

@media(max-width:992px) {

    .story-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .story-content {

        text-align: center;

    }

    .story-list {

        max-width: 500px;

        margin: 30px auto;

    }

    .floating-card-1 {

        right: 10px;

    }

    .floating-card-2 {

        left: 10px;

    }

}

@media(max-width:768px) {

    .our-story {

        padding: 70px 0;

    }

    .story-content h2 {

        font-size: 32px;

    }

    .story-content p {

        font-size: 15px;

    }

    .story-list li {

        justify-content: center;

    }

    .floating-card {

        position: static;

        margin-top: 20px;

        animation: none;

    }

    .story-image {

        display: flex;

        flex-direction: column;

        gap: 18px;

    }

}

/*=========================================
HOW IT WORKS
=========================================*/

.how-it-works {

    padding: 100px 0;

    background: #F8FAFC;

}

.timeline {

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;

    position: relative;

}

.timeline::before {

    content: "";

    position: absolute;

    top: 72px;

    left: 10%;

    width: 80%;

    height: 3px;

    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    z-index: 1;

}

.timeline-item {

    position: relative;

    z-index: 2;

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: .35s;

}

.timeline-item:hover {

    transform: translateY(-10px);

}

.timeline-number {

    position: absolute;

    right: 18px;

    top: 18px;

    font-size: 40px;

    font-weight: 800;

    color: rgba(79, 70, 229, .08);

}

.timeline-icon {

    width: 84px;

    height: 84px;

    margin: auto;

    margin-bottom: 25px;

    display: grid;

    place-items: center;

    border-radius: 22px;

    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: #fff;

    font-size: 32px;

}

.timeline-item h3 {

    margin-bottom: 14px;

    font-size: 22px;

}

.timeline-item p {

    color: var(--text-light);

    line-height: 1.8;

}

@media(max-width:992px) {

    .timeline {

        grid-template-columns: repeat(2, 1fr);

    }

    .timeline::before {

        display: none;

    }

}

@media(max-width:768px) {

    .how-it-works {

        padding: 70px 0;

    }

    .timeline {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .timeline-item {

        padding: 30px;

    }

    .timeline-icon {

        width: 70px;

        height: 70px;

        font-size: 28px;

    }

    .timeline-number {

        font-size: 34px;

    }

}

/*=========================================
OUR VALUES
=========================================*/

.our-values {

    padding: 100px 0;

}

.values-grid {

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

}

.value-card {

    position: relative;

    overflow: hidden;

    background: #fff;

    padding: 38px;

    border-radius: 26px;

    border: 1px solid rgba(79, 70, 229, .08);

    box-shadow: var(--shadow);

    transition: .35s;

}

.value-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 60px rgba(79, 70, 229, .12);

}

.value-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(180deg,
            transparent,
            rgba(79, 70, 229, .03));

}

.value-icon {

    width: 74px;

    height: 74px;

    display: grid;

    place-items: center;

    border-radius: 22px;

    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: #fff;

    font-size: 30px;

    margin-bottom: 26px;

}

.value-card h3 {

    margin-bottom: 16px;

    font-size: 24px;

}

.value-card p {

    color: var(--text-light);

    line-height: 1.9;

}

@media(max-width:992px) {

    .values-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .our-values {

        padding: 70px 0;

    }

    .values-grid {

        grid-template-columns: 1fr;

    }

    .value-card {

        padding: 30px;

    }

    .value-icon {

        width: 64px;

        height: 64px;

        font-size: 26px;

    }

}

/*=========================================
ABOUT CTA
=========================================*/

.about-cta {

    padding: 100px 0;

}

.about-cta-box {

    position: relative;

    overflow: hidden;

    background: linear-gradient(135deg,
            #4F46E5,
            #7C3AED);

    color: #fff;

    border-radius: 36px;

    padding: 90px 70px;

    text-align: center;

    box-shadow: 0 40px 80px rgba(79, 70, 229, .25);

}

.about-cta-box::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    top: -120px;

    left: -120px;

}

.about-cta-box::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .06);

    bottom: -100px;

    right: -100px;

}

.about-cta-box .section-badge {

    background: rgba(255, 255, 255, .15);

    color: #fff;

}

.about-cta h2 {

    color: #fff;

    font-size: 48px;

    margin: 22px 0;

}

.about-cta p {

    max-width: 760px;

    margin: auto;

    line-height: 1.9;

    font-size: 18px;

    color: rgba(255, 255, 255, .85);

}

.about-cta-buttons {

    margin-top: 45px;

    display: flex;

    justify-content: center;

    gap: 18px;

}

.btn-outline-white {

    padding: 14px 26px;

    border: 2px solid rgba(255, 255, 255, .25);

    color: #fff;

    border-radius: 14px;

    transition: .35s;

}

.btn-outline-white:hover {

    background: #fff;

    color: var(--primary);

}

.about-cta .btn-light {

    background: #fff;

    color: var(--primary);

}

@media(max-width:768px) {

    .about-cta {

        padding: 70px 0;

    }

    .about-cta-box {

        padding: 60px 25px;

        border-radius: 26px;

    }

    .about-cta h2 {

        font-size: 32px;

    }

    .about-cta p {

        font-size: 15px;

    }

    .about-cta-buttons {

        flex-direction: column;

    }

    .about-cta-buttons .btn {

        width: 100%;

    }

}