/* =========================================================
   NAKULA SADEWA DIGITAL
   LANDING PAGE
   PLOT MARKER & PEMBUATAN POLA BAJU
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;

    background: #ffffff;

    color: #111111;

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    text-decoration: none;

    color: inherit;
}


img {
    max-width: 100%;

    display: block;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --black: #090909;

    --black-2: #111111;

    --dark: #181818;

    --gray: #6f6f6f;

    --gray-light: #eeeeee;

    --gray-bg: #f5f5f3;

    --white: #ffffff;

    --lime: #c8ff00;

    --lime-dark: #9dcc00;

    --border: #dedede;

    --max-width: 1200px;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: 0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 100;

    padding: 25px 0;

}


.header-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand img {

    width: 190px;

    height: auto;

    object-fit: contain;

}


.header-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    border: 1px solid rgba(255,255,255,.4);

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .25s ease;

}


.header-button:hover {

    background: var(--lime);

    color: #000000;

    border-color: var(--lime);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(200,255,0,.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #050505 0%,
            #151515 55%,
            #080808 100%
        );

    color: #ffffff;

    overflow: hidden;

}


.hero::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    border: 1px solid rgba(200,255,0,.14);

    border-radius: 50%;

    right: -200px;

    top: 100px;

}


.hero::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    right: 80px;

    bottom: -180px;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent
    );

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 80px;

}


.hero-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--lime);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


.hero-label::before {

    content: "";

    width: 35px;

    height: 2px;

    background: var(--lime);

}


.hero h1 {

    max-width: 950px;

    font-size: clamp(
        42px,
        7vw,
        86px
    );

    line-height: .95;

    font-weight: 900;

    letter-spacing: -4px;

}


.hero h1 span {

    color: var(--lime);

}


.hero-description {

    max-width: 650px;

    margin-top: 32px;

    color: #c8c8c8;

    font-size: 17px;

    line-height: 1.8;

}


.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 38px;

    flex-wrap: wrap;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 54px;

    padding: 0 27px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border .25s ease;

}


.btn:hover {

    transform: translateY(-3px);

}


.btn span {

    font-size: 18px;

}


.btn-primary {

    background: var(--lime);

    color: #000000;

}


.btn-primary:hover {

    background: #ffffff;

}


.btn-outline {

    border: 1px solid rgba(255,255,255,.35);

    color: #ffffff;

}


.btn-outline:hover {

    background: #ffffff;

    color: #000000;

}


.btn-dark {

    background: #000000;

    color: #ffffff;

}


.btn-dark:hover {

    background: var(--lime);

    color: #000000;

}


/* =========================================================
   INTRO
========================================================= */

.intro {

    padding: 110px 0 70px;

    background: #ffffff;

}


.section-heading {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 30px;

    align-items: start;

}


.section-number {

    font-size: 13px;

    font-weight: 800;

    color: var(--lime-dark);

    padding-top: 8px;

}


.small-title {

    margin-bottom: 12px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    color: #777777;

}


.intro h2 {

    max-width: 700px;

    font-size: clamp(
        32px,
        5vw,
        58px
    );

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;

}


.intro h2 strong {

    color: #999999;

}


.intro-text {

    max-width: 700px;

    margin-left: 120px;

    margin-top: 30px;

    color: #777777;

    font-size: 16px;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    padding: 40px 0 120px;

    background: #ffffff;

}


.services-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

}


.service-card {

    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 600px;

    padding: 42px;

    background: #f5f5f3;

    border: 1px solid #e2e2e2;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.service-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);

}


.service-card.featured {

    background: #101010;

    color: #ffffff;

    border-color: #101010;

}


.service-badge {

    position: absolute;

    top: 0;

    right: 0;

    padding: 9px 16px;

    background: var(--lime);

    color: #000000;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

}


.service-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.service-number {

    font-size: 13px;

    font-weight: 800;

    color: #999999;

}


.featured .service-number {

    color: #777777;

}


.service-icon {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #111111;

}


.featured .service-icon {

    background: var(--lime);

    color: #000000;

}


.service-icon svg {

    width: 38px;

    height: 38px;

}


.service-content {

    margin-top: 55px;

}


