:root {
    --text: #f4f1eb;
    --text-soft: rgba(244, 241, 235, 0.82);
    --accent: #ff6a00;
    --accent-blue: #2b8cff;
    --panel-border: rgba(255, 255, 255, 0.42);
    --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(4, 6, 10, 0.92), rgba(6, 8, 12, 0.96)),
        url("/images/backgroundimage.png") center center / cover no-repeat fixed;
    font-family: "Barlow", sans-serif;
}

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

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    position: relative;
    width: min(100%, 1680px);
    margin: 0 auto;
    padding: 28px clamp(28px, 4vw, 72px) 32px;
}

.page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 10, 14, 0.12), rgba(8, 10, 14, 0.38)),
        radial-gradient(circle at top right, rgba(255, 106, 0, 0.12), transparent 26%);
    pointer-events: none;
}

.site-header,
.main-content,
.site-footer {
    position: relative;
    z-index: 1;
}

.site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 4px clamp(10px, 1.2vw, 18px) 20px;
    border-bottom: 5px solid var(--accent);
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: clamp(92px, 12vw, 124px);
    height: auto;
}

.site-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(18px, 2vw, 34px);
    padding-inline: 12px;
}

.site-nav a,
.login-link {
    color: var(--accent);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.32rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.login-link:hover {
    color: var(--accent-blue);
    transform: translateY(-1px);
    text-shadow: 0 0 14px rgba(43, 140, 255, 0.22);
}

.login-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
}

.login-icon {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.login-icon::before,
.login-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.login-icon::before {
    top: 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.login-icon::after {
    bottom: 1px;
    width: 9px;
    height: 5px;
    border-radius: 999px 999px 0 0;
    border-top: 2px solid currentColor;
}

.main-content {
    padding-top: 28px;
}

/* Hero dibuat ringkas agar panel perusahaan menjadi fokus utama */
.company-hero {
    max-width: 760px;
    padding: 8px 6px 18px;
}

.company-kicker {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.company-hero h1 {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(3rem, 5vw, 5.25rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
}

.company-hero h1 span {
    display: block;
    margin-top: 8px;
    font-size: clamp(1.9rem, 3vw, 3.05rem);
    line-height: 1.02;
}

.company-intro {
    margin: 20px 0 0;
    max-width: 58ch;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    line-height: 1.7;
}

.company-sections {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

/* Panel teks mengikuti referensi dengan garis tipis dan latar gelap transparan */
.content-panel {
    padding: 18px 18px 16px;
    border: 1px dashed var(--panel-border);
    border-radius: 12px;
    background: rgba(18, 20, 25, 0.72);
    box-shadow: var(--shadow);
}

.content-panel h2 {
    margin: 0 0 10px;
    color: #f5f1ea;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.05;
}

.content-panel h3 {
    margin: 0 0 6px;
    color: #f4f1eb;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.18rem, 1.6vw, 1.42rem);
    line-height: 1.1;
}

.content-panel p,
.content-panel li {
    color: rgba(244, 241, 235, 0.9);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.72;
}

.content-panel p {
    margin: 0 0 12px;
}

.content-panel ol {
    margin: 0;
    padding-left: 20px;
}

.content-panel li + li {
    margin-top: 10px;
}

.value-item + .value-item {
    margin-top: 14px;
}

.info-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
    padding: 24px 0 18px;
    border-top: 1px dashed rgba(255, 40, 40, 0.75);
    border-bottom: 1px dashed rgba(255, 40, 40, 0.75);
}

.info-card {
    padding-right: 20px;
}

.info-card h2 {
    margin: 0 0 10px;
    color: var(--accent);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    line-height: 1;
}

.info-card p,
.info-card a {
    margin: 6px 0;
    color: rgba(244, 241, 235, 0.92);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.5;
}

.info-card a:hover,
.site-footer a:hover {
    color: #ffba74;
}

.site-footer {
    padding: 28px 0 8px;
    text-align: center;
}

.site-footer p,
.site-footer a {
    margin: 0;
    color: rgba(244, 241, 235, 0.82);
    font-size: 1rem;
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 18px;
    }

    .login-link {
        justify-self: center;
    }
}

@media (max-width: 720px) {
    body {
        background-attachment: scroll;
    }

    .page-shell {
        padding: 18px 16px 24px;
    }

    .site-nav {
        gap: 12px 18px;
    }

    .content-panel {
        padding: 16px 14px 14px;
    }

    .info-panel {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .info-card {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .company-hero h1 {
        font-size: 2.45rem;
    }

    .company-hero h1 span {
        font-size: 1.62rem;
    }

    .site-nav a,
    .login-link {
        font-size: 0.95rem;
    }
}
