/* ===================================================
SERVICES PAGE UI POLISH ONLY
No text changed
=================================================== */

body {
    background: #fff;
    overflow-x: hidden;
}

/* HERO */
.hero {
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 0;
    background:
        linear-gradient(90deg,
            rgba(4, 15, 34, .92) 0%,
            rgba(4, 15, 34, .88) 32%,
            rgba(4, 15, 34, .55) 58%,
            rgba(4, 15, 34, .12) 100%),
        url('/assets/images/hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero .inner {
    max-width: 1320px;
    width: 100%;
    margin: auto;
    padding: 90px 24px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    max-width: 720px;
    margin: 0 0 22px;
    color: #fff;
    letter-spacing: -1px;
}

.hero p {
    font-size: 22px;
    line-height: 1.9;
    max-width: 620px;
    margin: 0;
    color: #d7e2ee;
}

/* STORY BLOCKS */
.story {
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    border-top: 1px solid #f1f5f9;
}

.story .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    filter: brightness(98%) contrast(102%);
}

.story.left .bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .15) 28%, rgba(255, 255, 255, .94) 58%, #fff 72%);
}

.story.right .bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .15) 28%, rgba(255, 255, 255, .94) 58%, #fff 72%);
}

.story-wrap {
    max-width: 1320px;
    width: 100%;
    margin: auto;
    padding: 70px 24px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.story.left .content {
    grid-column: 2;
}

.story.right .content {
    grid-column: 1;
}

.content h2 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    margin: 0 0 18px;
    font-weight: 800;
    max-width: 620px;
    text-align: left;
}

.content p {
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
    max-width: 620px;
    margin: 0 0 28px;
}

/* POINTS */
.points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    max-width: 700px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    line-height: 1.4;
}

.feature-item:hover {
    transform: translateY(-2px);
    transition: .25s ease;
}

.svg-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 198, 154, .08);
    border: 1px solid rgba(16, 198, 154, .12);
    color: #10c69a;
    transition: .25s ease;
}

.svg-icon:hover {
    transform: scale(1.06);
}

.svg-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* BUTTON */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    background: #10c69a;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(16, 198, 154, .18);
    transition: .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

/* CTA spacing */
.services-cta {
    padding: 74px 24px 0;
}

/* MOBILE */
@media(max-width:1100px) {

    .hero h1 {
        font-size: 44px;
    }

    .story {
        min-height: auto;
    }

    .story {
        margin-bottom: 40px;
    }

    .story .bg {
        position: relative;
        height: 220px;
        z-index: 0;
    }

    .story {
        background: #fff;
    }

    .content {
        background: #ffffff;
    }

    .story.left .bg:after,
    .story.right .bg:after {
        background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(255, 255, 255, .95));
    }

    .story-wrap {
        display: block;
        padding: 20px 16px 48px;
        margin-top: 0;
    }

    .content {
        background: #fff;
        padding: 22px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
        margin-top: 0;
    }

    .points {
        grid-template-columns: 1fr;
    }

    .content h2 {
        font-size: 34px;
    }

}

@media(max-width:768px) {

    .hero {
        min-height: 300px;
        background-position: 65% center;
    }

    .hero .inner {
        padding: 48px 16px;

    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.8;
    }

    .story-wrap {
        padding: 0 16px 48px;
    }

    .content {
        padding: 24px;
    }

    .svg-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .svg-icon svg {
        width: 22px;
        height: 22px;
    }

    .btn {
        width: 100%;
    }



}

.services-cta {
    padding: 40px 16px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.menu a.active {
    color: #10c69a;
    font-weight: 600;
    position: relative;
}

.menu a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #10c69a;
    border-radius: 2px;
}