
:root {

    --blue: #155EEF;
    --blue-dark: #0D3FAF;
    --blue-light: #EAF2FF;

    --gold: #efbf04;
    --gold-light: #F4D98B;

    --dark: #172033;
    --text: #344054;
    --muted: #667085;

    --light: #F7F9FC;
    --border: #E6EAF0;

    --green: #1F9D68;
    --green-light: #EAF8F1;

    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =================================================
   HEADER
================================================= */

.special-header {

    min-height: 320px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #F3F7FF
        );

    border-bottom:
        1px solid var(--border);
}

.header-circle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.circle-one {

    width: 500px;
    height: 500px;

    right: -250px;
    top: -280px;

    border:
        1px solid
        rgba(21,94,239,.08);
}

.circle-two {

    width: 350px;
    height: 350px;

    left: -230px;
    bottom: -260px;

    border:
        1px solid
        rgba(201,154,50,.10);
}

.special-header-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 2;
}

.header-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.header-label::before {

    content: "";

    width: 28px;
    height: 2px;

    background: var(--blue);
}

.special-header h1 {

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(48px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -4px;

    font-weight: 800;
}

.special-header h1 span {

    color: var(--blue);
}

.page-number {

    width: 105px;
    height: 105px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: white;

    border:
        1px solid var(--border);

    box-shadow:
        0 20px 50px
        rgba(16,24,40,.07);

    color: var(--blue);

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 28px;

    font-weight: 800;
}

.page-number small {

    color: #98A2B3;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 7px;

    letter-spacing: 2px;

    margin-bottom: 4px;
}


/* =================================================
   INTRO
================================================= */

.special-intro {

    padding: 115px 0 90px;
}

.intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;
}

.section-label {

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.special-intro h2 {

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(43px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

    margin-top: 15px;
}

.special-intro h2 span {

    color: var(--blue);
}

.intro-copy {

    padding-top: 20px;
}

.intro-big {

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 22px;

    line-height: 1.5;

    font-weight: 600;

    margin-bottom: 20px;
}

.intro-copy > p:last-child {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;

    max-width: 540px;
}


/* =================================================
   SERVICES
================================================= */

.special-services {

    padding: 25px 0 120px;

    background: var(--light);
}

.special-service {

    position: relative;

    padding: 45px;

    margin-bottom: 25px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;

    transition: .4s;
}

.special-service:hover {

    /* transform:
        translateY(-5px); */

    border-color:
        rgba(21,94,239,.20);

    box-shadow:
        0 25px 70px
        rgba(16,24,40,.08);
}

.service-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 35px;
}

.service-no {

    color: #98A2B3;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.service-category {

    color: var(--gold);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.service-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 65px;

    align-items: center;
}

.service-grid.reverse {

    grid-template-columns:
        1fr 1fr;
}

.service-content {

    position: relative;

    z-index: 2;
}

.service-icon {

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    color: var(--blue);

    background: var(--blue-light);

    border-radius: 10px;

    font-size: 18px;
}

.sustainability-service .service-icon {

    color: var(--green);

    background: var(--green-light);
}

.service-content h3 {

    max-width: 600px;

    color: black;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(38px, 4vw, 56px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 22px;
}

.service-content h3 span {

    color: var(--blue);
}

.sustainability-service h3 span {

    color: var(--green);
}

.service-content > p {

    max-width: 510px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;
}

.service-features {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px 20px;

    margin-top: 28px;
}

.service-features div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--text);

    font-size: 10px;

    font-weight: 600;
}

.service-features i {

    color: var(--blue);

    font-size: 9px;
}

.sustainability-service
.service-features i {

    color: var(--green);
}

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    padding-bottom: 6px;

    color: var(--blue);

    border-bottom:
        1px solid var(--blue);

    font-size: 10px;

    font-weight: 800;

    transition: .3s;
}

.service-link:hover {

    gap: 18px;
}

.sustainability-service .service-link {

    color: var(--green);

    border-color: var(--green);
}


/* =================================================
   SERVICE ART
================================================= */

