/* =========================================================
   TENTANG KAMI
   ========================================================= */

:root {
    --about-blue: #2563eb;
    --about-blue-dark: #1d4ed8;
    --about-green: #10b981;
    --about-dark: #0f172a;
    --about-text: #334155;
    --about-muted: #64748b;
    --about-light: #f8fafc;
    --about-border: rgba(15, 23, 42, .08);
    --about-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}


/* =========================================================
   HERO
   ========================================================= */

.about-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37, 99, 235, .14),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(16, 185, 129, .10),
            transparent 30%
        ),
        #f8fafc;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-bg::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -160px;
    top: -220px;
    border-radius: 50%;
    border: 90px solid rgba(37, 99, 235, .05);
}

.about-hero-bg::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: -180px;
    bottom: -240px;
    border-radius: 50%;
    border: 70px solid rgba(16, 185, 129, .05);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 18px;
}

.about-hero-content {
    max-width: 760px;
}

.about-label,
.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--about-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-hero h1 {
    margin: 0 0 16px;
    color: var(--about-dark);
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.about-hero p {
    max-width: 650px;
    margin: 0;
    color: var(--about-text);
    font-size: 18px;
    line-height: 1.8;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    font-size: 14px;
    color: var(--about-muted);
}

.about-breadcrumb a {
    color: var(--about-blue);
    text-decoration: none;
    font-weight: 700;
}

.about-breadcrumb strong {
    color: var(--about-dark);
}


/* =========================================================
   COMPANY
   ========================================================= */

.company-section {
    padding: 90px 18px;
    background: #fff;
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;

    align-items: center;
}

.company-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--about-shadow);
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, .10),
            transparent 55%,
            rgba(16, 185, 129, .10)
        );

    pointer-events: none;
}

.company-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    right: -22px;
    bottom: -22px;

    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 220px;
    padding: 18px 20px;

    background: #fff;
    border: 1px solid var(--about-border);
    border-radius: 18px;

    box-shadow: 0 18px 40px rgba(15, 23, 42, .13);
}

.experience-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--about-blue),
            var(--about-green)
        );

    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.experience-card strong {
    display: block;
    color: var(--about-dark);
    font-size: 17px;
}

.experience-card small {
    display: block;
    margin-top: 3px;
    color: var(--about-muted);
    font-size: 11px;
    line-height: 1.4;
}

.company-content h2 {
    margin: 0 0 22px;

    color: var(--about-dark);
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -.8px;
}

.company-content h2 span,
.section-heading h2 span,
.product-highlight-heading h2 span,
.iso-content h2 span,
.about-cta h2 span {
    color: var(--about-blue);
}

.company-content p {
    margin: 0 0 15px;

    color: var(--about-text);
    font-size: 15px;
    line-height: 1.9;
}

.company-content strong {
    color: var(--about-dark);
}


/* =========================================================
   VALUES
   ========================================================= */

.values-section {
    padding: 90px 18px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 14px;
    color: var(--about-dark);
    font-size: 36px;
    line-height: 1.2;
}

.section-heading p {
    margin: 0;
    color: var(--about-muted);
    font-size: 15px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    position: relative;

    display: flex;
    gap: 18px;

    padding: 28px;

    background: #fff;
    border: 1px solid var(--about-border);
    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(15, 23, 42, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, .10);
}

.value-icon {
    flex: 0 0 auto;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, .10),
            rgba(16, 185, 129, .10)
        );

    color: var(--about-blue);
    font-size: 12px;
    font-weight: 800;
}

.value-card h3 {
    margin: 0 0 8px;

    color: var(--about-dark);
    font-size: 20px;
}

