@import url('https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700');

:root {
    --text: #515769;
    --muted: #81848f;
    --light: #f3f8fa;
    --white: #fff;
    --green: #5b9f62;
    --orange: #d58512;
    --line: #e9edf0;
    --shadow: 0 18px 50px rgba(32, 47, 61, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    color: var(--text);
    font-family: Hind, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
    overflow-x: hidden;
}

img { max-width: 100%; }

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

button, a { -webkit-tap-highlight-color: transparent; }

.container,
.header-inner,
.footer-inner {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 2px 18px rgba(0,0,0,.08);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand { display: block; }

.brand-logo {
    display: block;
    width: 146px;
    height: auto;
}

.brand-logo-dark { display: none; }

.is-scrolled .brand-logo-light { display: none; }
.is-scrolled .brand-logo-dark { display: block; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 28px 0;
}

.is-scrolled .main-nav a { color: var(--text); }

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 9px;
    height: 2px;
    background: var(--orange);
    opacity: 0;
    transition: opacity .2s;
}

.main-nav a:hover::after { opacity: 1; }

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
}

/* HERO */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
}

.hero-track {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .65s ease;
}

.hero-slide.is-active {
    position: relative;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.22) 48%, rgba(0,0,0,.12) 100%),
        linear-gradient(0deg, rgba(0,0,0,.32), transparent 45%);
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(1000px, calc(100% - 50px));
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 clamp(16px, 2vw, 30px);
    color: #fff;
    font-size: clamp(25px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 3px 16px rgba(0,0,0,.35);
}

.hero-content p {
    margin: 0;
    color: #fff;
    font-size: clamp(12px, 1.35vw, 18px);
    line-height: 1.45;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,.16);
    transform: translateY(-50%);
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.slider-arrow:hover {
    background: rgba(0,0,0,.38);
}

.slider-prev { left: 22px; }
.slider-next { right: 22px; }

.slider-dots {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 24px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    opacity: .75;
    cursor: pointer;
}

.slider-dot.is-active {
    background: #fff;
    opacity: 1;
}

/* STORY */
.story-section {
    width: min(1200px, calc(100% - 40px));
    margin: 90px auto;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 90px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-image {
    position: relative;
    min-width: 0;
}

.story-image img {
    display: block;
    width: 100%;
    height: auto;
}

.story-content {
    padding: clamp(30px, 5vw, 70px);
}

.eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.story-content h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.18;
}

.section-line {
    width: 48px;
    height: 3px;
    margin: 22px 0;
    background: var(--orange);
}

.story-content p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.image-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #fff;
    background: rgba(40,50,45,.82);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.25;
    backdrop-filter: blur(6px);
}

.image-badge strong,
.image-badge span { color: #fff; }

.badge-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: var(--orange);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
}

.feature-icon.orange { background: var(--orange); }

.feature-icon i {
    font-size: 19px;
}

/* QUOTE */
.quote-section {
    padding: 90px 0;
    text-align: center;
    background: var(--light);
}

.quote-section h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.3;
}

.quote-icon {
    width: 30px;
    height: auto;
    vertical-align: middle;
}

/* COMMON SECTIONS */
.jobs-section,
.closing-section {
    padding: 90px 0;
}

.section-heading {
    margin-bottom: 45px;
}

.section-heading h2,
.closing-content h2 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 30px;
}

.job-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 18px;
}

.job-card h4 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 22px;
}

.job-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

/* HOW */
.how-section {
    padding: 90px 0;
    background: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    padding: 0 30px 35px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(32,47,61,.07);
}

.step-card img {
    display: block;
    width: calc(100% + 60px);
    max-width: none;
    margin-left: -30px;
    margin-bottom: 28px;
}

.step-card h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 22px;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.cta-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 45px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 30px;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform .2s, opacity .2s;
}

.btn:hover {
    color: #fff;
    transform: translateY(-2px);
    opacity: .9;
}

.btn-orange { background: var(--orange); }
.btn-green { background: var(--green); }

/* CLOSING */
.closing-content {
    max-width: 900px;
}

.closing-content p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