.service-category {

    margin-bottom: 12px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #888888;

}


.featured .service-category {

    color: #a5a5a5;

}


.service-card h3 {

    font-size: clamp(
        32px,
        4vw,
        48px
    );

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 800;

}


.service-card p {

    max-width: 500px;

    margin-top: 22px;

    color: #707070;

    font-size: 15px;

    line-height: 1.8;

}


.featured .service-card p,
.featured p {

    color: #b0b0b0;

}


.service-content ul {

    list-style: none;

    margin-top: 30px;

}


.service-content li {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 9px 0;

    border-bottom: 1px solid #dddddd;

    color: #555555;

    font-size: 13px;

}


.featured .service-content li {

    border-color: #292929;

    color: #d0d0d0;

}


.service-content li span {

    color: #86a900;

    font-weight: 900;

}


.featured .service-content li span {

    color: var(--lime);

}


.service-footer {

    margin-top: auto;

    padding-top: 35px;

}


.service-button {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    color: #000000;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.featured .service-button {

    color: #ffffff;

}


.service-button span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    border: 1px solid #999999;

    transition: .25s ease;

}


.service-button:hover span {

    background: var(--lime);

    border-color: var(--lime);

    color: #000000;

}


/* =========================================================
   WHY
========================================================= */

.why {

    padding: 110px 0;

    background: #f5f5f3;

}


.why-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

}


.why-title h2 {

    max-width: 520px;

    font-size: clamp(
        34px,
        5vw,
        58px
    );

    line-height: 1.05;

    letter-spacing: -2px;

}


.why-items {

    display: flex;

    flex-direction: column;

}


.why-item {

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #d8d8d8;

}


.why-icon {

    font-size: 11px;

    font-weight: 800;

    color: #888888;

}


.why-item h3 {

    font-size: 19px;

    font-weight: 800;

}


.why-item p {

    margin-top: 7px;

    color: #777777;

    font-size: 14px;

}


/* =========================================================
   CTA
========================================================= */

.cta {

    padding: 100px 0;

    background: #ffffff;

}


.cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 60px;

    background: var(--lime);

}


.cta-box .small-title {

    color: #455600;

}


.cta-box h2 {

    max-width: 650px;

    font-size: clamp(
        32px,
        5vw,
        55px
    );

    line-height: 1;

    letter-spacing: -2px;

}


.cta-box p {

    max-width: 580px;

    margin-top: 18px;

    color: #4d5700;

    font-size: 15px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding: 35px 0;

    background: #090909;

    color: #ffffff;

}


.footer-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-brand img {

    width: 150px;

    height: auto;

}


.footer-text {

    color: #777777;

    font-size: 11px;

}


.footer-link {

    color: var(--lime);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 900px) {

    .hero {

        min-height: 680px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 560px;

    }


    .why-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .cta-box {

        align-items: flex-start;

        flex-direction: column;

    }

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {

        width: min(
            calc(100% - 28px),
            var(--max-width)
        );

    }


    .header {

        padding: 18px 0;

    }


    .brand img {

        width: 145px;

    }


    .header-button {

        min-height: 38px;

        padding: 0 13px;

        font-size: 9px;

    }


    .hero {

        min-height: 650px;

    }


    .hero-content {

        padding-top: 70px;

    }


    .hero h1 {

        font-size: 47px;

        letter-spacing: -2.5px;

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .intro {

        padding: 80px 0 50px;

    }


    .section-heading {

        grid-template-columns: 45px 1fr;

        gap: 15px;

    }


    .intro-text {

        margin-left: 60px;

    }


    .services {

        padding-bottom: 80px;

    }


    .service-card {

        min-height: auto;

        padding: 28px;

    }


    .service-content {

        margin-top: 40px;

    }


    .service-card h3 {

        font-size: 35px;

    }


    .why {

        padding: 80px 0;

    }


    .why-grid {

        gap: 40px;

    }


    .cta {

        padding: 70px 0;

    }


    .cta-box {

        padding: 35px 28px;

    }


    .footer-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .hero h1 {

        font-size: 40px;

    }


    .brand img {

        width: 125px;

    }


    .header-button {

        padding: 0 10px;

    }

}