/* ================= ROOT ================= */
:root {
    --yellow: #f4c430;
    --dark: #0b1c2d;
    --dark-2: #10263f;
    --gray: #f5f5f5;
    --text: #1f2933;
}

/* ================= BASE ================= */
body {
    background: #ffffff;
    color: var(--text);
    line-height: 1.8;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    color: var(--dark);
}

p {
    margin-bottom: 14px;
}

.wrap {
    max-width: 1200px;
    margin: auto;
}

/* ================= HERO + BRAND STRIP (ONE SOLID COLOR) ================= */

.about-hero,
.brand-strip {
    background-color: #0b1c2d; /* BIRU INDUSTRIAL UTAMA */
    text-align: center;
}

/* ================= HERO ================= */

.about-hero {
    padding: 170px 40px 120px;
}

.about-hero .badge {
    display: inline-block;
    padding: 9px 26px;
    border-radius: 30px;
    background: rgba(244, 196, 48, 0.2);
    color: var(--yellow);
    font-weight: 800;
    letter-spacing: 0.6px;
    margin-bottom: 26px;
}

.about-hero h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 26px;
    font-weight: 900;
    color: #ffffff;
}

.about-hero h1 span {
    color: var(--yellow);
}

.about-hero p {
    max-width: 860px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #e5e7eb;
}

/* ================= BRAND STATEMENT (MASIH SATU BLOK) ================= */

.brand-strip {
    padding: 60px 40px 110px;
}

.brand-strip p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    font-style: italic;
    line-height: 1.85;
    color: #d1d5db;
}

.brand-strip strong {
    color: #ffffff;
    font-weight: 700;
}

.brand-strip span {
    color: var(--yellow);
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .about-hero {
        padding: 140px 24px 100px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero p,
    .brand-strip p {
        font-size: 16px;
    }

    .brand-strip {
        padding: 50px 24px 90px;
    }
}

/* ================= SOFT DIVIDER ================= */
.soft-divider {
    width: 140px;
    height: 4px;
    margin: 100px auto;
    border-radius: 4px;
    background: linear-gradient(
        to right,
        transparent,
        var(--yellow),
        transparent
    );
}

/* ================= CORP STORY – TYPO REFINED ================= */
.corp-story {
    padding: 140px 40px 120px;
}

/* GRID */
.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

/* HEADING */
.story-text h2 {
    font-size: 38px;
    font-weight: 700; /* lebih elegan dari 800 */
    color: var(--dark);
    letter-spacing: -0.01em;
    margin-bottom: 26px;
}

/* LEAD PARAGRAPH */
.story-lead {
    font-size: 19px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 22px;
    line-height: 1.9;
}

/* BODY TEXT */
.story-text p {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    line-height: 1.85;
}

/* HIGHLIGHT PANEL */
.story-highlight {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    color: #ffffff;
    padding: 46px;
    border-radius: 34px;
}

/* LABEL */
.highlight-item span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--yellow);
    text-transform: uppercase;
}

/* TITLE INSIDE PANEL */
.highlight-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 6px 0 8px;
    color: #ffffff;
}

/* TEXT INSIDE PANEL */
.highlight-item p {
    font-size: 14.5px;
    font-weight: 400;
    color: #e5e7eb;
    line-height: 1.7;
}

/* STATEMENT */
.story-statement {
    margin-top: 80px;
    text-align: center;
}

.story-statement p {
    font-size: 21px;
    font-weight: 500;
    font-style: italic;
    color: #374151;
}

.story-statement span {
    color: var(--yellow);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-text h2 {
        font-size: 32px;
    }

    .story-lead {
        font-size: 18px;
    }
}
/* ================= CORP STORY – VISUAL ENHANCEMENT ================= */

/* Accent line di judul */
.story-text h2 {
    position: relative;
    padding-left: 18px;
}

.story-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 70%;
    background: var(--yellow);
    border-radius: 4px;
}

/* Subtle depth untuk story text */
.story-text {
    position: relative;
}

.story-text::after {
    content: '';
    position: absolute;
    left: -40px;
    top: 20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(
        circle,
        rgba(244, 196, 48, 0.15),
        transparent 70%
    );
    z-index: -1;
}

/* Highlight panel layering */
.story-highlight {
    position: relative;
    box-shadow: 0 40px 90px rgba(2, 6, 23, 0.45);
}

