/* =====================================
WEB AMC PAGE
===================================== */


/* HERO */

.app-hero {
    padding: 180px 8% 100px;
    text-align: center;
}

.app-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient( 90deg, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-hero p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
}

.mini-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 25px;
}


/* =====================================
SERVICE EXPLORER
===================================== */

.service-explorer {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 100px 8%;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 24px;
    border-radius: 24px;
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: .3s ease;
}

.service-item span {
    display: block;
    margin-bottom: 10px;
    color: #60a5fa;
}

.service-item:hover {
    transform: translateX(8px);
}

.service-item.active {
    background: rgba(96, 165, 250, .12);
    border-color: rgba(96, 165, 250, .3);
    transform: translateX(8px);
}

.service-panel {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    padding: 50px;
    min-height: 700px;
}


/* =====================================
SERVICE CONTENT
===================================== */

.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.service-details {
    width: 100%;
    max-width: 900px;
}

.service-details h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-details h3 {
    color: #60a5fa;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.service-details p {
    line-height: 2;
    color: rgba(255, 255, 255, .8);
}


/* =====================================
SECTION HEADERS
===================================== */

.section-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
}


/* =====================================
BUSINESS VALUE
===================================== */

.business-value {
    padding: 120px 8%;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.value-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: .3s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
}


/* =====================================
TECH STACK
===================================== */

.tech-stack {
    padding: 120px 8%;
    overflow: hidden;
}

.tech-slider {
    overflow: hidden;
    width: 100%;
}

.tech-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: techMarquee 35s linear infinite;
}

.tech-card {
    min-width: 280px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
}

.tech-card span {
    font-weight: 600;
}

@keyframes techMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* =====================================
SUPPORT SECTION
===================================== */

.support-section {
    padding: 120px 8%;
}

.support-card {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
}

.support-card h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 25px;
}

.support-card p {
    max-width: 700px;
    margin: auto;
    line-height: 2;
    color: rgba(255, 255, 255, .8);
}


/* =====================================
CTA
===================================== */

.cta-section {
    padding: 120px 8%;
    text-align: center;
}

.cta-section h2 {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: clamp(2rem, 5vw, 4rem);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
}


/* =====================================
MOBILE
===================================== */

@media(max-width:900px) {
    .service-explorer {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }
    .service-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
    }
    .service-item {
        min-width: 220px;
        flex-shrink: 0;
    }
    .service-panel {
        padding: 30px 20px;
        min-height: auto;
    }
    .service-image img {
        max-width: 100%;
        height: 220px;
    }
    .service-details h2 {
        font-size: 2rem;
        text-align: center;
    }
    .service-details h3 {
        text-align: center;
    }
    .service-details p {
        text-align: left;
    }
    .support-card {
        padding: 35px 25px;
    }
    .tech-card {
        min-width: 220px;
    }
}