/* FOOTER */
.site-footer {
    padding: 30px 0;
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner img { width: 100px; height: auto; }

.footer-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

.back-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    color: #fff;
    background: rgba(81,87,105,.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s;
}

.back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* TABLET */
@media (max-width: 991px) {
    .main-nav a { color: var(--text); }
    .site-header { background: #fff; }
    .brand-logo-light { display: none; }
    .brand-logo-dark { display: block; }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--text);
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 20px 18px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .main-nav.is-open { display: flex; }

    .main-nav a {
        padding: 12px 0;
    }

    .main-nav a::after { bottom: 8px; }

    .story-card { grid-template-columns: 1fr; }
    .story-card-image-right .story-content { order: 1; }
    .story-card-image-right .story-image { order: 2; }

    .jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE */
@media (max-width: 767px) {
    .container,
    .header-inner,
    .footer-inner {
        width: min(100% - 30px, 1140px);
    }

    .header-inner { min-height: 64px; }

    .brand-logo { width: 120px; }

    .main-nav { top: 64px; }

    .hero-content {
        width: calc(100% - 34px);
        top: 50%;
    }

    .hero-content h1,
    .hero-content h2 {
        margin-bottom: 10px;
        font-size: clamp(18px, 5.4vw, 27px);
        line-height: 1.12;
    }

    .hero-content p {
        font-size: clamp(10px, 2.7vw, 14px);
        line-height: 1.3;
    }

    .desktop-break { display: none; }

    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .slider-prev { left: 9px; }
    .slider-next { right: 9px; }

    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .slider-dot {
        width: 7px;
        height: 7px;
    }

    .story-section {
        width: min(100% - 30px, 1200px);
        margin: 50px auto;
    }

    .story-card { margin-bottom: 50px; border-radius: 12px; }

    .story-content { padding: 28px 22px 32px; }

    .story-content h2 {
        font-size: 27px;
    }

    .story-content p { font-size: 15px; }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .image-badge {
        right: 12px;
        bottom: 12px;
        padding: 9px 11px;
        font-size: 12px;
    }

    .badge-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .quote-section,
    .jobs-section,
    .how-section,
    .closing-section {
        padding: 55px 0;
    }

    .quote-section h2 { font-size: 24px; }

    .section-heading { margin-bottom: 30px; }

    .section-heading h2,
    .closing-content h2 {
        font-size: 28px;
    }

    .section-heading p { font-size: 15px; }

    .jobs-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .job-card h4 { font-size: 20px; }

    .step-card { padding: 0 20px 28px; }

    .step-card img {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn { width: 100%; }

    .closing-content p {
        font-size: 15px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner p {
        text-align: left;
    }
}

/* VERY SMALL PHONES */
@media (max-width: 380px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 17px;
    }

    .hero-content p {
        font-size: 9.5px;
    }

    .hero-content p br + br { display: none; }
}

@media (max-width: 767px) {

    .hero-slider {
        margin-top: 64px;
    }

}

/* =========================================================
   MOBILE HERO - HEIGHT SAMA UNTUK SEMUA SLIDE
   ========================================================= */

@media (max-width: 767px) {

    .hero-slider {
        height: 58vw;
        min-height: 220px;
        max-height: 300px;
        overflow: hidden;
    }

    .hero-slide {
        height: 100%;
    }

    .hero-slide > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

}

/* =========================================================
   HERO SLIDER - TINGGI SAMA DI SEMUA DEVICE
   ========================================================= */

.hero-slider {
    height: 56.25vw;
    min-height: 420px;
    max-height: 680px;
    overflow: hidden;
}

.hero-slide {
    height: 100%;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Mobile */
@media (max-width: 767px) {

    .hero-slider {
        height: 58vw;
        min-height: 220px;
        max-height: 300px;
    }
    
    .hero-content {
        position: absolute;
        top: 140px;
        left: auto;
        width: 100%;
        padding: 20px 18px 23px;
        transform: none;
        text-align: center;
        color: #000;
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-content h1,
    .hero-content h2 {
        margin: 0 0 10px;
        color: #fff;
        font-size: 12px;
        line-height: 1.2;
    }

    .hero-content p {
        /*margin: 0;
        color: #fff;
        font-size: 10px;
        line-height: 1.2;*/
        display:none;
    }

}

@media (max-width: 767px) {

    .story-card {
        margin-bottom: 50px;
        border-radius: 12px;
    }

    .story-card .story-content {
        order: 1;
    }

    .story-card .story-image {
        order: 2;
    }

}