.value-card p {
    margin: 0;

    color: var(--about-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   PRODUCT HIGHLIGHT
   ========================================================= */

.product-highlight {
    padding: 90px 18px;
    background: #fff;
}

.product-highlight-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-highlight-heading {
    max-width: 700px;
    margin: 0 auto 42px;
    text-align: center;
}

.product-highlight-heading h2 {
    margin: 0 0 14px;

    color: var(--about-dark);
    font-size: 36px;
    line-height: 1.2;
}

.product-highlight-heading p {
    margin: 0;

    color: var(--about-muted);
    font-size: 15px;
    line-height: 1.8;
}

.product-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-mini-card {
    display: flex;
    align-items: center;
    gap: 18px;

    min-height: 150px;
    padding: 18px;

    border: 1px solid var(--about-border);
    border-radius: 20px;

    background: #fff;

    box-shadow: 0 12px 30px rgba(15, 23, 42, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.product-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .09);
}

.product-mini-card img {
    flex: 0 0 auto;

    width: 95px;
    height: 95px;

    object-fit: contain;

    border-radius: 15px;
    background: #f8fafc;
}

.product-mini-card span {
    color: var(--about-blue);
    font-size: 11px;
    font-weight: 800;
}

.product-mini-card h3 {
    margin: 4px 0 5px;

    color: var(--about-dark);
    font-size: 17px;
}

.product-mini-card p {
    margin: 0;

    color: var(--about-muted);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   ISO
   ========================================================= */

.iso-section {
    padding: 90px 18px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(37, 99, 235, .08),
            transparent 30%
        ),
        #f8fafc;
}

.iso-container {
    max-width: 1200px;
    margin: 0 auto;
}

.iso-box {
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 55px;

    padding: 50px;

    border-radius: 28px;
    border: 1px solid var(--about-border);

    background: #fff;
    box-shadow: var(--about-shadow);
}

.iso-mark {
    width: 190px;
    height: 190px;

    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 7px solid var(--about-blue);
    border-radius: 50%;

    color: var(--about-blue);
}

.iso-mark strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
}

.iso-mark span {
    margin-top: 8px;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.iso-content h2 {
    margin: 0 0 18px;

    color: var(--about-dark);
    font-size: 34px;
    line-height: 1.2;
}

.iso-content p {
    margin: 0 0 12px;

    color: var(--about-text);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   MOTTO
   ========================================================= */

.motto-section {
    padding: 90px 18px;

    background:
        linear-gradient(
            135deg,
            #000000,
            #111111
        );

    overflow: hidden;
}

.motto-container {
    max-width: 1100px;
    margin: 0 auto;
}

.motto-heading {
    text-align: center;
}

.motto-heading .section-label {
    color: #60a5fa;
}

.motto-heading h2 {
    margin: 0;

    color: #fff;

    font-size: 42px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 1px;
}

.motto-heading h2 span {
    color: #34d399;
    margin: 0 10px;
}

.motto-heading p {
    max-width: 620px;

    margin: 18px auto 0;

    color: rgba(255, 255, 255, .72);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.about-cta {
    padding: 70px 18px;
    background: #fff;
}

.about-cta-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 40px 45px;

    border-radius: 25px;

    background:
        radial-gradient(
            500px 250px at 90% 20%,
            rgba(16, 185, 129, .15),
            transparent 60%
        ),
        linear-gradient(
            135deg,
            rgba(37, 99, 235, .08),
            rgba(16, 185, 129, .05)
        );

    border: 1px solid rgba(37, 99, 235, .10);
}

.about-cta h2 {
    max-width: 650px;

    margin: 0 0 10px;

    color: var(--about-dark);

    font-size: 30px;
    line-height: 1.25;
}

.about-cta p {
    max-width: 650px;

    margin: 0;

    color: var(--about-muted);

    font-size: 14px;
    line-height: 1.7;
}

.cta-button {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--about-blue),
            var(--about-green)
        );

    color: #fff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 12px 25px rgba(37, 99, 235, .20);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, .27);
}

.cta-button span {
    font-size: 18px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .company-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .company-image {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }

    .company-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }

    .product-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .iso-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .iso-content {
        max-width: 750px;
        margin: 0 auto;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .about-hero {
        min-height: 330px;
    }

    .about-hero-inner {
        padding: 55px 18px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-breadcrumb {
        margin-top: 20px;
    }


    .company-section,
    .values-section,
    .product-highlight,
    .iso-section {
        padding: 60px 12px;
    }

    .company-content h2 {
        font-size: 30px;
    }

    .company-content p {
        text-align: justify;
        font-size: 14px;
        line-height: 1.8;
    }

    .experience-card {
        position: relative;

        right: auto;
        bottom: auto;

        width: calc(100% - 25px);

        margin: -25px auto 0;

        z-index: 2;
    }


    .section-heading h2,
    .product-highlight-heading h2 {
        font-size: 29px;
    }


    .values-grid {
        gap: 14px;
    }

    .value-card {
        padding: 22px;
    }


    .product-mini-grid {
        grid-template-columns: 1fr;
    }

    .product-mini-card {
        min-height: 130px;
    }

    .product-mini-card img {
        width: 80px;
        height: 80px;
    }


    .iso-box {
        padding: 30px 20px;
        gap: 30px;
    }

    .iso-mark {
        width: 150px;
        height: 150px;
        border-width: 6px;
    }

    .iso-mark strong {
        font-size: 34px;
    }

    .iso-mark span {
        font-size: 12px;
    }

    .iso-content h2 {
        font-size: 28px;
    }

    .iso-content p {
        text-align: justify;
    }


    .motto-section {
        padding: 65px 15px;
    }

    .motto-heading h2 {
        font-size: 25px;
        line-height: 1.6;
    }

    .motto-heading h2 span {
        margin: 0 4px;
    }


    .about-cta {
        padding: 50px 12px;
    }

    .about-cta-inner {
        padding: 30px 24px;
    }

    .about-cta h2 {
        font-size: 26px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .about-hero h1 {
        font-size: 34px;
    }

    .about-label,
    .section-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .company-content h2 {
        font-size: 27px;
    }

    .section-heading h2,
    .product-highlight-heading h2 {
        font-size: 26px;
    }

    .value-card {
        gap: 13px;
        padding: 18px;
    }

    .value-icon {
        width: 42px;
        height: 42px;
    }

    .product-mini-card {
        padding: 14px;
    }

    .product-mini-card img {
        width: 72px;
        height: 72px;
    }

    .motto-heading h2 {
        font-size: 22px;
    }
}