.service-art {

    height: 420px;

    position: relative;

    overflow: hidden;

    border-radius: 15px;
}


/* DESIGN */

.design-art {

    background:
        linear-gradient(
            135deg,
            #0D3FAF,
            #5A8BEA
        );
}

.art-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 35px 35px;
}

.art-title {

    position: absolute;

    top: 25px;
    left: 25px;

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

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}

.blue-block {

    position: absolute;

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

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

    backdrop-filter: blur(5px);
}

.block-one {

    width: 260px;
    height: 170px;

    left: 45px;
    top: 105px;

    transform:
        perspective(500px)
        rotateY(-14deg);
}

.block-two {

    width: 160px;
    height: 105px;

    right: 35px;
    bottom: 65px;

    transform:
        perspective(500px)
        rotateY(15deg);
}

.gold-line {

    position: absolute;

    width: 120px;
    height: 3px;

    background: var(--gold);

    right: 50px;
    top: 80px;
}

.art-number {

    position: absolute;

    right: 25px;
    bottom: 18px;

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

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 32px;

    font-weight: 800;
}


/* CONSTRUCTION */

.construction-art {

    background:
        linear-gradient(
            135deg,
            #172033,
            #344C70
        );
}

.construction-frame {

    position: absolute;

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

    transform:
        perspective(600px)
        rotateY(-15deg);
}

.frame-one {

    width: 250px;
    height: 220px;

    left: 65px;
    top: 75px;
}

.frame-two {

    width: 180px;
    height: 150px;

    right: 35px;
    bottom: 45px;
}

.construction-floor {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 90px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.12),
            transparent
        );

    border-top:
        1px solid
        rgba(255,255,255,.2);
}

.construction-light {

    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 25px
        var(--gold);
}

.light-one {

    left: 90px;
    top: 60px;
}

.light-two {

    right: 80px;
    top: 100px;
}

.construction-label {

    position: absolute;

    left: 25px;
    top: 25px;

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

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}

.construction-art > strong {

    position: absolute;

    right: 25px;
    bottom: 18px;

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

    font-size: 32px;
}


/* ACTIVATION */

.activation-art {

    background:
        radial-gradient(
            circle at center,
            #155EEF,
            #0D3FAF 45%,
            #172033
        );
}