/* Vertical rhythm antar item */
.highlight-item:not(:last-child) {
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Icon accent kecil (tanpa icon file) */
.highlight-item h4::before {
    content: '▸';
    margin-right: 8px;
    color: var(--yellow);
    font-weight: 900;
}

/* Statement separator */
.story-statement {
    position: relative;
    padding-top: 40px;
}

.story-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--yellow),
        transparent
    );
    transform: translateX(-50%);
}

/* Statement emphasis */
.story-statement p strong {
    color: var(--dark);
}

.story-statement span {
    position: relative;
}

.story-statement span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 6px;
    background: rgba(244, 196, 48, 0.25);
    z-index: -1;
    border-radius: 6px;
}
/* ================= STORY TITLE – EYECATCHING ================= */

.story-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.story-title span {
    color: var(--yellow);
}

.title-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 10px;
}

.story-subtitle {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7280;
}

/* Mobile */
@media (max-width: 600px) {
    .story-title {
        font-size: 32px;
    }
}

/* Mobile fine-tune */
@media (max-width: 900px) {
    .story-text::after {
        display: none;
    }
}

/* ================= BUILD ================= */
.corp-build {
    padding: 120px 40px;
    background: var(--gray);
}

.corp-build h2 {
    text-align: center;
    font-size: 40px;
}

.build-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 34px;
}

.build-card {
    background: #ffffff;
    padding: 44px;
    border-radius: 28px;
    border: 1px solid #e5e7eb;
    transition: 0.35s ease;
}

.build-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
}

.build-card i {
    font-size: 34px;
    color: var(--yellow);
    margin-bottom: 16px;
}

.build-card h4 {
    margin-bottom: 10px;
}

/* ================= PROCESS – DARK BLUE SOLID ================= */

.corp-process {
    padding: 140px 40px;
    background-color: #0b1c2d; /* SAMA DENGAN HERO */
}

/* JUDUL */
.corp-process h2 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 90px;
}

/* GARIS AKSEN (SATU-SATUNYA AKSEN) */
.corp-process h2::after {
    content: '';
    display: block;
    width: 110px;
    height: 4px;
    margin: 22px auto 0;
    background: var(--yellow);
    border-radius: 3px;
}

/* GRID */
.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
}

/* STEP CARD */
.process-step {
    background: #10263f; /* SHADE BIRU DALAM */
    padding: 48px 40px;
    border-radius: 26px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* HOVER (HALUS, TIDAK NORAK) */
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 38px 80px rgba(0, 0, 0, 0.6);
}

/* NOMOR */
.process-step span {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

/* JUDUL STEP */
.process-step h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}

/* DESKRIPSI */
.process-step p {
    font-size: 15px;
    line-height: 1.85;
    color: #d1d5db;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .corp-process {
        padding: 110px 24px;
    }

    .corp-process h2 {
        font-size: 32px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= VISION & MISSION ================= */

.corp-vm {
    padding: 140px 40px;
    background-color: #102c47; /* biru gelap solid */
    color: #ffffff;
}

.vm-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 48px;
    border-radius: 28px;
}

.vm-card h3 {
    color: var(--yellow);
    margin-bottom: 14px;
}

.vm-card ul {
    margin-top: 14px;
    padding-left: 18px;
}

.vm-card ul li {
    margin-bottom: 10px;
}


/* ================= TEAM HIGHLIGHT ================= */
.team-highlight {
    background: #f8fafc; /* transisi aman dari section sebelumnya */
    padding: 120px 40px;
}

.team-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}

.team-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.team-title span {
    color: var(--yellow);
}

.team-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

/* CARD */
.team-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 44px 34px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.08);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.15), transparent);
    opacity: 0;
    transition: 0.35s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 90px rgba(2, 6, 23, 0.15);
}

/* ICON */
.team-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), #ffd95a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 22px;
}

/* TEXT */
.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.team-card p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #475569;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-title {
        font-size: 32px;
    }
}

/* ================= QUOTE ================= */
.corp-quote {
    padding: 140px 40px;
    text-align: center;
}

.corp-quote blockquote {
    max-width: 900px;
    margin: auto;
    font-size: 26px;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
}

.corp-quote blockquote::before {
    content: '“';
    font-size: 90px;
    color: var(--yellow);
    position: absolute;
    left: -30px;
    top: -30px;
}

/* ================= CLOSING ================= */
.corp-closing {
    padding: 160px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    color: #ffffff;
}

.corp-closing h2 {
    font-size: 42px;
    color: #ffffff;
}

.corp-closing span {
    color: var(--yellow);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .about-hero h1 {
        font-size: 42px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .corp-closing h2 {
        font-size: 34px;
    }
}
