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

.about-hero {

    position: relative;

}

.hero-overlay {

    background:
        linear-gradient(
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .45)
        );

}

.hero-subtitle {

    color: #bfdbfe;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: .9rem;

    margin-bottom: 1.5rem;

}

.hero-title {

    font-size: clamp(
        3rem,
        6vw,
        5.5rem
    );

    font-weight: 700;

    line-height: 1.05;

    color: white;

}

.hero-text {

    max-width: 800px;

    margin: 2rem auto 0;

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

    font-size: 1.1rem;

    line-height: 1.9;

}

/* ==================================
   ABOUT JAKUB
================================== */

.about-jakub-image {

    width: 100%;

    border-radius: 24px;

    object-fit: cover;

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.08);

}

.section-text {

    color: #64748B;

    line-height: 2;

    font-size: 1.05rem;

}

/* ==================================
   WHY WORK WITH JAKUB
================================== */

.feature-card {

    background: white;

    border-radius: 24px;

    padding: 2.5rem;

    border: 1px solid #e2e8f0;

    transition: .3s ease;

}

.feature-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.08);

}

.feature-card i {

    font-size: 2rem;

    color: #0A3D91;

    margin-bottom: 1.5rem;

}

.feature-card h3 {

    font-size: 1.4rem;

    color: #0f172a;

    margin-bottom: 1rem;

}

.feature-card p {

    color: #64748B;

    line-height: 1.9;

}

/* ==================================
   TESTIMONIALS
================================== */

.testimonial-slider {

    overflow: hidden;

}

.testimonial-track {

    display: flex;

    gap: 2rem;

    width: max-content;

}

.testimonial-card {

    width: 400px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 24px;

    padding: 2rem;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.05);

}

.stars {

    color: #FBBF24;

    margin-bottom: 1rem;

}

.testimonial-card p {

    color: #64748B;

    line-height: 1.9;

    margin-bottom: 1.5rem;

}

.testimonial-user {

    display: flex;

    align-items: center;

    gap: 1rem;

}

.testimonial-user img {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    object-fit: cover;

}

.testimonial-user h4 {

    color: #0F172A;

    font-weight: 600;

}

.testimonial-user span {

    color: #64748B;

    font-size: .9rem;

}

/* ==================================
   CTA BUTTONS
================================== */

.white-btn {

    background: white;

    color: #0A3D91;

    padding: 16px 32px;

    border-radius: 999px;

    font-weight: 600;

    transition: .3s ease;

}

.white-btn:hover {

    transform: translateY(-2px);

}

.outline-white-btn {

    border: 1px solid white;

    color: white;

    padding: 16px 32px;

    border-radius: 999px;

    font-weight: 600;

    transition: .3s ease;

}

.outline-white-btn:hover {

    background: white;

    color: #0A3D91;

}

/* ==================================
   FOOTER
================================== */

.social-links {

    display: flex;

    gap: 12px;

    margin-top: 1.5rem;

}

.social-links a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.15);

    transition: .3s ease;

}

.social-links a:hover {

    background: #0A3D91;

    border-color: #0A3D91;

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: .8rem;

    margin-top: 1.2rem;

}

.footer-title {

    font-weight: 600;

    margin-bottom: .5rem;

}

/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 1024px) {

    .testimonial-card {

        width: 350px;

    }

}

@media (max-width: 768px) {

    .hero-title {

        font-size: 3rem;

    }

    .hero-text {

        font-size: 1rem;

    }

    .testimonial-card {

        width: 300px;

    }

}

@media (max-width: 640px) {

    .hero-title {

        font-size: 2.5rem;

    }

}