.activation-circle {

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

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

.circle-a {

    width: 300px;
    height: 300px;
}

.circle-b {

    width: 200px;
    height: 200px;

    border-color:
        rgba(244,217,139,.7);
}

.activation-center {

    position: absolute;

    width: 110px;
    height: 110px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    color: white;

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

    backdrop-filter:
        blur(10px);

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

.activation-center i {

    color: var(--gold-light);

    font-size: 22px;

    margin-bottom: 8px;
}

.activation-center span {

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}

.activation-dot {

    position: absolute;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 25px
        rgba(244,217,139,.8);
}

.dot-a {

    top: 75px;
    left: 85px;
}

.dot-b {

    right: 75px;
    top: 150px;
}

.dot-c {

    left: 110px;
    bottom: 70px;
}

.activation-art > strong {

    position: absolute;

    right: 25px;
    bottom: 18px;

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

    font-size: 32px;
}


/* SUSTAINABILITY */

.sustainability-art {

    background:
        linear-gradient(
            135deg,
            #EAF8F1,
            #B9E5D0
        );
}

.eco-circle {

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    border:
        1px solid
        rgba(31,157,104,.35);
}

.eco-one {

    width: 300px;
    height: 300px;
}

.eco-two {

    width: 190px;
    height: 190px;
}

.eco-center {

    position: absolute;

    width: 120px;
    height: 120px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: white;

    color: var(--green);

    box-shadow:
        0 20px 50px
        rgba(31,157,104,.12);
}

.eco-center i {

    font-size: 26px;

    margin-bottom: 8px;
}

.eco-center span {

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.eco-leaf {

    position: absolute;

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: white;

    background: var(--green);
}

.leaf-one {

    top: 80px;
    left: 80px;

    transform: rotate(-20deg);
}

.leaf-two {

    right: 75px;
    bottom: 75px;

    transform: rotate(25deg);
}

.sustainability-art > strong {

    position: absolute;

    right: 25px;
    bottom: 18px;

    color:
        rgba(31,157,104,.6);

    font-size: 32px;
}


/* =================================================
   WHY US
================================================= */

.why-special {

    padding: 120px 0;

    background: white;
}

.why-heading {

    margin-bottom: 60px;
}

.why-heading h2 {

    color: #000;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(42px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

    margin-top: 15px;
}

.why-heading h2 span {

    color: var(--blue);
}

.why-grid {

    display: grid;

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

    border-top:
        1px solid var(--border);
}

.why-card {

    min-height: 270px;

    padding: 30px;

    border-right:
        1px solid var(--border);

    position: relative;
}

.why-card:last-child {

    border-right: none;
}

.why-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    margin-bottom: 25px;

    border-radius: 9px;

    color: var(--blue);

    background: var(--blue-light);
}

.why-card > span {

    position: absolute;

    top: 30px;
    right: 25px;

    color: #98A2B3;

    font-size: 8px;
}

.why-card h3 {

    color: #000; 

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 17px;

    margin-bottom: 10px;
}

.why-card p {

    max-width: 190px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


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

.special-cta {

    min-height: 520px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #F2F6FF,
            #FFFFFF
        );

    border-top:
        1px solid var(--border);
}

.cta-ring {

    position: absolute;

    border-radius: 50%;

    border:
        60px solid
        rgba(21,94,239,.035);
}

.ring-one {

    width: 500px;
    height: 500px;

    right: -200px;
    top: -150px;
}

.ring-two {

    width: 280px;
    height: 280px;

    right: -70px;
    top: -40px;

    border-width: 1px;
}

.cta-content {

    position: relative;

    z-index: 2;
}

.cta-content h2 {

    max-width: 800px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(45px, 6vw, 75px);

    line-height: .98;

    letter-spacing: -4px;

    margin:
        18px 0 25px;
}

.cta-content h2 span {

    color: var(--blue);
}

.cta-content p {

    max-width: 500px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 30px;
}

.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding:
        16px 22px;

    color: white;

    background: var(--blue);

    border-radius: 6px;

    font-size: 10px;

    font-weight: 800;

    box-shadow:
        0 12px 30px
        rgba(21,94,239,.18);

    transition: .3s;
}

.cta-button:hover {

    background: var(--blue-dark);

    transform:
        translateY(-4px);
}


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

@media(max-width: 1000px) {

    .intro-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .service-grid,
    .service-grid.reverse {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .service-grid.reverse .service-art {

        order: 2;
    }

    .service-grid.reverse .service-content {

        order: 1;
    }

    .why-grid {

        grid-template-columns:
            1fr 1fr;
    }

    .why-card:nth-child(2) {

        border-right: none;
    }

    .why-card:nth-child(3),
    .why-card:nth-child(4) {

        border-top:
            1px solid var(--border);
    }
}


@media(max-width: 650px) {

    .special-header {

        min-height: 270px;
    }

    .special-header h1 {

        font-size: 45px;

        letter-spacing: -3px;
    }

    .page-number {

        width: 70px;
        height: 70px;

        font-size: 20px;
    }

    .special-intro,
    .why-special {

        padding: 80px 0;
    }

    .special-intro h2 {

        font-size: 43px;
    }

    .intro-big {

        font-size: 19px;
    }

    .special-service {

        padding: 30px 22px;
    }

    .service-content h3 {

        font-size: 39px;

        letter-spacing: -2.5px;
    }

    .service-features {

        grid-template-columns: 1fr;
    }

    .service-art {

        height: 330px;
    }

    .why-grid {

        grid-template-columns: 1fr;
    }

    .why-card {

        border-right: none;

        border-bottom:
            1px solid var(--border);
    }

    .why-card:nth-child(3),
    .why-card:nth-child(4) {

        border-top: none;
    }

    .cta-content h2 {

        font-size: 47px;

        letter-spacing: -3px;
    }

    .breadcrumb {

        gap: 7px;

        flex-wrap: wrap;
    }

}
```
