* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background-image: url('../img/apps/apps_hero_web.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6.5rem;
    height: max-content;
    min-height: 100vh;

}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 6rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}


h1 {
    color: var(--Neutral-Black, #1A1A1A);
    text-align: center;
    font-family: Inter;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.08rem;
    background: linear-gradient(270deg, #008578 0%, #000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin: 2.5rem auto;
}

.subtitle {
    max-width: 44rem;
    color: var(--Neutral-Black, #1A1A1A);
    text-align: center;
    font-family: Inter;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 1.75rem */
    letter-spacing: -0.0125rem;
    margin: 0 auto;
    margin-bottom: 7.5rem;
}

.cta-button {
    border-radius: 0.75rem;
    background: linear-gradient(0deg, #F9C935 0%, #FFDA57 100%);
    padding: 0.9375rem 1.25rem 0.9375rem 1.5rem;
    gap: 0.5rem;
    color: #1A1A1A;

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;

    outline: none;
    border: none;
    font-family: Manrope;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    /* 133.333% */
    letter-spacing: -0.0225rem;
    margin-bottom: 6rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    margin: 0 auto;
    max-width: 30rem;
}

.filter-btn {
    border-radius: 0.75rem;
    border: 0.5px solid rgba(220, 216, 0, 0.12);
    background: linear-gradient(0deg, rgba(248, 240, 171, 0.50) -18.75%, rgba(117, 209, 200, 0.50) 221.88%);
    backdrop-filter: blur(100px);
    padding: 1rem;
    color: #1A1A1A;
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem;
    /* 125% */
    letter-spacing: -0.01rem;

}



/* App Sections ============================================== */
.all_apps_section {
    background: #FAFAFA;
    padding: 7.5rem 6.44rem;
}


.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.app-section {
    border-radius: 2rem;
    background: #FFF;
    box-shadow: 0 0 21px 0 rgba(92, 92, 92, 0.04);
    padding: 3.75rem;
    border: 1px solid transparent;
    background-image: linear-gradient(#FFF, #FFF),
        linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FECA57);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    max-width: 84rem;
    margin: 0 auto;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.app-content.reverse {
    grid-template-areas: "images text";
}

.app-content:not(.reverse) {
    grid-template-areas: "text images";
}

.app-content .app-info {
    grid-area: text;
}

.app-content .app-screenshots {
    grid-area: images;
    position: relative;
}

.app-screenshots-gradient {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.screenshot {
    z-index: 2;
}

.app-info {
    padding: 20px;
}

.badge-title {
    color: var(--Pine-Green, #008578);
    font-family: Inter;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.125rem;
    /* 128.571% */
    letter-spacing: -0.00875rem;
    display: flex;
    padding: 0.5625rem 0.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 3.125rem;
    border: 1px solid rgba(0, 133, 120, 0.20);
    background: rgba(0, 133, 120, 0.06);

    width: fit-content;
    margin-bottom: 2rem;
}

.app-title {
    font-family: Inter;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.025rem;
    background: linear-gradient(270deg, #008578 0%, #000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-description {
    color: var(--Neutral-Black, #1A1A1A);
    font-family: Inter;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
    /* 1.96875rem */
    letter-spacing: -0.01125rem;
    border-left: 2px solid var(--Pine-Green, #008578);
    padding-left: 1.5rem;
    margin: 1.75rem 0;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
}

.download-btn {
    display: flex;
    align-items: center;
    margin-bottom: 1.75rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.download-btn img {
    display: block;
    max-width: 100%;
    height: auto;
}

.download-text {
    color: var(--Neutral-Black, #1A1A1A);

    /* Heading H9- 14px/SemiBold */
    font-family: Inter;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.125rem;
    /* 128.571% */
    letter-spacing: -0.00875rem;
}

.download-text span {
    color: var(--Pine-Green, #008578);

    /* Heading H9- 14px/SemiBold */
    font-family: Inter;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.125rem;
    /* 128.571% */
    letter-spacing: -0.00875rem;
}

/* ================== */

.app-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}



.phone-mockup {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup img{
    filter: drop-shadow(-7.002px 0 0 rgba(0, 0, 0, 0.08));
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        background-image: url('../img/apps/apps_hero_mob.png');
        padding: 1.5rem;
        min-height: unset;
    }
.container{
    padding: 1rem;
}
    .phone-mockup {
        justify-content: left;
    }

    .hero-content {
        padding-top: 2.25rem;
    }

    h1 {
        font-size: 2.125rem;
    }

    .subtitle {
        font-size: 0.75rem;
        margin: 2.5rem auto;
    }

    .cta-button {
        font-size: 0.875rem;
        margin-bottom: 3rem;
    }

    .filter-btn {
        font-size: 0.87rem;
    }

    .filter-buttons {
        gap: 10px;
    }

    .app-section {
        padding: 0;
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        grid-template-areas: "text" "images" !important;
    }

    .badge-title {
        font-size: 0.875rem;
    }

    .app-title {
        font-size: 1.5rem;
    }



    .app-description {
        font-size: 1rem;
    }

    .download-text {
        font-size: 0.875rem;
    }

    .download-text span {
        font-size: 0.875rem;
    }

    .app-screenshots {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 2rem;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        height: auto;
        max-height: none;
    }

    .app-screenshots::-webkit-scrollbar {
        height: 4px;
    }

    .app-screenshots::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .app-screenshots::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }


}


@media (max-width: 768px) {
    .all_apps_section {
        padding: 2rem 1rem;
    }







}